/* ═══════════════════════════════════════════════════════════════════════════
   Zeono Landing Page — landing.css
   Stack: plain CSS (no framework), mobile-first responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom properties ───────────────────────────────────────────────────── */
:root {
  --navy:        #1B2D5B;
  --navy-light:  #233874;
  --blue:        #3B82C4;
  --blue-dark:   #2d6aa8;
  --sky:         #7AB8F5;
  --bg:          #F0F6FF;
  --dark:        #0D1626;
  --muted:       #6B7A99;
  --white:       #FFFFFF;
  --border:      rgba(255,255,255,0.10);

  --r:           14px;
  --r-sm:        8px;
  --r-lg:        20px;

  --shadow-card: 0 4px 24px rgba(27,45,91,0.10);
  --shadow-lift: 0 12px 40px rgba(59,130,196,0.20);
  --glow-blue:   0 0 0 3px rgba(59,130,196,0.25);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --dur:         0.35s;

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility helpers ──────────────────────────────────────────────────────── */
.lp-mono    { font-family: var(--font-mono); }
.lp-green   { color: #22c55e; }
.lp-sky     { color: var(--sky); }

.lp-container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.lp-container--narrow {
  max-width: 760px;
}

/* ── Section titles ───────────────────────────────────────────────────────── */
.lp-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin-bottom: 3rem;
}

.lp-section-title--light {
  color: var(--white);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 22px;
  transition: var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.lp-btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.lp-btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.lp-btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.lp-btn--outline:hover {
  background: rgba(59,130,196,0.08);
  transform: translateY(-1px);
}

.lp-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid transparent;
}
.lp-btn--ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.lp-btn--lg  { padding: 13px 30px; font-size: 1rem; border-radius: 10px; }
.lp-btn--xl  { padding: 16px 40px; font-size: 1.0625rem; border-radius: 12px; }
.lp-btn--full { width: 100%; }

/* ── Logo ─────────────────────────────────────────────────────────────────── */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */
.lp-grid { display: grid; gap: 24px; }
.lp-grid--3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .lp-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .lp-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-nav.lp-nav--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
  gap: 32px;
}

.lp-nav__links {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  list-style: none;
}

.lp-nav__links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--dur), background var(--dur);
}
.lp-nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.lp-nav__cta {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Hamburger */
.lp-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

.lp-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lp-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.lp-nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--navy);
  padding: 12px 24px 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.lp-nav__mobile.is-open {
  max-height: 360px;
  padding-bottom: 20px;
}

.lp-nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}
.lp-nav__mobile a:hover { color: var(--white); }

.lp-nav__mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.lp-nav__mobile-cta .lp-btn { flex: 1; }

@media (min-width: 780px) {
  .lp-nav__links { display: flex; }
  .lp-nav__cta   { display: flex; }
  .lp-hamburger  { display: none; }
  .lp-nav__mobile { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Faint grid */
.lp-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gradient mesh glow */
.lp-hero__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(59,130,196,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(27,45,91,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px 100px;
}

@media (min-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-block: 100px 120px;
  }
}

/* Badge */
.lp-badge {
  display: inline-block;
  background: rgba(59,130,196,0.18);
  border: 1px solid rgba(59,130,196,0.35);
  color: var(--sky);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lp-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.lp-text-gradient {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.70);
  max-width: 480px;
  margin-bottom: 36px;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-hero__actions .lp-btn--outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.30);
}
.lp-hero__actions .lp-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.50);
  color: var(--white);
}

/* ── Dashboard mockup ─────────────────────────────────────────────────────── */
.lp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.lp-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

/* Window bar */
.lp-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.20);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-dot--red    { background: #FF5F57; }
.lp-dot--yellow { background: #FEBC2E; }
.lp-dot--green  { background: #28C840; }

.lp-mockup__title-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-left: 8px;
  font-family: var(--font-mono);
}

/* Stats row */
.lp-mockup__stats {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-mockup__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-mockup__stat:last-child { border-right: none; }

.lp-mockup__label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.lp-mockup__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Chart */
.lp-mockup__chart-wrap {
  padding: 16px 16px 8px;
  height: 90px;
}

.lp-mockup__chart {
  width: 100%;
  height: 100%;
}

/* AI chat bubble */
.lp-mockup__chat {
  padding: 12px 16px 16px;
}

.lp-bubble {
  display: flex;
  gap: 10px;
  background: rgba(59,130,196,0.14);
  border: 1px solid rgba(59,130,196,0.25);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}

.lp-bubble__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-bubble__body {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Floating insight card */
.lp-float-card {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  white-space: nowrap;
}

.lp-float-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-float-card__label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-float-card__val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════════════════════════
   PROBLEM SECTION  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-problem {
  background: var(--dark);
  padding: 100px 0;
}

.lp-glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,196,0.15);
}

.lp-glass-card__icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.lp-glass-card__icon svg {
  width: 36px;
  height: 36px;
}

.lp-glass-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-features {
  background: var(--bg);
  padding: 100px 0;
}

.lp-feature-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid rgba(27,45,91,0.07);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(59,130,196,0.15);
}

.lp-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,196,0.10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.lp-feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.lp-feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.lp-feature-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   BROKERS / INTEGRATIONS  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-brokers {
  background: var(--bg);
  padding: 100px 0;
}

.lp-brokers__sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.0rem;
  max-width: 560px;
  margin: -8px auto 56px;
  line-height: 1.6;
}

.lp-brokers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.lp-broker-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 20px 24px;
  border: 1px solid rgba(27,45,91,0.07);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-broker-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(59,130,196,0.15);
}

.lp-broker-card__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--broker-color, var(--blue));
  flex-shrink: 0;
}

