
/* ── Gradient helpers ── */
.tt-gradient {
  background: linear-gradient(135deg, #06b6d4 0%, #6366f1 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-gradient-light {
  background: linear-gradient(135deg, #67e8f9 0%, #a5b4fc 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/
.tt-hero {
  position: relative;
  padding: 96px 0 60px;
  overflow: hidden;
}

.tt-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #020b18 0%, #041424 25%, #061e35 55%, #030d1a 100%);
  z-index: 0;
}

.tt-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 5%  35%, rgba(6,182,212,0.18)  0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 80% 15%, rgba(99,102,241,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 400px 350px at 60% 85%, rgba(20,184,166,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 300px 300px at 25% 80%, rgba(168,85,247,0.10) 0%, transparent 50%);
  z-index: 0;
}

.tt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #67e8f9;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.tt-badge i {
  color: #22d3ee;
}

.tt-h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.tt-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.tt-btn-main {
  background: linear-gradient(90deg, #06b6d4, #6366f1);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.4);
  border: none;
  cursor: pointer;
}

.tt-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(6, 182, 212, 0.55);
  color: #ffffff;
}

.tt-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.tt-btn-outline:hover {
  border-color: rgba(6, 182, 212, 0.6);
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.07);
}

.tt-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tt-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

.tt-pill i {
  color: #34d399;
  font-size: 0.75rem;
}

/* Hero metric cards */
.tt-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tt-metric-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tt-mc-1 { animation: ttfloat 3.2s ease-in-out infinite; border-color: rgba(6,182,212,0.2); }
.tt-mc-2 { animation: ttfloat 3.8s ease-in-out infinite 0.4s; border-color: rgba(99,102,241,0.2); }
.tt-mc-3 { animation: ttfloat 3.5s ease-in-out infinite 0.8s; border-color: rgba(168,85,247,0.2); }
.tt-mc-4 { animation: ttfloat 4.0s ease-in-out infinite 1.2s; border-color: rgba(20,184,166,0.2); }

