/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1E38;
  --navy2: #152D52;
  --navy3: #1A3A60;
  --teal: #00C4A7;
  --teal2: #00A38A;
  --teal3: #00E8C6;
  --amber: #F5A623;
  --white: #FFFFFF;
  --off: #F4F7FB;
  --muted: #7A8EA8;
  --border: #DDE5F0;
  --danger: #E8503A;
  --success: #1AAB6D;
  --text: #0B1E38;
  --hot: #FF4D6D;
  --warm: #F5A623;
  --cool: #4A9EE8;
  --purple: #6B4FA0;
  --r: 14px;
  --rs: 10px;
  --shadow: 0 8px 32px rgba(11, 30, 56, 0.12);
  --shadow-lg: 0 24px 64px rgba(11, 30, 56, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.text-teal { color: var(--teal); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 196, 167, 0.35);
}

.btn-primary:hover {
  background: var(--teal2);
  box-shadow: 0 6px 28px rgba(0, 196, 167, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.btn-ghost-light:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }

.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(11, 30, 56, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: var(--rs) !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--teal2) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 20% 40%, #1a3a5c, var(--navy) 50%, #060e1a);
  padding: 140px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: rgba(0, 196, 167, 0.12);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: rgba(107, 79, 160, 0.1);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 196, 167, 0.1);
  border: 1px solid rgba(0, 196, 167, 0.25);
  padding: 8px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
}

.hero-stat span {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
}

.hero-stat small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ── Phone Mockup ── */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: 300px;
  background: var(--off);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--off);
  border-radius: 32px;
  overflow: hidden;
}

.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 196, 167, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.app-topbar {
  background: var(--navy);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-user { display: flex; align-items: center; gap: 10px; }

.app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 196, 167, 0.2);
  border: 2px solid rgba(0, 196, 167, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}

.app-name {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.app-show {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.app-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0, 196, 167, 0.12);
  padding: 4px 8px;
  border-radius: 6px;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
  background: var(--navy);
}

.app-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 4px;
}

.app-stat .val {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.app-stat .val.teal { color: var(--teal); }
.app-stat .val.hot { color: var(--hot); }
.app-stat .val.warm { color: var(--warm); }

.app-stat .lbl {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-voice {
  background: var(--navy);
  padding: 20px;
  text-align: center;
  position: relative;
}

.app-voice-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.app-voice-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
}

.pulse-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: vPulse 2.4s ease-out infinite;
}

.pulse-ring:nth-child(2) { animation-delay: 0.8s; }

@keyframes vPulse {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.app-voice-hint {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

.app-leads {
  padding: 12px;
  background: var(--white);
}

.app-leads-hdr {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.app-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.app-lead:last-child { border-bottom: none; }

.lead-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.lead-info { flex: 1; min-width: 0; }

.lead-info strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.lead-info span {
  font-size: 9px;
  color: var(--muted);
}

.lead-score {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.lead-score.hot { color: var(--hot); }
.lead-score.warm { color: var(--warm); }

/* ── Trust bar ── */
.trust {
  background: var(--off);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.trust-items span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy2);
  opacity: 0.6;
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255, 255, 255, 0.5); }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  background: rgba(0, 196, 167, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Features ── */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 196, 167, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-icon.teal { background: rgba(0, 196, 167, 0.12); color: var(--teal); }
.feature-icon.amber { background: rgba(245, 166, 35, 0.12); color: var(--amber); }
.feature-icon.hot { background: rgba(255, 77, 109, 0.12); color: var(--hot); }
.feature-icon.cool { background: rgba(74, 158, 232, 0.12); color: var(--cool); }
.feature-icon.purple { background: rgba(107, 79, 160, 0.12); color: var(--purple); }
.feature-icon.success { background: rgba(26, 171, 109, 0.12); color: var(--success); }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── How it works ── */
.how {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--amber), rgba(245, 166, 35, 0.3));
}

.timeline-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
}

.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 196, 167, 0.15);
  border: 2px solid rgba(0, 196, 167, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-num.live {
  background: rgba(0, 196, 167, 0.25);
  border-color: var(--teal);
  box-shadow: 0 0 24px rgba(0, 196, 167, 0.3);
}

.timeline-num.after {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--amber);
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.timeline-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-content li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 20px;
  position: relative;
}

.timeline-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
}

/* ── Pricing ── */
.pricing {
  padding: 100px 0;
  background: var(--off);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--border);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}

.pricing-toggle-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 9px;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-toggle-btn.active {
  background: var(--navy);
  color: var(--white);
}

.save-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 196, 167, 0.15);
  color: var(--teal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px rgba(0, 196, 167, 0.15), var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-emoji { font-size: 32px; margin-bottom: 12px; }

.price-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.price-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.price-annual { display: none; }
.pricing.annual .price-monthly { display: none; }
.pricing.annual .price-annual { display: inline; }

.price-billed {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.annual-only { display: none; }
.pricing.annual .annual-only { display: block; }

.price-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

.price-card.off-season {
  opacity: 0.85;
  border-style: dashed;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy2), var(--navy));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}

.testimonial p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 196, 167, 0.2);
  border: 2px solid rgba(0, 196, 167, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.testimonial footer strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.testimonial footer span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: var(--white);
}

.cta-box {
  background: var(--navy);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 196, 167, 0.15);
}

.cta-rings span:nth-child(1) { width: 120px; height: 120px; }
.cta-rings span:nth-child(2) { width: 180px; height: 180px; border-color: rgba(0, 196, 167, 0.08); }
.cta-rings span:nth-child(3) { width: 240px; height: 240px; border-color: rgba(0, 196, 167, 0.04); }

.cta-logo {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 48px rgba(0, 196, 167, 0.3);
}

/* ── Footer ── */
.footer {
  background: #060e1a;
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--teal); }

.footer-address {
  font-size: 13px;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; }
  .cta-visual { display: none; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { right: 0; }

  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 80px; min-height: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }

  .hero-actions { justify-content: center; }

  .hero-stats { justify-content: center; }

  .hero-phone-wrap { order: -1; }

  .phone { width: 260px; }

  .features-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 20px; }

  .timeline-num {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .timeline-step { gap: 20px; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider { display: none; }

  .hero-actions { flex-direction: column; width: 100%; }

  .hero-actions .btn { width: 100%; }
}
