*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--accent); color: var(--white); }
::-moz-selection { background: var(--accent); color: var(--white); }
:root {
  --primary: #152a3d;
  --primary-light: #1e3a54;
  --accent: #fe602d;
  --accent-hover: #e5501f;
  --accent-light: rgba(254,96,45,0.08);
  --accent-glow: rgba(254,96,45,0.15);
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --surface-alt: #F1F0EC;
  --border: #E2E0DA;
  --border-light: #ECEAE4;
  --text: #15293C;
  --text-secondary: #4A5E72;
  --text-muted: #8494A4;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Ubuntu', sans-serif;
  --font-display: 'Ubuntu', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ─── NOISE + PROGRESS ─── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 10000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.35;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; background: var(--accent);
  z-index: 10001; width: 0%;
  box-shadow: 0 0 12px var(--accent), 0 0 4px var(--accent);
}

/* ─── CURSOR ─── */
.cursor-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--primary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; opacity: 0.35; transition: width 0.3s, height 0.3s; }
.cursor-ring.hover { width: 56px; height: 56px; opacity: 0.2; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 28px;
  transform: translateY(-100%); animation: headerSlide 0.8s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes headerSlide { to { transform: translateY(0); } }
.header-glass {
  max-width: 1100px; margin: 12px auto 0;
  background: rgba(255,255,255,0.72); backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.6); border-radius: 16px;
  box-shadow: 0 4px 30px rgba(21,42,61,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo-img { height: 30px; display: block; transition: opacity 0.3s; }
.logo-descriptor {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  border-left: 1px solid var(--border); padding-left: 12px; margin-left: 12px;
  white-space: nowrap;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-md);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; position: relative; overflow: hidden; transition: transform 0.2s;
}
.header-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.header-cta:hover::before { transform: translateX(100%); }
.header-cta:hover { transform: scale(1.03); }

/* Header nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 14px; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  border-radius: var(--radius-sm); transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(21,42,61,0.04); }
.nav-link.active { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .logo-descriptor { white-space: normal; max-width: 80px; line-height: 1.3; font-size: 12px; }
}

/* ═══════════════════════════════════════
   HERO — TWO COLUMN WITH ILLUSTRATION
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 0; position: relative; overflow: hidden;
}
/* Gradient orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.1; animation: orbFloat 20s infinite ease-in-out; }
.hero-orb-1 { width: 500px; height: 500px; background: var(--accent); top: -100px; right: 10%; animation-delay: 0s; }
.hero-orb-2 { width: 350px; height: 350px; background: #3B82F6; bottom: 5%; left: -5%; animation-delay: -7s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 2;
}

/* Left column — text */
.hero-text { position: relative; }
/* Hero heading — static title */
.hero-title-static {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--primary); margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Hero subtitle — word-by-word animated */
.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--text-secondary);
  max-width: 500px; margin-bottom: 36px;
}
.hero-subtitle .word {
  display: inline-block; opacity: 0; transform: translateY(20px);
  animation: wordReveal 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1); transform-origin: bottom;
}
.hero-subtitle em { font-style: normal; color: var(--accent); font-weight: 700; }
@keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }

.hero-mini-steps {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s 2.1s forwards;
}
.hero-mini-step {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  font-size: 14px; color: var(--text-secondary);
  transition: all 0.3s; cursor: default;
}
.hero-mini-step:hover { transform: translateX(6px); border-color: var(--accent); box-shadow: 0 4px 16px rgba(254,96,45,0.08); }
.mini-step-num {
  width: 28px; height: 28px; background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
  transition: background 0.3s;
}
.hero-mini-step:hover .mini-step-num { background: var(--accent); }

