/* ═══════════════════════════════════════════════════════════
   TMTradesFx — Stripe-inspired blue gradient theme
   Font: Bricolage Grotesque (display) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --navy:     #0f172a;
  --navy-mid: #0c1a3a;
  --slate:    #64748b;
  --s-radius: 16px;
  --s-font-display: 'Inter', system-ui, sans-serif;
  --s-font-body: 'Inter', system-ui, sans-serif;
  --s-font-serif: 'Instrument Serif', Georgia, serif;
}

/* Override base font */
body { font-family: var(--s-font-body); }
h1,h2,h3,h4 { font-family: var(--s-font-display); }

/* ── Navbar override — only applies on dark-hero pages (homepage) ── */
body.has-dark-hero .navbar {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
body.has-dark-hero .navbar.scrolled {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06) !important;
}

/* Light text on dark hero (NO filter — proper color overrides) */
body.has-dark-hero .navbar:not(.scrolled) .nav-links > a,
body.has-dark-hero .navbar:not(.scrolled) .dropdown-toggle {
  color: rgba(255,255,255,0.92) !important;
}
body.has-dark-hero .navbar:not(.scrolled) .nav-links > a:hover,
body.has-dark-hero .navbar:not(.scrolled) .dropdown-toggle:hover {
  color: white !important;
}

/* Join Now button: glass style on dark hero, normal blue when scrolled */
body.has-dark-hero .navbar:not(.scrolled) .nav-cta-btn {
  background: white !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
  border: none !important;
}
body.has-dark-hero .navbar:not(.scrolled) .nav-cta-btn:hover {
  background: var(--blue-50) !important;
  transform: translateY(-1px);
}

/* Mobile menu icon white on dark hero */
body.has-dark-hero .navbar:not(.scrolled) .mobile-menu-btn span {
  background: white !important;
}


/* ═══════════════ HERO ═══════════════ */
.s-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 4rem;
  background: var(--navy);
}

/* Gradient mesh layers — Stripe's signature look in blue */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(99,130,246,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(29,78,216,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(147,197,253,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-mesh-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 75% 80%, rgba(14,165,233,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.hero-mesh-3 {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #ffffff 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.s-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 3rem;
}

/* Hero text */
.s-hero-text { color: white; }

.s-hero-heading {
  font-family: var(--s-font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 1.5rem;
}
.s-heading-blue {
  font-family: var(--s-font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s-asterisk {
  color: var(--blue-400);
  font-size: 0.8em;
  vertical-align: super;
  margin-left: 4px;
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.s-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.s-hero-sub strong { color: white; }

.s-hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Buttons */
.s-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--navy) !important;
  font-family: var(--s-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.s-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.35);
  background: var(--blue-50);
}

/* On dark section, use blue primary */
.s-proof .s-btn-primary,
.s-contact .s-btn-primary {
  background: var(--blue-500);
  color: white !important;
}
.s-proof .s-btn-primary:hover,
.s-contact .s-btn-primary:hover {
  background: var(--blue-600);
}

.s-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--s-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.25s ease;
}
.s-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: white !important;
  background: rgba(255,255,255,0.08);
}

.s-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--blue-600) !important;
  font-family: var(--s-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 1.5px solid var(--blue-500);
  text-decoration: none;
  transition: all 0.25s ease;
}
.s-btn-outline:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

.s-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
}
.s-guarantee svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-400); }
.s-guarantee strong { color: rgba(255,255,255,0.9); }

/* Hero stats bar */
.s-hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-top: 0;
}
.s-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.s-stat-num {
  font-family: var(--s-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}
.s-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  text-align: center;
}
.s-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


/* ── Hero mockup ── */
.s-hero-mockup {
  position: relative;
  z-index: 3;
}

.s-mockup-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.s-mockup-main { position: relative; }

