:root {
  --bg:        #0B1B3F;
  --bg-alt:    #102A5C;
  --card:      #142A5B;
  --card-h:    #1C3A82;
  --fg:        #FFFFFF;
  --fg-muted:  #F4F6F9;
  --accent:    #2563EB;
  --accent-hov:#1D4ED8;
  --accent-soft:#DBEAFE;
  --accent-tint: rgba(37,99,235,0.10);
  --accent-glow: rgba(37,99,235,0.35);
  --blue-700:  #1E40AF;
  --blue-500:  #3B82F6;
  --blue-300:  #93C5FD;
  --green:     #00E676;
  --border:    rgba(255,255,255,0.08);
  --radius:    14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Light-blue surface palette (landing-page sections) */
  --bg-light:    #EFF6FF;   /* page surface */
  --bg-alt-light:#DBEAFE;   /* alternating section surface (matches footer today) */
  --card-light:  #FFFFFF;   /* cards on light surface */
  --card-h-light:#F0F7FF;   /* card hover */
  --text-strong: #0B1B3F;   /* primary text on light surface (replaces var(--fg) on sections) */
  --text-soft:   rgba(30,58,138,0.65);  /* secondary text (replaces rgba(244,246,249,0.X)) */
  --border-light:rgba(30,58,138,0.10); /* soft blue hairline border */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-light);
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV — sticky, dark, always visible ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 8000;
  background: rgba(219,234,254,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -0.5px;
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--accent-hov); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  background: var(--bg-light);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(0,230,118,0.2);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-strong);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(30,58,138,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  box-shadow: 0 0 28px var(--accent-glow);
}
.hero-cta:hover {
  background: var(--accent-hov);
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--accent-glow);
}
.hero-cta-sub {
  font-size: 13px;
  color: rgba(30,58,138,0.55);
  letter-spacing: 0.01em;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: 12px;
  color: rgba(30,58,138,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* ── PHONE MOCKUP ── */
.hero-right { position: relative; }
.phone-frame {
  position: relative;
  width: 280px;
  background: #0D1835;
  border-radius: 40px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,230,118,0.08), 0 40px 80px rgba(0,0,0,0.4);
}
.phone-notch {
  width: 100px;
  height: 26px;
  background: #0D1835;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: #0A1128;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: var(--card);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #0A1128;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-info { display: flex; flex-direction: column; }
.wa-name { color: white; font-size: 14px; font-weight: 600; }
.wa-status { color: var(--green); font-size: 11px; }
.wa-chat {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.msg {
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 220px;
}
.msg.cust {
  background: #1A2550;
  color: #E2E8F0;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg.agent {
  background: rgba(0,230,118,0.15);
  color: var(--green);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(0,230,118,0.15);
}
.msg.agent.system {
  background: rgba(255,82,82,0.1);
  color: #FF6B6B;
  font-size: 11px;
  font-style: italic;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255,82,82,0.1);
}
.wa-input {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
}
.wa-input-bar {
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.phone-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,230,118,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PROOF TICKER ── */
.proof {
  background: var(--bg-alt-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(30,58,138,0.55);
  text-align: center;
  margin-bottom: 20px;
}
.proof-scrolling {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.proof-scrolling::-webkit-scrollbar { display: none; }
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-initial {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--card-h-light);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,230,118,0.15);
}
.proof-item span { font-size: 13px; color: rgba(30,58,138,0.65); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt-light);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.featured-card {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { fill: var(--accent); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--text-strong);
  line-height: 1.6;
  flex: 1;
}
.testimonial-quote em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--accent-tint);
}
.featured-avatar { background: var(--accent-tint); color: var(--accent); }
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text-strong); }
.testimonial-role { font-size: 12px; color: rgba(30,58,138,0.55); }
.testimonials-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(30,58,138,0.65);
  font-weight: 500;
}
.testimonials-trust svg { stroke: var(--accent); }