/* ─── BOT CTA BANNER ─── */
.bot-cta-banner {
  margin-top: 32px; padding-bottom: 10px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 2.1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.bot-cta-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 28px; background: var(--primary);
  border-radius: var(--radius-lg); cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(21,42,61,0.15);
  position: relative; overflow: hidden;
}
.bot-cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%); transition: transform 0.6s;
}
.bot-cta-inner:hover::before { transform: translateX(100%); }
.bot-cta-inner:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(21,42,61,0.2); }
.bot-cta-icon {
  width: 48px; height: 48px; min-width: 48px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  animation: iconPulse 2.5s 3s infinite;
}
.bot-cta-icon svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,96,45,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(254,96,45,0); }
}
.bot-cta-text { flex: 1; min-width: 0; }
.bot-cta-heading {
  display: block; font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 3px;
}
.bot-cta-sub {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
}
.bot-cta-arrow {
  width: 36px; height: 36px; min-width: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
  animation: arrowNudge 2s 3.5s infinite;
}
.bot-cta-arrow svg { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Fixed chat widget wrap */
.chat-widget-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; animation: widgetAppear 0.5s 3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.chat-widget-label {
  font-family: var(--font); font-size: 13px; font-weight: 700;
  color: var(--primary); letter-spacing: 0.02em;
  white-space: nowrap; margin-bottom: 2px;
  animation: labelBounce 2s 3.5s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
.chat-widget-arrow {
  width: 20px; height: 32px; margin-bottom: 4px;
  animation: labelBounce 2s 3.5s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes labelBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}
.chat-widget-fixed {
  width: 56px; height: 56px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(254,96,45,0.35);
  cursor: pointer; transition: all 0.3s; position: relative;
}
.chat-widget-fixed:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(254,96,45,0.4), 0 0 0 8px rgba(254,96,45,0.08);
}
.chat-widget-fixed svg { width: 24px; height: 24px; }
.chat-widget-fixed::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: 0;
  animation: widgetPulse 3s 4s infinite;
}
@keyframes widgetAppear {
  0% { opacity: 0; transform: scale(0.5) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes widgetPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}



/* Right column — illustration */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: heroImgReveal 1.2s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes heroImgReveal {
  0% { opacity: 0; transform: translateY(40px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-img-wrapper {
  position: relative; width: 100%; max-width: 480px;
}
.hero-illustration { width: 100%; height: auto; display: block; aspect-ratio: 1 / 1; }

/* Decorative ring behind illustration */
.hero-img-wrapper::before {
  content: ''; position: absolute; inset: -20px;
  border: 2px dashed var(--border); border-radius: 50%; opacity: 0.4;
  animation: ringRotate 40s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

/* Accent dots around illustration */
.hero-img-wrapper::after {
  content: ''; position: absolute; top: -8px; right: -8px;
  width: 16px; height: 16px; background: var(--accent); border-radius: 50%;
  animation: dotPulse 3s infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

.hero-illustration {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-xl);
  animation: illustrationFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(21,42,61,0.1));
  mix-blend-mode: multiply; /* blends white bg with page bg */
}
@keyframes illustrationFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Small floating badges around illustration */
.float-badge {
  position: absolute; padding: 8px 14px; background: var(--surface);
  border: 1px solid var(--border-light); border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--text);
  box-shadow: 0 4px 20px rgba(21,42,61,0.08);
  opacity: 0; animation: badgeFloat 0.6s forwards;
  white-space: nowrap;
}
.float-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; margin-right: 6px; vertical-align: middle;
}
.badge-land { top: 60%; right: -10px; animation-delay: 2s; }
.badge-land::before { background: var(--primary); }
.badge-sea { bottom: 15%; left: -15px; animation-delay: 2.3s; }
.badge-sea::before { background: #3B82F6; }
.badge-air { top: 10%; right: 10%; animation-delay: 2.6s; }
.badge-air::before { background: var(--accent); }
@keyframes badgeFloat {
  0% { opacity: 0; transform: translateY(10px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── REVEAL SYSTEM ─── */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.05s; } .stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; } .stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; } .stagger-6 { transition-delay: 0.3s; }

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 44px 48px; margin-bottom: 80px;
  position: relative; overflow: hidden;
}
.newsletter::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, var(--accent-glow), transparent 70%); border-radius: 50%; animation: orbFloat 15s infinite; }

/* Decorative illustration */
.newsletter-decor {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px; opacity: 0.08; pointer-events: none;
}
@media (max-width: 900px) { .newsletter-decor { display: none; } }
.newsletter-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); background: var(--accent-light); padding: 5px 12px; border-radius: 4px; margin-bottom: 16px; position: relative; }
.newsletter-title { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 10px; position: relative; }
.newsletter-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; max-width: 620px; margin-bottom: 24px; position: relative; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.newsletter-form input {
  flex: 1; min-width: 170px; padding: 13px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 15px; background: var(--bg);
  color: var(--text); outline: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsletter-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); transform: translateY(-2px); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.btn-magnetic {
  padding: 14px 30px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; white-space: nowrap; position: relative; overflow: hidden;
}
.btn-magnetic::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.2) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.btn-magnetic:hover::before { opacity: 1; }
.btn-magnetic:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,96,45,0.3); }
.newsletter-legal { font-size: 12px; color: var(--text-muted); margin-top: 14px; position: relative; }
.newsletter-legal a { color: var(--accent); text-decoration: underline; }