@keyframes ttfloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.tt-metric-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.tt-mc-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.tt-mc-1 .tt-mc-icon { color: #22d3ee; }
.tt-mc-2 .tt-mc-icon { color: #818cf8; }
.tt-mc-3 .tt-mc-icon { color: #c084fc; }
.tt-mc-4 .tt-mc-icon { color: #34d399; }

.tt-mc-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.tt-mc-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.tt-mc-trend {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 991px) {
  .tt-hero {
    padding: 80px 0 48px;
    text-align: center;
  }
  .tt-sub, .tt-hero-pills {
    margin-left: auto;
    margin-right: auto;
  }
  .tt-hero-actions { justify-content: center; }
  .tt-hero-pills   { justify-content: center; }
  .tt-hero-visual  { margin-top: 48px; }
}

@media (max-width: 480px) {
  .tt-hero-visual {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .tt-metric-card { padding: 18px 14px; }
  .tt-mc-val { font-size: 1.3rem; }
}

/*--------------------------------------------------------------
# Section helpers
--------------------------------------------------------------*/
.tt-section {
  padding: 80px 0;
}

.tt-section-header {
  margin-bottom: 48px;
}

.tt-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.10);
  border: 1px solid rgba(6, 182, 212, 0.22);
  color: #06b6d4;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.tt-tag-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #a5f3fc;
}

.tt-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.tt-light-title {
  color: #ffffff;
}

.tt-section-sub {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.75;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.tt-sub-light {
  color: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

/*--------------------------------------------------------------
# SOLUTIONS SECTION
--------------------------------------------------------------*/

/* Per-card color cycling */
#solutions .row > div:nth-child(1) { --sol: #06b6d4; }
#solutions .row > div:nth-child(2) { --sol: #6366f1; }
#solutions .row > div:nth-child(3) { --sol: #10b981; }
#solutions .row > div:nth-child(4) { --sol: #a855f7; }
#solutions .row > div:nth-child(5) { --sol: #f59e0b; }
#solutions .row > div:nth-child(6) { --sol: #14b8a6; }

.tt-sol-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid color-mix(in srgb, var(--sol, #06b6d4), transparent 80%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tt-sol-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sol, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.tt-sol-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--sol, #06b6d4), transparent 50%);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--sol, #06b6d4), transparent 80%);
}

.tt-sol-card:hover::after {
  transform: scaleX(1);
}

.tt-sol-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--sol, #06b6d4), transparent 88%);
  color: var(--sol, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.tt-sol-card:hover .tt-sol-icon {
  background: var(--sol, #06b6d4);
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}

.tt-sol-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.tt-sol-card p {
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 16px;
}

.tt-sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-sol-list li {
  font-size: 0.82rem;
  color: var(--default-color);
  padding: 4px 0 4px 18px;
  position: relative;
  opacity: 0.75;
}

.tt-sol-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sol, #06b6d4);
}

/*--------------------------------------------------------------
# PRODUCTS SECTION
--------------------------------------------------------------*/

/* Per-card color cycling (8 products) */
#products .row > div:nth-child(1) { --pc: #06b6d4; }
#products .row > div:nth-child(2) { --pc: #6366f1; }
#products .row > div:nth-child(3) { --pc: #f97316; }
#products .row > div:nth-child(4) { --pc: #10b981; }
#products .row > div:nth-child(5) { --pc: #a855f7; }
#products .row > div:nth-child(6) { --pc: #0ea5e9; }
#products .row > div:nth-child(7) { --pc: #f59e0b; }
#products .row > div:nth-child(8) { --pc: #14b8a6; }

.tt-prod-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid color-mix(in srgb, var(--pc, #06b6d4), transparent 82%);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.tt-prod-card:hover {
  transform: translateY(-6px);
  border-color: var(--pc, #06b6d4);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--pc, #06b6d4), transparent 78%);
}

.tt-prod-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pc, #06b6d4), transparent 88%);
  color: var(--pc, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.tt-prod-card:hover .tt-prod-icon {
  background: var(--pc, #06b6d4);
  color: #ffffff;
  transform: scale(1.12) rotate(-5deg);
}

.tt-prod-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.tt-prod-card p {
  font-size: 0.82rem;
  color: var(--default-color);
  opacity: 0.7;
  line-height: 1.5;
  margin: 0;
}

/*--------------------------------------------------------------
# INTEGRATIONS SECTION
--------------------------------------------------------------*/
.tt-integ-section {
  background: linear-gradient(145deg, #020b18 0%, #041424 30%, #061e35 70%, #030d1a 100%);
  position: relative;
  overflow: hidden;
}

.tt-integ-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(6,182,212,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 80% 50%, rgba(99,102,241,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.tt-integ-section .container {
  position: relative;
  z-index: 1;
}

/* Per-group color cycling */
#integrations .row > div:nth-child(1) { --ig: #06b6d4; }
#integrations .row > div:nth-child(2) { --ig: #6366f1; }
#integrations .row > div:nth-child(3) { --ig: #0ea5e9; }
#integrations .row > div:nth-child(4) { --ig: #10b981; }

.tt-integ-group {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.tt-integ-group:hover {
  border-color: color-mix(in srgb, var(--ig, #06b6d4), transparent 55%);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--ig, #06b6d4), transparent 82%);
}

.tt-integ-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ig, #06b6d4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-integ-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tt-integ-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: color 0.2s ease;
}

.tt-integ-item i {
  color: var(--ig, #06b6d4);
  font-size: 1rem;
  flex-shrink: 0;
}

.tt-integ-group:hover .tt-integ-item {
  color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# WHY CHOOSE US
--------------------------------------------------------------*/
.tt-why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tt-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tt-why-item:nth-child(1) .tt-why-num { color: #06b6d4; }
.tt-why-item:nth-child(2) .tt-why-num { color: #6366f1; }
.tt-why-item:nth-child(3) .tt-why-num { color: #10b981; }
.tt-why-item:nth-child(4) .tt-why-num { color: #a855f7; }

.tt-why-num {
  font-size: 2.4rem;
  font-weight: 800;
  opacity: 0.65;
  line-height: 1;
  min-width: 52px;
}

.tt-why-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.tt-why-item p {
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.7;
  opacity: 0.8;
  margin: 0;
}

/* Process steps */
.tt-process-visual {
  background: linear-gradient(145deg,
    rgba(6, 182, 212, 0.05),
    rgba(99, 102, 241, 0.07));
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(6, 182, 212, 0.12);
}

.tt-proc-step {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
}

.tt-proc-step:last-child {
  margin-bottom: 0;
}

.tt-proc-step:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.tt-proc-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.tt-dot-1 { background: linear-gradient(135deg, #06b6d4, #22d3ee); box-shadow: 0 4px 14px rgba(6,182,212,0.4); }
.tt-dot-2 { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 4px 14px rgba(99,102,241,0.4); }
.tt-dot-3 { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 4px 14px rgba(16,185,129,0.4); }
.tt-dot-4 { background: linear-gradient(135deg, #a855f7, #c084fc); box-shadow: 0 4px 14px rgba(168,85,247,0.4); }

.tt-proc-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.tt-proc-info p {
  font-size: 0.82rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# STATS SECTION
--------------------------------------------------------------*/
.tt-stats-section {
  background: linear-gradient(145deg, #020b18 0%, #061e35 50%, #030d1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tt-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 300px at 50% 50%, rgba(6,182,212,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.tt-stats-section .container {
  position: relative;
  z-index: 1;
}

/* Per-card color cycling */
.tt-stats-section .row > div:nth-child(1) .tt-stat-card { --stc: #06b6d4; }
.tt-stats-section .row > div:nth-child(2) .tt-stat-card { --stc: #6366f1; }
.tt-stats-section .row > div:nth-child(3) .tt-stat-card { --stc: #10b981; }
.tt-stats-section .row > div:nth-child(4) .tt-stat-card { --stc: #a855f7; }

.tt-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tt-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--stc, #06b6d4);
  border-radius: 20px 20px 0 0;
}

.tt-stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: color-mix(in srgb, var(--stc, #06b6d4), transparent 55%);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--stc, #06b6d4), transparent 78%);
}

.tt-stat-icon {
  font-size: 1.8rem;
  color: var(--stc, #06b6d4);
  margin-bottom: 12px;
  display: block;
}

.tt-stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.tt-stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# TECH STACK SECTION
--------------------------------------------------------------*/

/* Per-group color cycling */
#techstack .row > div:nth-child(1) { --tg: #06b6d4; }
#techstack .row > div:nth-child(2) { --tg: #10b981; }
#techstack .row > div:nth-child(3) { --tg: #a855f7; }
#techstack .row > div:nth-child(4) { --tg: #6366f1; }
#techstack .row > div:nth-child(5) { --tg: #f59e0b; }
#techstack .row > div:nth-child(6) { --tg: #0ea5e9; }

.tt-tech-group {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid color-mix(in srgb, var(--tg, #06b6d4), transparent 82%);
  height: 100%;
  transition: all 0.3s ease;
}

.tt-tech-group:hover {
  border-color: color-mix(in srgb, var(--tg, #06b6d4), transparent 50%);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--tg, #06b6d4), transparent 82%);
  transform: translateY(-4px);
}

.tt-tech-group-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tg, #06b6d4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tt-chip {
  background: color-mix(in srgb, var(--tg, #06b6d4), transparent 88%);
  color: var(--tg, #06b6d4);
  border: 1px solid color-mix(in srgb, var(--tg, #06b6d4), transparent 72%);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: default;
}

.tt-tech-group:hover .tt-chip {
  background: color-mix(in srgb, var(--tg, #06b6d4), transparent 80%);
}

/*--------------------------------------------------------------
# CTA SECTION
--------------------------------------------------------------*/
.tt-cta-section {
  background: linear-gradient(145deg, #020b18 0%, #041424 40%, #061e35 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tt-cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.tt-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 30% 50%, rgba(6,182,212,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 80% 50%, rgba(99,102,241,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.tt-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.28);
  color: #67e8f9;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
}

.tt-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tt-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 24px;
}

.tt-cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tt-cta-checks span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.tt-cta-checks i {
  color: #34d399;
}

.tt-cta-btn {
  background: linear-gradient(90deg, #06b6d4, #6366f1);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  margin-bottom: 14px;
}

.tt-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(6, 182, 212, 0.55);
}

.tt-cta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

.tt-cta-note a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
}

.tt-cta-note a:hover {
  color: #67e8f9;
}

@media (max-width: 991px) {
  .tt-cta-card {
    padding: 40px 28px;
  }
  .tt-cta-note {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .tt-cta-card {
    padding: 32px 20px;
  }
  .tt-cta-checks {
    gap: 12px;
  }
  .tt-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