/* ── FEATURES ── */
.features { padding: 96px 0; background: var(--bg-light); border-top: 1px solid var(--border-light); }
.features-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-light);
  border: 1.5px solid var(--border-light);
  border-radius: 0;
  padding: 36px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  border: none;
}
.feature-icon.tone-cobalt { background: var(--accent); }
.feature-icon.tone-blue   { background: var(--blue-500); }
.feature-icon.tone-sky    { background: #38BDF8; }
.feature-icon.tone-indigo { background: var(--blue-700); }
.feature-icon.tone-aqua   { background: #06B6D4; }
.feature-icon.tone-azure  { background: #60A5FA; }
.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-strong);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(30,58,138,0.70);
  line-height: 1.65;
}

/* ── PLAYBOOK ── */
.playbook {
  background: var(--bg-alt-light);
  padding: 96px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.playbook-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.playbook .section-eyebrow { color: var(--accent); }
.playbook .section-headline { color: var(--text-strong); }
.step-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--accent-tint);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: rgba(30,58,138,0.70);
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 28px;
  color: rgba(30,58,138,0.12);
}

/* ── PRICING ── */
.pricing { padding: 96px 0 100px; background: var(--bg-light); border-top: 1px solid var(--border-light); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pricing-toggle-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}
.pricing-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
}
.pricing-toggle-btn.active {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.toggle-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
}
.toggle-sub {
  font-size: 10px;
  color: rgba(30,58,138,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-toggle-btn.active .toggle-sub { color: var(--accent); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  align-items: center;
}
.pricing-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-3px);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  padding: 36px 28px;
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: scale(1.03) translateY(-3px);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.card-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(30,58,138,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -2px;
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: rgba(30,58,138,0.55);
  font-weight: 500;
}
.card-desc {
  font-size: 14px;
  color: rgba(30,58,138,0.70);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 42px;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.card-features li {
  font-size: 14px;
  color: var(--text-strong);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.card-cta {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-strong);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  border: 1.5px solid rgba(30,58,138,0.20);
}
.card-cta:hover { background: rgba(30,58,138,0.06); transform: translateY(-1px); }
.pricing-card.featured .card-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}
.pricing-card.featured .card-cta:hover { background: var(--accent-hov); border-color: var(--accent-hov); }
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: rgba(30,58,138,0.55);
}

/* ── CLOSING / LEAD FORM ── */
.closing {
  background: var(--bg-alt-light);
  padding: 96px 0 100px;
  border-top: 1px solid var(--border-light);
}
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.closing-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-tint) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.closing-body {
  font-size: 18px;
  color: rgba(30,58,138,0.70);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
}
.closing-quote {
  background: var(--accent-tint);
  border: 1px solid var(--accent-tint);
  border-radius: 16px;
  padding: 28px 36px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 48px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.closing-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(30,58,138,0.85);
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-attr { font-size: 13px; color: rgba(30,58,138,0.55); }

/* ── LEAD FORM ── */
.lead-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 36px 28px;
}
.lead-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.3px;
}
.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(30,58,138,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lead-field input {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--text-strong);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.lead-field input::placeholder { color: rgba(30,58,138,0.45); }
.lead-field input:focus {
  outline: none;
  border-color: var(--accent);
}
.lead-submit-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lead-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(30,58,138,0.70);
  line-height: 1.5;
}
.lead-consent-row input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.lead-consent-row a { color: var(--accent); text-decoration: underline; }
.consent-error-msg { color: #FF6B6B; font-style: italic; }
.lead-submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 36px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  box-shadow: 0 0 20px var(--accent-glow);
}
.lead-submit-btn:hover:not(:disabled) { background: var(--accent-hov); transform: translateY(-1px); }
.lead-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lead-trust {
  font-size: 12px;
  color: rgba(30,58,138,0.55);
}
.lead-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(30,58,138,0.45); }
.lead-success {
  margin-top: 16px;
  text-align: center;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
.lead-thanks-panel {
  max-width: 480px;
  margin: 24px auto 0;
  padding: 24px 20px;
  text-align: center;
  color: var(--accent);
}
.lead-thanks-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
}
.lead-thanks-panel p {
  margin: 0;
  font-size: 15px;
  color: rgba(30,58,138,0.70);
}
.lead-error {
  margin-top: 12px;
  text-align: center;
  color: #FF6B6B;
  font-size: 14px;
}
@media (max-width: 560px) {
  .lead-form-row { grid-template-columns: 1fr; }
  .lead-form-wrap { padding: 24px 20px 20px; }
}