/* ─── SECTION LABELS + HEADINGS ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 1px; }
.section-heading {
  font-family: var(--font-display); font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.02em;
  color: var(--primary); max-width: 620px; margin-bottom: 48px;
}

/* ─── VALUE SECTION ─── */
.value-section { padding: 0 0 60px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.value-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
/* ─── CHAT MOCKUP ─── */
.chat-mockup {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 8px 40px rgba(21,42,61,0.1);
  max-width: 380px; width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.chat-mockup:hover { transform: translateY(-4px); }

/* Header */
.chat-mock-header {
  background: var(--accent); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.chat-mock-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white); font-weight: 700;
  border: 2px solid rgba(255,255,255,0.4);
}
.chat-mock-name { font-size: 14px; font-weight: 700; color: var(--white); flex: 1; }
.chat-mock-controls { display: flex; gap: 8px; color: rgba(255,255,255,0.7); }
.chat-mock-controls span { font-size: 16px; cursor: default; }

/* Body */
.chat-mock-body {
  padding: 16px; background: var(--bg);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 280px;
}
.chat-bubble {
  max-width: 85%; padding: 10px 14px;
  font-size: 13px; line-height: 1.5; border-radius: 12px;
}
.chat-bubble.bot {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-light);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-bubble.bot .chat-label { font-size: 11px; font-weight: 600; color: var(--accent); margin-bottom: 4px; }
.chat-bubble-route { margin-top: 6px; }
.chat-bubble-route li {
  font-size: 12px; color: var(--text-secondary); margin-bottom: 3px;
  list-style: disc; margin-left: 16px;
}
.chat-bubble-route .cost {
  background: rgba(254,96,45,0.1); padding: 2px 8px; border-radius: 4px;
  color: var(--text); font-weight: 600;
}
.chat-bubble-note {
  font-size: 11px; color: var(--text-muted); margin-top: 8px; line-height: 1.4;
}

/* Action buttons */
.chat-mock-actions {
  display: flex; gap: 8px; padding: 0 16px 12px;
  background: var(--bg);
}
.chat-mock-btn {
  flex: 1; padding: 10px 12px; border: 1.5px solid var(--accent);
  border-radius: 8px; font-size: 13px; font-weight: 700;
  color: var(--accent); background: transparent;
  text-align: center; cursor: default;
  transition: all 0.2s;
}
.chat-mock-btn:hover { background: var(--accent-light); }

/* Input */
.chat-mock-input {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-top: 1px solid var(--border-light);
  background: var(--surface);
}
.chat-mock-input span {
  font-size: 13px; color: var(--text-muted); font-style: italic;
}

@media (max-width: 768px) {
  .chat-mockup { max-width: 100%; }
}

/* ─── FEATURES ─── */
.features { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.feature-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 14px 18px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), var(--accent-light) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s; }
.feature-card:hover::before { opacity: 1; }
.feature-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.feature-card:hover::after { transform: scaleY(1); }
.feature-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(21,42,61,0.06); }
.feature-icon {
  width: 36px; height: 36px; min-width: 36px; background: var(--accent-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; position: relative; transition: all 0.4s;
}
.feature-card:hover .feature-icon { background: var(--accent); }
.feature-icon svg { width: 18px; height: 18px; color: var(--accent); transition: color 0.4s; }
.feature-card:hover .feature-icon svg { color: var(--white); }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; position: relative; }

/* ─── CTA BAND ─── */
.cta-band { text-align: center; padding: 32px 0 0; }
.cta-band p { font-size: 16px; color: var(--text-secondary); max-width: 580px; margin: 0 auto 28px; line-height: 1.65; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: transparent;
  border: 2px solid var(--primary); color: var(--primary);
  border-radius: var(--radius-md); font-family: var(--font);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-outline::before { content: ''; position: absolute; inset: 0; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: -1; }
.btn-outline:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-outline:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,42,61,0.15); }

/* ─── MARQUEE ─── */
.marquee-section { padding: 40px 0; overflow: hidden; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: var(--surface); }
.marquee-track { display: flex; gap: 48px; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-size: 24px; color: var(--text-muted); white-space: nowrap; opacity: 0.4; }
.marquee-track span.acc { color: var(--accent); opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── BENEFITS ─── */
.benefits { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border-light); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.benefit:hover::before { transform: scaleX(1); }
.benefit:hover { box-shadow: 0 12px 40px rgba(21,42,61,0.08); transform: translateY(-6px); }
.benefit-num { font-size: 56px; font-weight: 800; color: var(--border-light); line-height: 1; margin-bottom: 12px; transition: color 0.4s; }
.benefit:hover .benefit-num { color: var(--accent-light); }
.benefit h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.benefit p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── STATS ─── */
/* ─── STATS — ENHANCED ─── */
.stats-section {
  padding: 72px 0; background: var(--primary); position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,96,45,0.12), transparent 65%);
  border-radius: 50%;
}
.stats-section::after {
  content: ''; position: absolute; bottom: -40%; left: -8%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 60%);
  border-radius: 50%;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.stat {
  text-align: center; padding: 20px 16px; position: relative;
}
/* Vertical dividers between stats */
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: rgba(254,96,45,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 22px; height: 22px; color: var(--accent); }
.stat-number {
  font-family: var(--font); font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800; color: var(--white); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 10px;
  font-weight: 500; letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(even)::after { display: none; }
}