.lp-broker-card h3 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.lp-broker-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.lp-broker-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  background: rgba(59,130,196,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 4px;
}

.lp-broker-card__tag svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.lp-brokers__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .lp-brokers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-brokers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-hiw {
  background: var(--navy);
  padding: 100px 0;
}

.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .lp-steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
  }
}

.lp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.lp-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* Connector line between steps */
.lp-step__connector {
  display: none;
  position: absolute;
  top: 80px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, rgba(122,184,245,0.5), rgba(122,184,245,0.1));
}

.lp-step__connector--last {
  display: none !important;
}

@media (min-width: 900px) {
  .lp-step__connector {
    display: block;
  }
}

.lp-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(59,130,196,0.15);
  border: 2px solid rgba(59,130,196,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sky);
  transition: background var(--dur), transform var(--dur) var(--ease);
}

.lp-step:hover .lp-step__icon {
  background: rgba(59,130,196,0.25);
  transform: scale(1.06);
}

.lp-step__icon svg {
  width: 28px;
  height: 28px;
}

.lp-step h3 {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.lp-step p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  max-width: 220px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   STATS  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-stats {
  background: var(--dark);
  padding: 100px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

@media (min-width: 640px) {
  .lp-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .lp-stats-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.lp-stat__num {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 12px;
}

.lp-stat__num--sm {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.lp-stat__desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 220px;
  margin-inline: auto;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-testimonials {
  background: var(--bg);
  padding: 100px 0;
}

.lp-tcard {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid rgba(27,45,91,0.07);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(59,130,196,0.20);
}

.lp-tcard__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.lp-tcard__quote {
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.65;
  flex: 1;
}

.lp-tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.lp-tcard__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.lp-tcard__author span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.lp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-pricing {
  background: var(--white);
  padding: 100px 0;
}

.lp-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 640px) {
  .lp-plans { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .lp-plans {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }
}

.lp-plan {
  border-radius: var(--r);
  padding: 36px 28px;
  border: 2px solid rgba(27,45,91,0.10);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.lp-plan--pop {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(59,130,196,0.15);
}

.lp-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.lp-plan__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.lp-plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.lp-plan__amount {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.lp-plan__period {
  font-size: 0.9rem;
  color: var(--muted);
}

.lp-plan__annual {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.lp-plan__annual em {
  color: #22c55e;
  font-style: normal;
  font-weight: 600;
}

.lp-plan__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(27,45,91,0.08);
  list-style: none;
}

.lp-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.4;
}

.lp-plan__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-plan__list li.yes::before {
  background-color: rgba(34,197,94,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lp-plan__list li.ltd::before {
  background-color: rgba(245,158,11,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cline x1='2' y1='6' x2='10' y2='6' fill='none' stroke='%23F59E0B' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-plan__list li.ltd { color: var(--muted); }

.lp-plan__list li.no::before {
  background-color: rgba(107,122,153,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cline x1='3' y1='3' x2='9' y2='9' fill='none' stroke='%236B7A99' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='9' y1='3' x2='3' y2='9' fill='none' stroke='%236B7A99' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-plan__list li.no { color: var(--muted); opacity: 0.6; }

.lp-plan__list li em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.8125rem;
}

/* Override button color inside highlighted plan */
.lp-plan--pop .lp-btn--outline {
  color: var(--blue);
  border-color: var(--blue);
}

/* ══════════════════════════════════════════════════════════════════════════
   FAQ  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-faq {
  background: var(--bg);
  padding: 100px 0;
}

.lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid rgba(27,45,91,0.08);
  overflow: hidden;
  transition: box-shadow var(--dur);
}

.lp-faq-item.is-open {
  box-shadow: 0 4px 20px rgba(59,130,196,0.10);
  border-color: rgba(59,130,196,0.20);
}

.lp-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: transparent;
  transition: background var(--dur);
}

.lp-faq-item__q:hover {
  background: rgba(59,130,196,0.04);
}

.lp-faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.lp-faq-item.is-open .lp-faq-item__chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.lp-faq-item__a {
  border-top: 1px solid rgba(27,45,91,0.06);
}

.lp-faq-item__a p {
  padding: 18px 24px 22px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* hidden/show via JS — we animate via max-height in JS approach */
.lp-faq-item__a[hidden] {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   FINAL CTA  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-cta {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(59,130,196,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta__inner {
  position: relative;
  z-index: 1;
}

.lp-cta__h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.lp-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.lp-footer {
  background: var(--dark);
  padding: 48px 0 32px;
}

.lp-footer__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

@media (min-width: 780px) {
  .lp-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lp-footer__brand {
  color: var(--white);
}

.lp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.lp-footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur);
}
.lp-footer__nav a:hover { color: var(--white); }

.lp-footer__social {
  display: flex;
  gap: 14px;
}

.lp-footer__social a {
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  transition: color var(--dur);
}
.lp-footer__social a:hover { color: var(--white); }

.lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════ */

/* Initial state: hidden, shifted down */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.reveal-d1 { transition-delay: 0.12s; }
.reveal.reveal-d2 { transition-delay: 0.24s; }

/* Visible state */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fade-up (CSS only, runs on load) */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.fade-d1 { animation-delay: 0.15s; }
.fade-d2 { animation-delay: 0.30s; }
.fade-d3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Floating card animation */
.lp-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════════════════════════════
   MISC  — scrollbar, selection
══════════════════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(59,130,196,0.25);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(59,130,196,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Responsive tweaks ────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  .lp-hero__actions { flex-direction: column; }
  .lp-btn--lg { width: 100%; }
  .lp-float-card { display: none; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .lp-plans > .lp-plan:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-inline: auto;
  }
}