/* ── MERCHANT LEAD FORM (subordinate capture card below hero) ── */
.merchant-lead {
  background: var(--bg-alt-light);
  border-bottom: 1px solid var(--border-light);
  padding: 56px 0;
}
.merchant-lead-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.merchant-lead-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.merchant-lead-sub {
  text-align: center;
  font-size: 14px;
  color: rgba(30,58,138,0.65);
  margin-bottom: 24px;
}
.merchant-lead .lead-form {
  max-width: none;
  margin: 0;
}
.merchant-lead .lead-field input,
.merchant-lead .lead-field textarea {
  background: var(--bg-light);
  font-size: 14px;
  padding: 10px 12px;
}
.merchant-lead .lead-field textarea {
  resize: vertical;
  min-height: 64px;
  font-family: var(--font-body);
  color: var(--text-strong);
}
.merchant-lead .lead-submit-btn {
  background: rgba(30,58,138,0.08);
  color: var(--text-strong);
  box-shadow: none;
  font-size: 14px;
  padding: 11px 28px;
}
.merchant-lead .lead-submit-btn:hover:not(:disabled) {
  background: rgba(30,58,138,0.14);
  color: var(--text-strong);
  transform: none;
}
.merchant-lead .lead-submit-btn:disabled { opacity: 0.5; }
.merchant-lead .lead-trust { color: rgba(30,58,138,0.55); }
@media (max-width: 560px) {
  .merchant-lead { padding: 40px 0; }
  .merchant-lead-inner { padding: 0 20px; }
}