/* ─── HOW TO — PREMIUM CAROUSEL ─── */
.how-to { padding: 100px 0 80px; position: relative; overflow: hidden; }
.how-to .container { max-width: 1200px; }

/* Section bg accent */
.how-to::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.5; pointer-events: none;
}

/* Carousel wrapper */
.carousel-wrap { position: relative; margin-top: 48px; }

/* Connected progress line behind cards */
.carousel-progress-line {
  position: absolute; top: 42px; left: 40px; right: 40px; height: 2px;
  background: var(--border-light); z-index: 0;
}
.carousel-progress-fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px; transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Track */
.carousel-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 32px;
  position: relative; z-index: 1;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* Individual step card */
.carousel-card {
  flex: 0 0 calc((100% - 120px) / 6);
  min-width: 170px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: default;
}
.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(21,42,61,0.12), 0 0 0 1px var(--accent-glow);
  border-color: rgba(254,96,45,0.3);
}

/* Large step number - decorative watermark */
.carousel-num-bg {
  position: absolute; top: -20px; right: -10px;
  font-size: 120px; font-weight: 900; line-height: 1;
  color: var(--primary); opacity: 0.04;
  pointer-events: none; font-family: var(--font);
  transition: all 0.5s;
}
.carousel-card:hover .carousel-num-bg { opacity: 0.08; color: var(--accent); }

/* Card inner content */
.carousel-card-inner { padding: 28px 22px 24px; position: relative; z-index: 1; }

/* Small step badge */
.carousel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px 4px 4px;
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 100px; margin-bottom: 18px;
  transition: all 0.4s;
}
.carousel-card:hover .carousel-badge {
  border-color: var(--accent); background: var(--accent-light);
}
.carousel-badge-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  transition: all 0.4s;
}
.carousel-card:hover .carousel-badge-num { background: var(--accent); }
.carousel-badge-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
}

/* Step text */
.carousel-card h4 {
  font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.55; margin: 0;
}

/* Bottom gradient line on hover */
.carousel-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-card:hover::after { transform: scaleX(1); }

/* Final card — inverted dark */
.carousel-card.card-final {
  background: var(--primary); border-color: rgba(255,255,255,0.08);
}
.carousel-card.card-final .carousel-num-bg { color: var(--white); opacity: 0.06; }
.carousel-card.card-final:hover .carousel-num-bg { color: var(--accent); opacity: 0.15; }
.carousel-card.card-final .carousel-badge {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1);
}
.carousel-card.card-final:hover .carousel-badge { border-color: var(--accent); background: rgba(254,96,45,0.15); }
.carousel-card.card-final .carousel-badge-num { background: var(--accent); }
.carousel-card.card-final .carousel-badge-label { color: rgba(255,255,255,0.5); }
.carousel-card.card-final h4 { color: rgba(255,255,255,0.85); }
.carousel-card.card-final::after { background: linear-gradient(90deg, var(--accent), rgba(254,96,45,0.5)); }
.carousel-card.card-final:hover {
  box-shadow: 0 20px 60px rgba(21,42,61,0.3), 0 0 40px rgba(254,96,45,0.1);
  border-color: rgba(254,96,45,0.4);
}

/* Dots navigation */
.carousel-dots {
  display: none; justify-content: center; gap: 6px; margin-top: 8px;
}
.carousel-dot-item {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.3s;
}
.carousel-dot-item.active {
  width: 24px; border-radius: 4px; background: var(--accent);
}

/* Navigation arrows (desktop) */
.carousel-nav {
  display: flex; gap: 8px; margin-top: 24px; justify-content: center;
}
.carousel-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; color: var(--text-muted);
}
.carousel-nav-btn:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 20px rgba(254,96,45,0.1);
}
.carousel-nav-btn svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .carousel-card { flex: 0 0 72vw; min-width: unset; }
  .carousel-progress-line { display: none; }
  .carousel-dots { display: flex; }
  .carousel-nav { display: none; }
  .carousel-track { gap: 16px; padding: 0 0 24px; }
  .carousel-num-bg { font-size: 80px; }
}

