/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #07090f;
  --bg2:    #0d1117;
  --bg3:    #111827;
  --border: rgba(99,102,241,0.15);
  --cyan:   #22d3ee;
  --indigo: #6366f1;
  --purple: #a855f7;
  --green:  #22c55e;
  --amber:  #f59e0b;
  --red:    #ef4444;
  --text:   #f1f5f9;
  --muted:  #94a3b8;
  --card:   rgba(15,20,35,0.7);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }

a { color: inherit; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; text-decoration: none; border: none; font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #fff;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,0.35); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1.5px solid transparent;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.1); }
.btn-lg { padding: 15px 36px; font-size: 16px; border-radius: 12px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

/* ── Spin animation ─────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(7,9,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-logo-full {
  display: block;
  width: auto;
  height: 40px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
  flex: 1; justify-content: center;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s; display: block;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-bg-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3);
  font-size: 13px; color: var(--indigo); font-weight: 500; margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); animation: pulse 2s infinite; flex-shrink: 0;
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px); letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-subtitle { font-size: 18px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust span { font-size: 13px; color: var(--muted); }
.trust-avatars { display: flex; }
.trust-avatars .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border: 2px solid var(--bg); display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700;
  margin-left: -8px; color: #fff;
}
.trust-avatars .avatar:first-child { margin-left: 0; }

/* ── Dashboard Mockup ───────────────────────────────────── */
.hero-visual { position: relative; }
.dashboard-mockup {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.1);
}
.mockup-header {
  background: var(--bg3); padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot.red    { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green  { background: #22c55e; }
.mockup-title { font-size: 12px; color: var(--muted); margin-left: 8px; }
.mockup-body { padding: 20px; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.mockup-stat {
  background: var(--bg3); border-radius: 10px; padding: 12px;
  border: 1px solid var(--border);
}
.stat-value { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.stat-value.cyan   { color: var(--cyan); }
.stat-value.green  { color: var(--green); }
.stat-value.purple { color: var(--purple); }
.stat-label { font-size: 10px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.mockup-call-list { display: flex; flex-direction: column; gap: 6px; }
.call-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; font-size: 12px;
}
.call-item.live { background: rgba(34,211,238,0.06); border: 1px solid rgba(34,211,238,0.15); }
.call-item:not(.live) { background: rgba(255,255,255,0.02); }
.call-indicator {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); animation: pulse 1.5s infinite; flex-shrink: 0;
}
.call-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.call-dot.completed { background: var(--green); }
.call-dot.queued    { background: var(--muted); }
.call-info { flex: 1; }
.call-name  { display: block; font-weight: 500; color: var(--text); }
.call-status { display: block; color: var(--muted); font-size: 10px; margin-top: 1px; }
.call-badge {
  padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 600; flex-shrink: 0;
}
.call-badge.interested { background: rgba(34,211,238,0.12); color: var(--cyan); }
.call-badge.booked     { background: rgba(34,197,94,0.12);  color: var(--green); }
.call-badge.callback   { background: rgba(245,158,11,0.12); color: var(--amber); }
.call-badge.pending    { background: rgba(99,102,241,0.12); color: var(--indigo); }

/* ── Floating cards ─────────────────────────────────────── */
.floating-card {
  position: absolute; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.card-1 { bottom: 48px; left: -40px; animation-delay: 0s; }
.card-2 { top: 40px; right: -30px; animation-delay: 1.5s; }
.fc-icon { font-size: 22px; }
.fc-value { font-size: 18px; font-weight: 800; color: var(--text); }
.fc-label { font-size: 11px; color: var(--muted); }

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stats-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
.stat-item { text-align: center; padding: 8px 16px; }
.stat-number { font-size: 38px; font-weight: 800; letter-spacing: -1px; }
.stat-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ── Section Headers ────────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-badge {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.25);
  font-size: 12px; color: var(--cyan); font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-size: clamp(26px, 4vw, 42px); letter-spacing: -0.5px; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--muted); max-width: 560px; }

/* ── Features ───────────────────────────────────────────── */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: all 0.3s; backdrop-filter: blur(8px);
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.4); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(99,102,241,0.1);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,0.12); margin-bottom: 20px; color: var(--indigo);
}
.feature-card:nth-child(1) .feature-icon { background: rgba(34,211,238,0.12); color: var(--cyan); }
.feature-card:nth-child(2) .feature-icon { background: rgba(99,102,241,0.12); color: var(--indigo); }
.feature-card:nth-child(3) .feature-icon { background: rgba(168,85,247,0.12); color: var(--purple); }
.feature-card:nth-child(4) .feature-icon { background: rgba(34,197,94,0.12);  color: var(--green); }
.feature-card:nth-child(5) .feature-icon { background: rgba(245,158,11,0.12); color: var(--amber); }
.feature-card:nth-child(6) .feature-icon { background: rgba(239,68,68,0.12);  color: var(--red); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── How It Works ───────────────────────────────────────── */
.how-it-works { background: var(--bg2); }
.steps-container {
  display: flex; flex-direction: column; gap: 0;
  max-width: 800px; margin: 0 auto;
}
.step {
  display: grid; grid-template-columns: 64px 1fr 80px; align-items: center; gap: 24px;
  padding: 32px 0;
}
.step-number {
  font-size: 42px; font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-content h3 { font-size: 20px; margin-bottom: 8px; }
.step-content p   { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-icon-box {
  width: 70px; height: 70px; border-radius: 18px;
  background: rgba(99,102,241,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--indigo);
}
.step-connector {
  width: 2px; height: 32px; margin-left: 31px;
  background: linear-gradient(180deg, var(--indigo), transparent);
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px; position: relative;
  transition: all 0.3s; backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), 0 20px 60px rgba(99,102,241,0.2);
}
.plan-badge {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--muted); margin-bottom: 20px;
}
.plan-badge.popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
  letter-spacing: 0.5px; text-transform: uppercase; margin: 0;
}
.plan-price { margin-bottom: 8px; }
.price-currency { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-amount   { font-size: 52px; font-weight: 800; letter-spacing: -2px; }
.price-period   { font-size: 14px; color: var(--muted); }
.plan-minutes {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.2);
  font-size: 13px; color: var(--cyan); font-weight: 600;
  margin-bottom: 28px;
}
.plan-features {
  list-style: none; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.plan-features svg { color: var(--cyan); flex-shrink: 0; }
.plan-overage { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; }
.plan-cta { width: 100%; text-align: center; justify-content: center; }
.pricing-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--muted); }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; backdrop-filter: blur(8px);
}
.testimonial-card.featured { border-color: rgba(99,102,241,0.4); }
.testimonial-stars { color: var(--amber); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text  { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
}
.testimonial-card:nth-child(2) .author-avatar { background: linear-gradient(135deg, var(--cyan), var(--indigo)); }
.testimonial-card:nth-child(3) .author-avatar { background: linear-gradient(135deg, var(--amber), var(--red)); }
.author-name  { font-size: 14px; font-weight: 600; }
.author-title { font-size: 12px; color: var(--muted); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; backdrop-filter: blur(8px);
}
.faq-question {
  width: 100%; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 16px; font-size: 16px; font-weight: 500;
  transition: color 0.2s; background: none; border: none; color: var(--text);
  font-family: inherit; text-align: left;
}
.faq-question:hover { color: var(--cyan); }
.faq-icon { color: var(--indigo); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px; color: var(--muted); line-height: 1.8;
}
.faq-answer p { padding: 0 28px 22px; }

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(34,211,238,0.08) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-box {
  text-align: center; position: relative; padding: 80px 40px;
}
.cta-glow {
  position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(26px, 4vw, 46px); letter-spacing: -0.5px; margin-bottom: 16px; }
.cta-box p  { font-size: 17px; color: var(--muted); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg2); padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 260px; line-height: 1.7; }
.footer-links h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--muted); margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── Scroll animations ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Enroll / Get-started page ──────────────────────────── */
.enroll-page { background: var(--bg); }
.enroll-section {
  min-height: 100vh; padding: 100px 0 60px;
  display: flex; align-items: center;
}
.enroll-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.enroll-left { position: sticky; top: 120px; }
.enroll-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 24px;
}
.enroll-left h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px; margin-bottom: 16px; }
.enroll-subtitle { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.enroll-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.perk-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.perk-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.selected-plan-box {
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.25);
  border-radius: 14px; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.spb-label { font-size: 11px; color: var(--indigo); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.spb-name  { font-size: 18px; font-weight: 700; }
.spb-detail{ font-size: 13px; color: var(--muted); }

/* ── Enrollment Form Card ───────────────────────────────── */
.enroll-form-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
}
.enroll-form-card h2 { font-size: 24px; margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { margin-bottom: 20px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.form-group label .required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: var(--text); font-family: inherit;
  transition: border-color 0.2s; outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--indigo); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='1 1 6 7 11 1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--bg3); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 90px; }
.field-error { font-size: 12px; color: var(--red); display: none; }
.form-error {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px; padding: 12px 16px; font-size: 14px; color: var(--red);
  margin-bottom: 20px;
}
.submit-btn { width: 100%; margin-top: 4px; }
.btn-loader { display: inline-flex; align-items: center; }
.form-disclaimer { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; }
.form-disclaimer a { color: var(--indigo); text-decoration: none; }
.form-disclaimer a:hover { text-decoration: underline; }

/* ── Success Card ───────────────────────────────────────── */
.success-card {
  background: var(--bg2); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 24px; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.success-icon { color: var(--green); }
.success-card h2 { font-size: 28px; }
.success-card > p { font-size: 16px; color: var(--muted); max-width: 420px; line-height: 1.7; }
.success-steps {
  display: flex; flex-direction: column; gap: 14px;
  width: 100%; max-width: 380px; margin: 8px 0;
}
.ss-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--muted); text-align: left;
}
.ss-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--green);
}