/* ── DEMO ── */
.demo {
  background: var(--bg-alt-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 96px 0;
}
.demo-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.demo-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
}
.demo-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.demo-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.demo-headline em { font-style: italic; color: var(--accent); }
.demo-desc {
  font-size: 16px;
  color: rgba(30,58,138,0.70);
  line-height: 1.7;
  margin-bottom: 32px;
}
.demo-products { margin-bottom: 32px; }
.demo-product-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(30,58,138,0.55);
  margin-bottom: 10px;
}
.demo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-tag {
  background: var(--bg-alt-light);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(30,58,138,0.65);
}
.demo-instructions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.demo-step { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(30,58,138,0.65); }
.demo-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--accent-tint);
}
.demo-step em { font-style: normal; color: var(--text-strong); font-weight: 600; }
.demo-right { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.demo-phone-wrap { display: flex; justify-content: center; }
.demo-qr-frame {
  background: var(--bg-alt-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.demo-qr { width: 180px; height: 180px; display: block; }
.demo-shop-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -0.5px;
}
.demo-wa-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(30,58,138,0.55);
}
.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #0A1128;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(0,230,118,0.3);
}
.demo-cta-btn:hover { background: #00c96a; transform: translateY(-1px); }
.demo-cta-btn:active { transform: translateY(0); }
.demo-message-preview { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.demo-msg-row { padding: 9px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; max-width: 90%; }
.demo-msg-row.cust {
  background: var(--card-h);
  color: #E2E8F0;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid var(--border);
}
.demo-msg-row.agent {
  background: rgba(0,230,118,0.08);
  color: var(--green);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(0,230,118,0.12);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--accent-soft);
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 15px; color: var(--blue-700); opacity: 0.78; margin-bottom: 8px; }
.footer-legal { font-size: 13px; color: rgba(30,58,138,0.65); }
.footer-legal a { color: var(--accent-hov); text-decoration: none; }
.footer-legal a:hover { color: var(--blue-700); }

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #0A1128;
  border: none;
  border-radius: 999px;
  padding: 13px 22px 13px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,230,118,0.4);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  box-shadow: 0 8px 32px rgba(0,230,118,0.5);
  transform: translateY(-2px);
}
.wa-float svg { flex-shrink: 0; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,230,118,0.4); }
  50% { box-shadow: 0 4px 32px rgba(0,230,118,0.65); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .testimonials,
  .features,
  .playbook,
  .pricing,
  .demo,
  .closing { padding: 64px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step-row { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .closing-card { padding: 40px 24px; }
  .closing-headline { font-size: 30px; }
  .demo-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .demo-right { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 32px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-toggle-wrap {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .pricing-toggle-btn {
    padding: 8px 12px;
  }
  .toggle-label { font-size: 13px; }
  .toggle-sub { font-size: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 40px; }
}
/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { padding: 80px 0; background: var(--bg-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.faq-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.faq-inner .section-eyebrow { color: var(--accent); }
.faq-inner .section-headline { color: var(--text-strong); margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
.faq-item:hover { border-color: var(--accent-soft); }
.faq-item[open] {
  background: var(--card-h-light);
  border-color: var(--accent-soft);
}
.faq-q {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s;
}
.faq-item[open] > .faq-q::before {
  transform: translateY(-35%) rotate(-135deg);
}
.faq-item > p {
  padding: 0 24px 20px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.faq-page { background: var(--bg-light); }

/* ── LANGUAGE SWITCHER (nav) ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(30,58,138,0.45);
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}
.lang-btn:hover {
  color: var(--text-strong);
  background: rgba(30,58,138,0.06);
}
.lang-btn.lang-active {
  color: var(--accent);
  font-weight: 700;
}
.lang-sep {
  color: rgba(30,58,138,0.20);
  font-size: 13px;
  font-weight: 300;
  user-select: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}

/* ── RTL (Arabic) ────────────────────────────────────────────────────────────
   Section is inert on every page; it activates when i18n.js sets dir="rtl".
   Strategy: rely on the browser's native RTL mirroring via `direction: rtl`,
   then patch the few components that use absolute / fixed positioning, the
   WhatsApp floating button, and the `text-align: left` / `right` overrides
   baked into the LTR stylesheet.
*/
:root { --font-display-ar: 'Cairo', 'Fraunces', serif; --font-body-ar: 'Cairo', 'DM Sans', sans-serif; }

html[dir="rtl"] {
  direction: rtl;
}
html[dir="rtl"] body {
  font-family: var(--font-display-ar);
}
html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] .lang-btn,
html[dir="rtl"] .nav-cta,
html[dir="rtl"] .pricing-card,
html[dir="rtl"] .testimonial,
html[dir="rtl"] .form-title,
html[dir="rtl"] .modal-box,
html[dir="rtl"] .wizard-card,
html[dir="rtl"] .onboarding-card,
html[dir="rtl"] .auth-card {
  font-family: var(--font-body-ar);
}
html[dir="rtl"] {
  font-variant-numeric: lining-nums tabular-nums;
}
html[dir="rtl"] .hero-headline,
html[dir="rtl"] .section-headline,
html[dir="rtl"] .closing-headline,
html[dir="rtl"] .form-title,
html[dir="rtl"] .dash-header h1,
html[dir="rtl"] .wizard-header h1,
html[dir="rtl"] .onboarding-header {
  font-family: var(--font-display-ar);
}

/* Floating WhatsApp CTA moves to the bottom-left in RTL */
html[dir="rtl"] .wa-float {
  right: auto;
  left: 28px;
}

/* FAQ chevron — flip to the other side so it mirrors under RTL */
html[dir="rtl"] .faq-q::before { left: auto; right: 24px; }

/* Tables — RTL mirrors column text alignment & wood-grain alternatives.
   Keep numeric columns visually stable. */
html[dir="rtl"] .table-wrap th,
html[dir="rtl"] .table-wrap td {
  text-align: right;
}
html[dir="rtl"] .modal-line-items th,
html[dir="rtl"] .modal-line-items td {
  text-align: right;
}

/* LTR-only positional helpers become RTL-aware */
html[dir="rtl"] .footer-legal { text-align: center; }
html[dir="rtl"] .footer-tagline { text-align: center; }
html[dir="rtl"] .footer-logo { text-align: center; }
html[dir="rtl"] .lang-switcher { flex-direction: row-reverse; }

/* Centered pricing-toggle wrap stays centered (direction handles inner alignment). */
html[dir="rtl"] .pricing-toggle-wrap,
html[dir="rtl"] .pricing-toggle-btn,
html[dir="rtl"] .pricing-grid {
  direction: rtl;
}

/* Re-open text-align for centered badge/promo content */
html[dir="rtl"] .card-badge,
html[dir="rtl"] .pricing-note,
html[dir="rtl"] .trust-note,
html[dir="rtl"] .ml-trust-note,
html[dir="rtl"] .modal-close {
  text-align: center;
}

/* Arabic needs slightly more vertical breathing room in nav/footer */
@media (max-width: 768px) {
  html[dir="rtl"] .nav-cta { padding: 8px 14px; }
}

/* Onboarding / dashboard — flip explicitly positioned UI bits */
html[dir="rtl"] .onboarding-dismiss {
  right: auto;
  left: 16px;
}
html[dir="rtl"] .modal-close {
  right: auto;
  left: 16px;
}
html[dir="rtl"] .support-btn {
  right: auto;
  left: 28px;
}