/* ─── ACCURACY — ZIGZAG TIMELINE ─── */
.accuracy { padding: 100px 0 80px; }
.zigzag-timeline { position: relative; }
/* Central vertical line */
.zigzag-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
  transform: translateX(-50%);
}

.zigzag-row {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: stretch;
  margin-bottom: 48px; position: relative;
}
.zigzag-row:last-child { margin-bottom: 0; }

/* Center numbered dot */
.zigzag-dot {
  display: flex; align-items: center; justify-content: center; align-self: center;
  width: 48px; height: 48px; background: var(--primary); color: var(--white);
  border-radius: 50%; font-weight: 800; font-size: 18px;
  margin: 0 auto; position: relative; z-index: 2;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px var(--border-light);
  transition: all 0.4s;
}
.zigzag-row:hover .zigzag-dot { background: var(--accent); transform: scale(1.1); box-shadow: 0 0 0 6px var(--bg), 0 0 0 8px var(--accent-glow); }

/* Text content block — with left accent border and subtle bg */
.zigzag-content {
  padding: 28px 32px;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; align-items: center;
}
/* Accent stripe on the side facing the center line */
.zigzag-row:nth-child(odd) .zigzag-content { border-right: 3px solid var(--primary); }
.zigzag-row:nth-child(even) .zigzag-content { border-left: 3px solid var(--primary); }
.zigzag-row:hover .zigzag-content { 
  box-shadow: 0 8px 32px rgba(21,42,61,0.07); transform: translateY(-2px);
}
.zigzag-row:nth-child(odd):hover .zigzag-content { border-right-color: var(--accent); }
.zigzag-row:nth-child(even):hover .zigzag-content { border-left-color: var(--accent); }
.zigzag-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* Square image placeholder */
.zigzag-img {
  aspect-ratio: 1; width: 100%;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; color: var(--text-muted); text-align: center;
  line-height: 1.5; padding: 24px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.zigzag-img:hover { box-shadow: 0 8px 32px rgba(21,42,61,0.07); transform: translateY(-2px); }

/* Icon inside placeholder */
.zigzag-img-icon {
  width: 48px; height: 48px; background: var(--accent-light);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.zigzag-img-icon svg { width: 24px; height: 24px; color: var(--accent); }

/* Subtle diagonal pattern in placeholder */
.zigzag-img::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 8px, rgba(21,42,61,0.015) 8px, rgba(21,42,61,0.015) 9px
  );
  pointer-events: none;
}
.zigzag-img span { position: relative; z-index: 1; max-width: 200px; }

@media (max-width: 768px) {
  .zigzag-timeline::before { display: none; }
  .zigzag-row {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px;
  }
  /* Dot always first */
  .zigzag-dot {
    width: 40px; height: 40px; font-size: 15px; margin: 0;
    order: -2; align-self: flex-start;
    box-shadow: none;
  }
  /* Content always second */
  .zigzag-content {
    order: -1;
    border-left: 3px solid var(--primary) !important;
    border-right: none !important;
  }
  /* Illustrations last */
  .zigzag-img { order: 0; aspect-ratio: auto; min-height: auto; }
  .zigzag-chat-widget { order: 0; }
  .zigzag-chat-widget .mini-chat { min-height: auto; }
  .zigzag-rates-table { order: 0; min-height: auto; }
  /* Table compact on mobile */
  .rates-mini-table { font-size: 10px; }
  .rates-mini-table thead th { padding: 6px; font-size: 9px; }
  .rates-mini-table tbody td { padding: 5px 6px; white-space: normal; }
  .mini-chat-bubble, .mini-chat-bubble-user { font-size: 11px; }
}

/* ─── MINI CHAT WIDGET (zigzag) ─── */
.zigzag-chat-widget { display: flex; flex-direction: column; }
.zigzag-chat-widget .mini-chat { flex: 1; display: flex; flex-direction: column; min-height: 380px; }
.zigzag-chat-widget .mini-chat-body { flex: 1; }

/* Rates table fill */
.zigzag-rates-table { display: flex; flex-direction: column; min-height: 380px; }
.zigzag-rates-table .rates-mini-table { flex: 1; }

.mini-chat {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 6px 28px rgba(21,42,61,0.1);
  border: 1px solid var(--border-light);
  font-family: var(--font);
}
.mini-chat-header {
  background: var(--accent); padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.mini-chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.25); display: flex;
  align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.mini-chat-name { flex: 1; font-size: 12px; font-weight: 700; color: var(--white); }
.mini-chat-controls { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 4px; }