/* ── Mobile nav toggle states ───────────────────────────── */
.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); }

/* ── WhatsApp Marketing Section ─────────────────────────── */
.wa-marketing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--border);
}
.wa-badge {
  background: rgba(37,211,102,0.12) !important;
  border-color: rgba(37,211,102,0.3) !important;
  color: #25d366 !important;
}
.wa-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.wa-text-col .section-title { margin-bottom: 16px; }
.wa-text-col .section-subtitle { margin-bottom: 40px; }
.wa-features { display: flex; flex-direction: column; gap: 28px; }
.wa-feat {
  display: flex; gap: 16px; align-items: flex-start;
}
.wa-feat-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #25d366;
}
.wa-feat h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.wa-feat p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* WhatsApp phone mockup */
.wa-visual-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.wa-phone {
  width: 320px; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(37,211,102,0.2);
  background: #0a1628;
  box-shadow: 0 24px 80px rgba(37,211,102,0.08), 0 0 0 1px rgba(255,255,255,0.04);
}
.wa-chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #128c7e;
}
.wa-avatar-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0;
}
.wa-business-name { font-weight: 600; font-size: 14px; color: #fff; }
.wa-verified { font-size: 11px; color: rgba(255,255,255,0.75); }
.wa-messages { padding: 16px 12px; display: flex; flex-direction: column; gap: 10px; background: #0d1f33; }
.wa-bubble {
  background: #1a2e4a; border-radius: 12px 12px 12px 2px;
  padding: 10px 12px; max-width: 92%; font-size: 13px; line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.05);
}
.wa-bubble p { color: var(--text); }
.wa-bubble strong { color: #25d366; }
.wa-ts { display: block; text-align: right; font-size: 10px; color: var(--muted); margin-top: 4px; }
.wa-catalogue {
  display: flex; gap: 10px; align-items: center;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 10px; margin: 8px 0 4px; border: 1px solid rgba(255,255,255,0.08);
}
.wa-cat-img {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #25d366;
}
.wa-cat-title { font-size: 12px; font-weight: 600; color: var(--text); }
.wa-cat-sub   { font-size: 11px; color: var(--muted); }
.wa-cat-cta   { font-size: 11px; color: #25d366; font-weight: 600; margin-top: 3px; }
.wa-input-bar {
  padding: 10px 14px; background: #0f1e30;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.wa-badge-float {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25);
  font-size: 12px; color: #25d366; font-weight: 500;
}
.wa-green-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #25d366;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── Cubixkraft Branding Bar ────────────────────────────── */
.ck-branding {
  background: #000;
  border-top: 1px solid rgba(255,215,0,0.18);
  padding: 22px 24px;
}
.ck-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.ck-left  { display: flex; align-items: center; gap: 10px; }
.ck-made-by { font-size: 12px; color: rgba(255,255,255,0.42); white-space: nowrap; letter-spacing: 0.3px; }
.ck-logo-wrap { display: flex; align-items: center; }
.ck-logo-img  { height: 44px; width: 44px; display: block; object-fit: contain; border-radius: 6px; }
.ck-vline {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, transparent, rgba(255,215,0,0.25), transparent);
  flex-shrink: 0;
}
.ck-right  { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ck-copy   { font-size: 12px; color: rgba(255,255,255,0.42); white-space: nowrap; }
.ck-legal  { display: flex; align-items: center; gap: 8px; }
.ck-link   { font-size: 11px; color: rgba(255,215,0,0.55); text-decoration: none; transition: color 0.2s; }
.ck-link:hover { color: #FFD700; text-decoration: underline; }
.ck-dot    { font-size: 11px; color: rgba(255,255,255,0.18); }
@media (max-width: 640px) {
  .ck-vline { display: none; }
  .ck-inner { gap: 14px; }
  .ck-right { align-items: center; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps-container { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid {
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: 1fr 4px 1fr;
  }
  .stat-divider:nth-child(4) { display: none; }
  .enroll-container { grid-template-columns: 1fr; }
  .enroll-left { position: static; }
  .wa-layout { grid-template-columns: 1fr; gap: 48px; }
  .wa-visual-col { order: -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(7,9,15,0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 22px; font-weight: 600; color: var(--text); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 100; }
  .features-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step-visual { display: none; }
  .step-connector { margin-left: 23px; }
  .hero { padding: 120px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: unset;
  }
  .stat-divider { display: none; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .enroll-form-card { padding: 28px 20px; }
  .cta-box { padding: 60px 20px; }
  .wa-phone { width: 100%; max-width: 320px; }
}