.s-mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.s-mockup-dots { display: flex; gap: 5px; }
.s-mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #e2e8f0;
}
.s-mockup-dots span:first-child { background: #fca5a5; }
.s-mockup-dots span:nth-child(2) { background: #fde68a; }
.s-mockup-dots span:last-child { background: #6ee7b7; }
.s-mockup-title {
  font-family: var(--s-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  flex: 1;
}
.s-status-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.s-mockup-balance { margin-bottom: 1rem; }
.s-bal-label { display: block; font-size: 0.72rem; color: #94a3b8; font-weight: 600; margin-bottom: 2px; }
.s-bal-value {
  font-family: var(--s-font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
}

.s-mockup-chart { margin-bottom: 1rem; height: 80px; }
.s-mockup-chart svg { width: 100%; height: 100%; }

.s-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.s-m-stat {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}
.s-m-label { font-size: 0.68rem; color: #94a3b8; font-weight: 600; }
.s-m-val { font-family: var(--s-font-display); font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-top: 2px; }
.s-m-val.green { color: #16a34a; }

/* Floating cards */
.s-mockup-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  animation: float-card 4s ease-in-out infinite;
}
.s-float-1 {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}
.s-float-2 {
  top: -20px;
  right: -30px;
  animation-delay: 2s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.s-float-icon { font-size: 1.5rem; }
.s-float-label { font-size: 0.7rem; color: #94a3b8; font-weight: 600; }
.s-float-value {
  font-family: var(--s-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}


/* ═══════════════ TRUST LOGOS ═══════════════ */
.s-trust {
  padding: 2.5rem 0;
  background: white;
  border-bottom: 1px solid #f1f5f9;
}
.s-trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.s-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.s-trust-logo {
  font-family: var(--s-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: -0.5px;
  transition: color 0.3s;
  cursor: default;
}
.s-trust-logo:hover { color: #94a3b8; }


/* ═══════════════ FEATURES ═══════════════ */
.s-features {
  padding: 7rem 0;
  background: white;
}
.s-features-header {
  margin-bottom: 4rem;
}
.s-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.s-eyebrow-light {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-400);
  margin-bottom: 1rem;
}
.s-section-title {
  font-family: var(--s-font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #0f172a;
}
.s-section-sub {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 520px;
}

.s-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.s-feature-card {
  padding: 1.75rem;
  border: 1px solid #f1f5f9;
  border-radius: var(--s-radius);
  background: white;
  transition: all 0.3s ease;
}
.s-feature-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 30px rgba(59,130,246,0.08);
  transform: translateY(-4px);
}
.s-feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.s-feature-card h4 {
  font-family: var(--s-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}
.s-feature-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin: 0; }


/* ═══════════════ PROOF (dark) ═══════════════ */
.s-proof {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: var(--navy);
}
.s-proof-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(37,99,235,0.3) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(99,130,246,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.s-proof-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.s-proof-title {
  font-family: var(--s-font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.s-proof-sub { color: rgba(255,255,255,0.6); line-height: 1.7; font-size: 1rem; }

.s-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.s-p-stat { }
.s-p-num {
  display: block;
  font-family: var(--s-font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}
.s-p-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; display: block; }

/* Payout stack */
.s-payout-stack { display: flex; flex-direction: column; gap: 1rem; }
.s-payout-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.s-payout-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.s-pc-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.s-pc-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-400); }
.s-pc-date { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.s-pc-amount {
  font-family: var(--s-font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}
.s-payout-small .s-pc-amount { font-size: 1.4rem; margin-bottom: 0; }
.s-pc-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 0.5rem; }
.s-pc-fill { height: 100%; background: linear-gradient(90deg, var(--blue-500), #38bdf8); border-radius: 2px; }
.s-pc-meta { font-size: 0.75rem; color: rgba(255,255,255,0.35); }


/* ═══════════════ HOW IT WORKS ═══════════════ */
.s-steps {
  padding: 7rem 0;
  background: #fafbff;
}
.s-steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 4rem;
}
.s-step {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--s-radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.s-step:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 30px rgba(59,130,246,0.1);
  transform: translateY(-4px);
}
.s-step-num {
  font-family: var(--s-font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-100);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 1rem;
}
.s-step h4 {
  font-family: var(--s-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}
.s-step p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin: 0; }
.s-step-arrow {
  font-size: 1.5rem;
  color: var(--blue-300);
  text-align: center;
  flex-shrink: 0;
}


/* ═══════════════ VIP PEEK ═══════════════ */
.s-vip {
  padding: 7rem 0;
  background: white;
}
.s-vip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.s-vip-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.s-vip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
}
.s-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.s-vip-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(59,130,246,0.15);
}


/* ═══════════════ PRICING ═══════════════ */
.s-pricing {
  padding: 7rem 0;
  background: #fafbff;
}
.s-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 4rem auto 0;
}
.s-plan {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.s-plan:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.s-plan-featured {
  border-color: var(--blue-500);
  border-width: 2px;
  box-shadow: 0 20px 60px rgba(59,130,246,0.12);
}
.s-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  font-family: var(--s-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.s-plan-icon { font-size: 2rem; margin-bottom: 1rem; }
.s-plan-name {
  font-family: var(--s-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.s-plan-desc { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin-bottom: 1.5rem; }
.s-plan-price {
  font-family: var(--s-font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.s-price-dollar { font-size: 1.5rem; font-weight: 700; color: var(--slate); }
.s-price-period { font-size: 0.9rem; font-weight: 500; color: var(--slate); letter-spacing: 0; }
.s-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.s-plan-features li {
  font-size: 0.88rem;
  color: #334155;
  padding-left: 1.4rem;
  position: relative;
}
.s-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 800;
}
.s-plan-btn {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.9rem;
  border-radius: 50px;
  font-family: var(--s-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  background: white;
  transition: all 0.25s ease;
}
.s-plan-btn:hover { border-color: var(--blue-400); color: var(--blue-600); }
.s-plan-btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white !important;
  border: none;
}
.s-plan-btn-primary:hover { box-shadow: 0 8px 25px rgba(59,130,246,0.4); transform: translateY(-2px); }

.s-guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  max-width: 860px;
  margin: 2rem auto 0;
}
.s-gb-icon { font-size: 1.75rem; flex-shrink: 0; }
.s-guarantee-box h4 {
  font-family: var(--s-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 0.4rem;
}
.s-guarantee-box p { font-size: 0.88rem; color: var(--blue-700); line-height: 1.6; margin: 0; }


/* ═══════════════ TESTIMONIALS ═══════════════ */
.s-testimonials {
  padding: 7rem 0;
  background: white;
}
.s-tcard {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 2rem;
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.s-tcard:hover { border-color: var(--blue-200); box-shadow: 0 10px 40px rgba(59,130,246,0.08); }
.s-tcard .stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.s-tcard p { font-size: 0.92rem; color: #334155; line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.s-tcard-author { display: flex; align-items: center; gap: 10px; }
.s-tcard-author .client-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.s-tcard-author strong { display: block; font-size: 0.9rem; color: #0f172a; font-weight: 700; }
.s-tcard-author span { font-size: 0.78rem; color: var(--slate); }

/* Override track to use new card class */
.testimonials-track { display: flex; gap: 1.25rem; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonials-track-wrapper { overflow: hidden; }
.testimonials-carousel { position: relative; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid #e2e8f0; background: white; font-size: 1rem; cursor: pointer; transition: all 0.2s ease; }
.carousel-btn:hover { border-color: var(--blue-500); color: var(--blue-500); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: #e2e8f0; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.carousel-dot.active { background: var(--blue-500); width: 22px; border-radius: 4px; }


/* ═══════════════ BLOG ═══════════════ */
.s-blog {
  padding: 7rem 0;
  background: #fafbff;
}
.s-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.s-blog-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.s-blog-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.07); transform: translateY(-4px); }
.s-blog-img { height: 200px; overflow: hidden; }
.s-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.s-blog-card:hover .s-blog-img img { transform: scale(1.04); }
.s-blog-body { padding: 1.5rem; }
.s-blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.s-blog-body h4 {
  font-family: var(--s-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.s-blog-body p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; margin-bottom: 1rem; }
.s-blog-link { font-size: 0.85rem; font-weight: 700; color: var(--blue-600); text-decoration: none; }
.s-blog-link:hover { color: var(--blue-800); }


/* ═══════════════ FAQ ═══════════════ */
.s-faq {
  padding: 7rem 0;
  background: white;
}
.s-faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.s-faq-left { position: sticky; top: 6rem; }
.s-faq-right .faq-container { border-top: 1px solid #f1f5f9; }
.s-faq-right .faq-item { border-bottom: 1px solid #f1f5f9; }
.s-faq-right .faq-item summary {
  font-family: var(--s-font-display);
  font-weight: 700;
  color: #0f172a;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.s-faq-right .faq-item summary::-webkit-details-marker { display: none; }
.s-faq-right .faq-item[open] summary { color: var(--blue-600); }
.s-faq-right .faq-content { color: var(--slate); font-size: 0.9rem; line-height: 1.7; padding-bottom: 1.25rem; }


/* ═══════════════ CONTACT ═══════════════ */
.s-contact {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.s-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(37,99,235,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.s-contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.s-contact-text { color: rgba(255,255,255,0.8); }
.s-contact-title {
  font-family: var(--s-font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.s-contact-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.s-contact-email {
  display: inline-block;
  color: white !important;
  font-family: var(--s-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--blue-500);
  padding-bottom: 2px;
}
.s-contact-socials { margin-top: 1.5rem; }
.s-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white !important;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.s-social-btn:hover { background: rgba(255,255,255,0.14); }

/* Contact form */
.s-contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.s-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.s-form-group { margin-bottom: 1rem; }
.s-form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.s-form-group input,
.s-form-group select,
.s-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
  font-size: 0.9rem;
  font-family: var(--s-font-body);
  transition: border-color 0.2s ease;
}
.s-form-group input:focus,
.s-form-group select:focus,
.s-form-group textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.s-form-group textarea { resize: none; }
.s-form-group:last-child { margin-bottom: 0; }


/* ═══════════════ SCROLL TO TOP ═══════════════ */
#scrollTopBtn {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700)) !important;
}


/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .s-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .s-hero-mockup { display: none; }
  .s-hero-stats { flex-wrap: wrap; gap: 1rem; }
  .s-proof-inner { grid-template-columns: 1fr; gap: 3rem; }
  .s-features-grid { grid-template-columns: repeat(2, 1fr); }
  .s-steps-grid { grid-template-columns: 1fr; }
  .s-step-arrow { transform: rotate(90deg); text-align: center; }
  .s-vip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .s-faq-left { position: static; }
  .s-contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .s-hero { padding: 8rem 0 3rem; }
  .s-hero-stats { padding: 1rem; }
  .s-stat-num { font-size: 1.2rem; }
  .s-stat-divider { display: none; }
  .s-hero-stat { flex: 1; min-width: 45%; }
  .s-hero-stats { flex-wrap: wrap; gap: 1rem; }
  .s-trust-logos { gap: 1.5rem; }
  .s-features-grid { grid-template-columns: 1fr; }
  .s-pricing-grid { grid-template-columns: 1fr; }
  .s-blog-grid { grid-template-columns: 1fr; }
  .s-proof-stats { grid-template-columns: 1fr 1fr; }
  .s-form-row { grid-template-columns: 1fr; }

}