.mini-chat-intro {
  text-align: center; padding: 20px 16px 12px; background: var(--bg);
}
.mini-chat-avatar-lg {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--white);
  box-shadow: 0 2px 12px rgba(21,42,61,0.15);
}
.mini-chat-intro-name {
  font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.mini-chat-intro-text {
  font-size: 11px; color: var(--text-muted); line-height: 1.4;
}

.mini-chat-body { padding: 10px 12px; background: var(--bg); display: flex; flex-direction: column; gap: 8px; }
.mini-chat-bubble {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 10px; border-bottom-left-radius: 3px;
  padding: 8px 12px; font-size: 11px; color: var(--text);
  line-height: 1.45; max-width: 90%;
}
.mini-chat-bubble-sm { font-size: 11px; padding: 6px 10px; }
.mini-chat-row { display: flex; align-items: flex-end; gap: 6px; }
.mini-chat-avatar-sm {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--white);
}

.mini-chat-cta {
  background: var(--accent); color: var(--white);
  text-align: center; padding: 10px; font-size: 13px;
  font-weight: 700; cursor: default;
}
/* User bubble — orange, right-aligned */
.mini-chat-bubble-user {
  background: var(--accent); color: var(--white);
  border-radius: 10px; border-bottom-right-radius: 3px;
  padding: 8px 12px; font-size: 11px; line-height: 1.45;
  max-width: 80%; align-self: flex-end;
}
/* Input bar */
.mini-chat-input {
  display: flex; align-items: center; padding: 10px 14px;
  border-top: 1px solid var(--border-light); background: var(--surface);
}
.mini-chat-input span { font-size: 12px; color: var(--text-muted); font-style: italic; }

/* ─── RATES TABLE (zigzag) ─── */
.zigzag-rates-table {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 6px 28px rgba(21,42,61,0.1);
  border: 1px solid var(--border-light);
  background: var(--surface);
}
.rates-table-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  font-size: 12px; font-weight: 700; color: var(--text);
}
.rates-table-header svg { color: var(--accent); flex-shrink: 0; }
.rates-badge {
  margin-left: auto; font-size: 10px; font-weight: 600;
  color: var(--accent); background: var(--accent-light);
  padding: 2px 8px; border-radius: 100px;
}
.rates-mini-table {
  width: 100%; border-collapse: collapse; font-size: 11px;
}
.rates-mini-table thead th {
  padding: 8px 10px; text-align: left; font-weight: 700;
  color: var(--text-muted); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.05em; background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.rates-mini-table tbody td {
  padding: 7px 10px; border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary); white-space: nowrap;
}
.rates-mini-table tbody tr:hover { background: rgba(254,96,45,0.03); }
.cost-cell { font-weight: 700; color: var(--primary); }
.row-faded td { opacity: 0.4; }
.rates-table-footer {
  padding: 8px 14px; font-size: 10px; color: var(--text-muted);
  text-align: center; background: var(--bg);
  border-top: 1px solid var(--border-light);
}

/* ─── FAQ ─── */
/* ─── FAQ ─── */
.faq { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border-light); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 24px; background: var(--bg); border: none;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--text); cursor: pointer; text-align: left;
  transition: all 0.3s; line-height: 1.45; position: relative; overflow: hidden;
}
.faq-question::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-question::before, .faq-question:hover::before { transform: scaleY(1); }
.faq-question:hover { background: var(--surface-alt); padding-left: 28px; }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--text-muted); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer-inner { padding: 4px 24px 20px 28px; background: var(--bg); font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* FAQ illustration */
.faq-decor {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 32px; background: var(--bg); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); text-align: center;
}
.faq-decor-icon {
  width: 80px; height: 80px; background: var(--accent-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.faq-decor-icon svg { width: 36px; height: 36px; color: var(--accent); }
.faq-decor h4 { font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.35; }
.faq-decor p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.faq-decor-contact {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--primary); color: var(--white);
  border-radius: var(--radius-md); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.faq-decor-contact:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(254,96,45,0.2); }
.faq-decor-contact svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-decor { position: static; }
}

/* ─── FINAL CTA ─── */
.final-cta { padding: 80px 0 100px; }
.final-cta-inner {
  background: var(--primary); border-radius: var(--radius-xl);
  padding: 64px 48px; color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}

/* Animated gradient orbs */
.final-cta-inner::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,96,45,0.18) 0%, transparent 55%);
  border-radius: 50%; animation: orbFloat 18s infinite;
}
.final-cta-inner::after {
  content: ''; position: absolute; bottom: -50%; left: -10%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 55%);
  border-radius: 50%; animation: orbFloat 22s reverse infinite;
}

/* Animated grid/mesh background */
.final-cta-grid {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  opacity: 0.06;
}
.final-cta-grid svg { width: 100%; height: 100%; }

/* Floating route dots */
.final-cta-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.cta-particle {
  position: absolute; border-radius: 50%;
  animation: particleFloat linear infinite;
}
.cta-particle:nth-child(1) { width: 4px; height: 4px; background: var(--accent); top: 20%; left: 15%; animation-duration: 8s; opacity: 0.4; }
.cta-particle:nth-child(2) { width: 3px; height: 3px; background: rgba(255,255,255,0.3); top: 60%; left: 80%; animation-duration: 12s; animation-delay: -3s; }
.cta-particle:nth-child(3) { width: 5px; height: 5px; background: var(--accent); top: 75%; left: 25%; animation-duration: 10s; animation-delay: -5s; opacity: 0.3; }
.cta-particle:nth-child(4) { width: 3px; height: 3px; background: rgba(255,255,255,0.2); top: 30%; left: 70%; animation-duration: 14s; animation-delay: -7s; }
.cta-particle:nth-child(5) { width: 6px; height: 6px; background: var(--accent); top: 50%; left: 50%; animation-duration: 9s; animation-delay: -2s; opacity: 0.2; }
.cta-particle:nth-child(6) { width: 3px; height: 3px; background: rgba(255,255,255,0.25); top: 15%; left: 60%; animation-duration: 11s; animation-delay: -4s; }

@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(40px, -60px) scale(0.5); opacity: 0; }
}

/* Animated dashed route line */
.final-cta-route {
  position: absolute; top: 50%; left: 0; right: 0; height: 2px;
  pointer-events: none; overflow: visible;
}
.final-cta-route svg {
  width: 100%; height: 80px; position: absolute; top: -40px;
}
.route-path-anim {
  stroke-dasharray: 8 8;
  animation: routeDash 20s linear infinite;
}
@keyframes routeDash { to { stroke-dashoffset: -200; } }
.final-logo { height: 30px; margin-bottom: 28px; opacity: 0.85; position: relative; z-index: 1; filter: brightness(0) invert(1); }
.final-cta-inner h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; margin-bottom: 14px; color: var(--white); position: relative; z-index: 1; }
.final-cta-inner > p { font-size: 16px; opacity: 0.7; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; position: relative; z-index: 1; }
.final-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 580px; margin: 0 auto 18px; position: relative; z-index: 1; }
.final-form input { flex: 1; min-width: 150px; padding: 14px 18px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); font-family: var(--font); font-size: 15px; background: rgba(255,255,255,0.06); color: var(--white); outline: none; transition: all 0.3s; }
.final-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(254,96,45,0.15); background: rgba(255,255,255,0.1); }
.final-form input::placeholder { color: rgba(255,255,255,0.35); }
.btn-sub-accent { padding: 14px 30px; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius-md); font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; white-space: nowrap; position: relative; overflow: hidden; }
.btn-sub-accent::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.btn-sub-accent:hover::before { transform: translateX(100%); }
.btn-sub-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,96,45,0.3); }
.final-legal { font-size: 12px; opacity: 0.4; position: relative; z-index: 1; }
.final-legal a { color: inherit; text-decoration: underline; }

.footer { padding: 36px 0; text-align: center; font-size: 13px; color: var(--text-muted); }
.footer a { color: var(--accent); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero-title-static { font-size: clamp(28px, 7vw, 44px); }
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 28px; }
  .newsletter-form, .final-form { flex-direction: column; }
  .hero { min-height: auto; padding: 110px 0 48px; }
  .final-cta-inner { padding: 40px 24px; }
  .cursor-dot, .cursor-ring { display: none; }
  .float-badge { display: none; }

  /* Reduce section spacing on mobile */
  .value-section { padding: 60px 0 32px; }
  .benefits, .how-to, .accuracy, .faq { padding: 60px 0; }
  .stats-section { padding: 48px 0; }
  .final-cta { padding: 48px 0 60px; }
  .cta-band { padding: 24px; margin-top: 32px; }
  .cta-band p { font-size: 14px; }
  .section-heading { font-size: clamp(24px, 5vw, 32px); margin-bottom: 28px; }
  .marquee-section { padding: 14px 0; }

  .chat-widget-wrap { bottom: 16px; right: 16px; }
  .chat-widget-fixed { width: 48px; height: 48px; }
  .chat-widget-label { font-size: 11px; }
  .chat-widget-arrow { width: 16px; height: 24px; }
}
@media (max-width: 480px) {
  .header-cta span { display: none; }
  .container { padding: 0 16px; }
}

/* ─── CONTACT FORM 7 OVERRIDES ─── */

/* Newsletter form */
.newsletter-form .wpcf7 { width: 100%; }
.newsletter-form .wpcf7-form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter-form .wpcf7-form p {
  margin: 0; flex: 1; min-width: 170px;
}
.newsletter-form .wpcf7-form p:last-of-type {
  flex: 0 0 auto;
}
.newsletter-form .wpcf7-form input[type="text"],
.newsletter-form .wpcf7-form input[type="email"] {
  width: 100%; padding: 13px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 15px; background: var(--bg);
  color: var(--text); outline: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsletter-form .wpcf7-form input[type="text"]:focus,
.newsletter-form .wpcf7-form input[type="email"]:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); transform: translateY(-2px);
}
.newsletter-form .wpcf7-form input[type="text"]::placeholder,
.newsletter-form .wpcf7-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
.newsletter-form .wpcf7-form input[type="submit"] {
  padding: 14px 30px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; white-space: nowrap;
}
.newsletter-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,96,45,0.3);
}
.newsletter-form .wpcf7-form .wpcf7-response-output {
  width: 100%; margin: 10px 0 0; font-size: 13px;
  border-radius: var(--radius-sm);
}

/* Final CTA form */
.final-form .wpcf7 { width: 100%; max-width: 580px; margin: 0 auto 18px; }
.final-form .wpcf7-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.final-form .wpcf7-form p {
  margin: 0; flex: 1; min-width: 150px;
}
.final-form .wpcf7-form p:last-of-type {
  flex: 0 0 auto;
}
.final-form .wpcf7-form input[type="text"],
.final-form .wpcf7-form input[type="email"] {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 15px;
  background: rgba(255,255,255,0.06); color: var(--white);
  outline: none; transition: all 0.3s;
}
.final-form .wpcf7-form input[type="text"]:focus,
.final-form .wpcf7-form input[type="email"]:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(254,96,45,0.15);
  background: rgba(255,255,255,0.1);
}
.final-form .wpcf7-form input[type="text"]::placeholder,
.final-form .wpcf7-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
}
.final-form .wpcf7-form input[type="submit"] {
  padding: 14px 30px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.3s; white-space: nowrap;
}
.final-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,96,45,0.3);
}
.final-form .wpcf7-form .wpcf7-response-output {
  width: 100%; margin: 10px 0 0; font-size: 13px;
  border-radius: var(--radius-sm); color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}

/* Hide CF7 default styling noise */
.wpcf7-form .wpcf7-not-valid-tip { font-size: 12px; }
.wpcf7-spinner { display: none; }

@media (max-width: 768px) {
  .newsletter-form .wpcf7-form,
  .final-form .wpcf7-form { flex-direction: column; }
  .newsletter-form .wpcf7-form p,
  .final-form .wpcf7-form p { min-width: unset; }
}

/* ─── MODAL ─── */
.rcai-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.rcai-modal-overlay.active { opacity: 1; }
.rcai-modal-content {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  padding: 40px 36px 36px; max-width: 520px; width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2); transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.rcai-modal-overlay.active .rcai-modal-content {
  transform: translateY(0) scale(1);
}
.rcai-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 28px; line-height: 1;
  color: var(--text-muted); cursor: pointer; transition: color 0.2s;
  padding: 4px 8px;
}
.rcai-modal-close:hover { color: var(--text); }
.rcai-modal-content h3 {
  font-family: var(--font); font-size: 22px; font-weight: 700;
  color: var(--primary); margin: 0 0 8px;
}
.rcai-modal-content > p {
  font-size: 14px; color: var(--text-muted); margin: 0 0 20px; line-height: 1.5;
}

/* CF7 inside modal */
.rcai-modal-form .wpcf7-form p { margin: 0 0 14px; }
.rcai-modal-form .wpcf7-form input[type="text"],
.rcai-modal-form .wpcf7-form input[type="email"],
.rcai-modal-form .wpcf7-form textarea {
  width: 100%; padding: 13px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 15px; background: var(--bg);
  color: var(--text); outline: none; transition: all 0.3s;
}
.rcai-modal-form .wpcf7-form input:focus,
.rcai-modal-form .wpcf7-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light);
}
.rcai-modal-form .wpcf7-form input[type="submit"] {
  width: 100%; padding: 14px 30px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.rcai-modal-form .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,96,45,0.3);
}
.rcai-modal-form .wpcf7-form .wpcf7-response-output {
  margin: 10px 0 0; font-size: 13px; border-radius: var(--radius-sm);
}

/* btn-outline as button reset */
button.btn-outline {
  cursor: pointer;
}

/* ─── FOOTER LINKS ─── */
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-links {
  display: flex; gap: 20px;
}
.footer-links a {
  color: inherit; opacity: 0.6; font-size: 14px;
  text-decoration: none; transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
