/* ============================================================
   ARONION ACADEMY — LANDING PAGE v5.0
   Enterprise Gateway Redesign
   Font: Plus Jakarta Sans
   Brand Palette: Forest Green · Lime CTA · Mint Accent
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Brand dark spectrum */
  --lp-dark:         #0a1410;
  --lp-dark-mid:     #0f1f1a;
  --lp-dark-card:    #152a23;
  --lp-dark-surface: #1a3328;
  --lp-dark-border:  rgba(255,255,255,.06);

  /* CTA — Lime */
  --lp-green:        #7ebc4e;
  --lp-green-hover:  #6eab3e;
  --lp-green-dark:   #5a8f33;
  --lp-green-muted:  rgba(126,188,78,.08);

  /* Accent — Mint */
  --lp-mint:         #5dd9a0;
  --lp-mint-muted:   rgba(93,217,160,.08);
  --lp-mint-border:  rgba(93,217,160,.18);

  /* Neutral surfaces */
  --lp-bg:           #F7F9FB;
  --lp-white:        #FFFFFF;
  --lp-text:         #0f1f1a;
  --lp-text-2:       #2d3e38;
  --lp-text-3:       #5a6e66;
  --lp-text-4:       #8a9e96;
  --lp-border:       #e0e7e4;
  --lp-border-md:    #c8d4cf;

  /* Type */
  --lp-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --lp-section-y: 140px;

  /* Container */
  --lp-container:    1160px;
  --lp-container-sm: 720px;

  /* Radius */
  --lp-r-sm: 6px;
  --lp-r-md: 10px;
  --lp-r-lg: 14px;
  --lp-r-xl: 20px;

  /* Shadows */
  --lp-shadow-xs: 0 1px 2px rgba(10,20,16,.04);
  --lp-shadow-sm: 0 1px 3px rgba(10,20,16,.05), 0 1px 2px rgba(10,20,16,.03);
  --lp-shadow-md: 0 4px 16px rgba(10,20,16,.07), 0 1px 4px rgba(10,20,16,.03);
  --lp-shadow-lg: 0 12px 40px rgba(10,20,16,.10), 0 4px 12px rgba(10,20,16,.04);
  --lp-shadow-green: 0 4px 20px rgba(126,188,78,.22);

  --lp-ease: 200ms ease;
  --lp-ease-slow: 350ms cubic-bezier(.25,.46,.45,.94);
}


/* ── Reset / Base ── */
.lp-page {
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
}
.lp-page *, .lp-page *::before, .lp-page *::after { box-sizing: border-box; }
.lp-page a { text-decoration: none; color: inherit; }
.lp-page .lp-nav a { color: #fff; }
.lp-page ul { list-style: none; margin: 0; padding: 0; }
.lp-page img { display: block; max-width: 100%; }
.lp-page .lp-hero__bg-girl { display: initial; max-width: none; }
.lp-page button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ── Containers ── */
.lp-container {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 28px;
}
.lp-container--sm {
  max-width: var(--lp-container-sm);
  margin: 0 auto;
  padding: 0 28px;
}


/* ── Section Base ── */
.lp-section { padding: var(--lp-section-y) 0; }
.lp-section--dark  { background: var(--lp-dark-mid); }
.lp-section--gray  { background: var(--lp-bg); }
.lp-section--white { background: var(--lp-white); }

.lp-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-green);
  margin-bottom: 16px;
}
.lp-section-label--light {
  color: var(--lp-mint);
}

.lp-section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--lp-text);
  margin: 0 0 20px;
}
.lp-section-title--light { color: #fff; }

.lp-section-sub {
  font-size: 16px;
  line-height: 1.72;
  color: var(--lp-text-3);
  max-width: 560px;
}
.lp-section-sub--light { color: rgba(255,255,255,.45); }

.lp-section-header { margin-bottom: 64px; }
.lp-section-header--center { text-align: center; }
.lp-section-header--center .lp-section-sub { margin: 0 auto; }


/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,20,16,.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background 300ms ease, box-shadow 300ms ease;
}
.lp-nav.is-scrolled {
  background: rgba(10,20,16,.97);
  box-shadow: 0 1px 24px rgba(0,0,0,.3);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.lp-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-nav__logo img { height: 30px; width: auto; }
.lp-nav__logo-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
}

/* Nav links — center */
.lp-nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
@media (max-width: 1023px) { .lp-nav__links { display: none; } }

.lp-nav .lp-nav__link {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--lp-r-sm);
  transition: color var(--lp-ease), background var(--lp-ease);
  white-space: nowrap;
}
.lp-nav .lp-nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* Separator dot between nav groups */
.lp-nav__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  margin: 0 6px;
  flex-shrink: 0;
}

/* Actions — right */
.lp-nav__actions { display: flex; align-items: center; gap: 6px; }
.lp-nav .lp-nav__login {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--lp-r-sm);
  transition: color var(--lp-ease), background var(--lp-ease);
}
.lp-nav .lp-nav__login:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.lp-btn--nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-green);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--lp-r-sm);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  transition: background var(--lp-ease), box-shadow var(--lp-ease);
  box-shadow: 0 1px 3px rgba(126,188,78,.2);
}
.lp-btn--nav-cta:hover {
  background: var(--lp-green-hover);
  box-shadow: var(--lp-shadow-green);
}

/* Hamburger */
.lp-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 1024px) { .lp-nav__hamburger { display: none; } }
.lp-nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  transition: transform var(--lp-ease), opacity var(--lp-ease);
}
.lp-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.lp-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.lp-nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,20,16,.98);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 16px 28px 28px;
  gap: 2px;
}
.lp-nav__mobile.open { display: flex; }
.lp-nav__mobile .lp-nav__link {
  font-size: 15px;
  padding: 12px 16px;
  color: #fff !important;
  border-radius: var(--lp-r-sm);
}
.lp-nav__mobile .lp-nav__link:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.lp-nav__mobile-cta { margin-top: 16px; }


/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lp-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background var(--lp-ease), color var(--lp-ease),
              box-shadow var(--lp-ease), transform 80ms ease,
              border-color var(--lp-ease);
  white-space: nowrap;
  text-decoration: none;
  border-radius: var(--lp-r-sm);
}
.lp-btn:active { transform: translateY(1px); }

/* Primary — Lime */
.lp-btn--primary {
  background: var(--lp-green);
  color: #fff;
  padding: 13px 26px;
  box-shadow: 0 1px 2px rgba(126,188,78,.25),
              inset 0 1px 0 rgba(255,255,255,.12);
}
.lp-btn--primary:hover {
  background: var(--lp-green-hover);
  box-shadow: var(--lp-shadow-green),
              inset 0 1px 0 rgba(255,255,255,.12);
}

.lp-btn--lg {
  font-size: 15px;
  padding: 15px 32px;
  gap: 10px;
  border-radius: var(--lp-r-md);
}
.lp-btn--lg svg { width: 16px; height: 16px; transition: transform var(--lp-ease); }
.lp-btn--lg:hover svg { transform: translateX(3px); }

.lp-btn--sm {
  font-size: 13px;
  padding: 9px 16px;
}

/* Ghost on dark */
.lp-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.7);
  padding: 13px 26px;
  border: 1px solid rgba(255,255,255,.15);
}
.lp-btn--ghost:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

/* Outline on light */
.lp-btn--outline {
  background: transparent;
  color: var(--lp-text-2);
  padding: 13px 26px;
  border: 1px solid var(--lp-border-md);
}
.lp-btn--outline:hover {
  border-color: var(--lp-green);
  color: var(--lp-green-hover);
  background: var(--lp-green-muted);
}


/* ════════════════════════════════════════
   HERO — Two-layer background composition
   ════════════════════════════════════════ */
.lp-hero {
  position: relative;
  background: var(--lp-dark);
  padding: 160px 0 120px;
  overflow: hidden;
  text-align: center;
}

/* Layer 1: HeroBG.png — full-cover background */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: url('/assets/img/HeroBG.png') center center / cover no-repeat;
}

/* Layer 2: Herogirl.png — positioned right, composited on top */
.lp-hero__bg-girl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  max-width: 540px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(-20px 10px 40px rgba(0,0,0,.35));
}

/* Subtle overlay for depth */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,20,16,.25) 0%, transparent 50%),
    linear-gradient(to top, rgba(10,20,16,.3) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}

/* Bottom fade to next section */
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--lp-dark-mid) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.lp-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 48px 48px;
  background: rgba(15,31,26,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--lp-r-xl);
  border: 1px solid rgba(255,255,255,.06);
}

/* Eyebrow */
.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-mint);
  background: rgba(93,217,160,.06);
  border: 1px solid rgba(93,217,160,.14);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.lp-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-mint);
  display: inline-block;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__eyebrow-dot { animation: none; }
}

/* H1 */
.lp-hero__h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0 0 28px;
}
.lp-hero__h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lp-mint) 0%, var(--lp-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub */
.lp-hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.42);
  max-width: 540px;
  margin: 0 auto 40px;
}

/* CTAs */
.lp-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Trust strip */
.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.lp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.lp-hero__trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--lp-mint);
  flex-shrink: 0;
  opacity: .5;
}


/* ════════════════════════════════════════
   SOCIAL PROOF STRIP
   ════════════════════════════════════════ */
.lp-proof {
  background: var(--lp-dark-mid);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 28px 0;
}
.lp-proof__inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-proof__text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.26);
  letter-spacing: .02em;
  text-align: center;
}
.lp-proof__text strong {
  color: rgba(255,255,255,.5);
  font-weight: 700;
}


/* ════════════════════════════════════════
   PRODUCTS — THREE PREMIUM CARDS
   ════════════════════════════════════════ */
.lp-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .lp-products__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-product-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-xl);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--lp-ease-slow), box-shadow var(--lp-ease-slow), transform 300ms ease;
}
.lp-product-card:hover {
  border-color: var(--lp-border-md);
  box-shadow: var(--lp-shadow-lg);
  transform: translateY(-3px);
}

.lp-product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--lp-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background var(--lp-ease), border-color var(--lp-ease);
}
.lp-product-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}
/* Phishing — blue-mint tones */
.lp-product-card--phishing .lp-product-card__icon {
  background: rgba(93,217,160,.08);
  border: 1px solid rgba(93,217,160,.16);
}
.lp-product-card--phishing .lp-product-card__icon svg { stroke: var(--lp-mint); }
.lp-product-card--phishing:hover .lp-product-card__icon {
  background: rgba(93,217,160,.14);
  border-color: rgba(93,217,160,.3);
}

/* E-Learning — lime tones */
.lp-product-card--elearning .lp-product-card__icon {
  background: rgba(126,188,78,.08);
  border: 1px solid rgba(126,188,78,.16);
}
.lp-product-card--elearning .lp-product-card__icon svg { stroke: var(--lp-green); }
.lp-product-card--elearning:hover .lp-product-card__icon {
  background: rgba(126,188,78,.14);
  border-color: rgba(126,188,78,.3);
}

/* Reporting — warm gold tones */
.lp-product-card--reporting .lp-product-card__icon {
  background: rgba(224,188,104,.08);
  border: 1px solid rgba(224,188,104,.16);
}
.lp-product-card--reporting .lp-product-card__icon svg { stroke: #d4a84a; }
.lp-product-card--reporting:hover .lp-product-card__icon {
  background: rgba(224,188,104,.14);
  border-color: rgba(224,188,104,.3);
}

.lp-product-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--lp-text);
  margin: 0 0 10px;
}
.lp-product-card__desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--lp-text-3);
  margin: 0 0 24px;
  flex: 1;
}
.lp-product-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--lp-border);
}
.lp-product-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-2);
}
.lp-product-card__feature svg {
  width: 14px;
  height: 14px;
  stroke: var(--lp-green);
  flex-shrink: 0;
}
.lp-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-text-2);
  margin-top: auto;
  transition: color var(--lp-ease), gap var(--lp-ease);
}
.lp-product-card__link:hover {
  color: var(--lp-green);
  gap: 10px;
}
.lp-product-card__link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--lp-ease);
}


/* ════════════════════════════════════════
   PROBLEM — EDITORIAL STATS
   ════════════════════════════════════════ */
.lp-problem {
  padding: var(--lp-section-y) 0;
  background: var(--lp-dark);
  position: relative;
  overflow: hidden;
}
.lp-problem::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 40%, rgba(93,217,160,.04) 0%, transparent 50%);
  pointer-events: none;
}
.lp-problem__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.lp-problem__statement {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 24px;
}
.lp-problem__body {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255,255,255,.42);
  margin: 0 0 48px;
  max-width: 640px;
}
.lp-problem__body strong {
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

/* Stat callouts */
.lp-problem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .lp-problem__stats { grid-template-columns: 1fr; }
}
.lp-problem__stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--lp-r-lg);
  padding: 28px 24px;
  text-align: center;
}
.lp-problem__stat-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--lp-mint);
  line-height: 1;
  margin: 0 0 10px;
}
.lp-problem__stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.lp-problem__source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.16);
  text-transform: uppercase;
  margin: 20px 0 0;
  text-align: center;
}


/* ════════════════════════════════════════
   HOW IT WORKS — TIMELINE
   ════════════════════════════════════════ */
.lp-timeline {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.lp-timeline-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 48px;
}
.lp-timeline-step:last-child { padding-bottom: 0; }
.lp-timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 46px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--lp-border-md), transparent);
}

.lp-timeline-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-dark);
  border: 2px solid var(--lp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--lp-green);
  z-index: 1;
  transition: background var(--lp-ease), color var(--lp-ease);
}
.lp-timeline-step.lp-revealed .lp-timeline-step__num {
  background: var(--lp-green);
  color: #fff;
}

.lp-timeline-step__content { padding-top: 7px; }
.lp-timeline-step__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--lp-text);
  margin: 0 0 8px;
}
.lp-timeline-step__desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--lp-text-3);
  margin: 0;
}


/* ════════════════════════════════════════
   COMPLIANCE — TWO COLUMN
   ════════════════════════════════════════ */
.lp-compliance__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 768px) {
  .lp-compliance__grid { grid-template-columns: 1fr 1fr; }
}
.lp-compliance__body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--lp-text-3);
  margin: 0 0 20px;
}
.lp-compliance__detail {
  font-size: 14px;
  line-height: 1.65;
  color: var(--lp-text-4);
  margin: 0;
}
.lp-compliance__list {
  border-top: 1px solid var(--lp-border);
}
.lp-compliance__item {
  padding: 22px 0 22px 20px;
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}
.lp-compliance__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lp-green);
}
.lp-compliance__item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 6px;
}
.lp-compliance__item-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--lp-text-3);
  margin: 0;
}


/* ════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════ */
.lp-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-shadow-sm);
}
.lp-compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  background: var(--lp-white);
}
.lp-compare thead th {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-text-4);
  text-align: left;
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lp-compare thead th.lp-compare__featured {
  background: rgba(93,217,160,.05);
  color: var(--lp-text);
  border-bottom-color: var(--lp-mint-border);
}
.lp-compare tbody tr {
  border-bottom: 1px solid var(--lp-border);
  transition: background var(--lp-ease);
}
.lp-compare tbody tr:last-child { border-bottom: none; }
.lp-compare tbody tr:hover { background: rgba(247,249,251,.6); }
.lp-compare td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--lp-text-2);
  vertical-align: middle;
}
.lp-compare td:first-child { font-weight: 600; color: var(--lp-text); }
.lp-compare td.lp-compare__featured {
  background: rgba(93,217,160,.04);
  font-weight: 600;
  color: var(--lp-text);
  border-left: 2px solid var(--lp-mint-border);
  border-right: 2px solid var(--lp-mint-border);
}
.lp-compare thead th.lp-compare__featured {
  border-left: 2px solid var(--lp-mint-border);
  border-right: 2px solid var(--lp-mint-border);
}
.lp-compare td.lp-compare__dim { color: var(--lp-text-4); }


/* ════════════════════════════════════════
   PRICING — PRESERVED FROM v4
   ════════════════════════════════════════ */
.lp-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .lp-pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .lp-pricing__grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-price-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--lp-ease), border-color var(--lp-ease);
}
.lp-price-card:hover { box-shadow: var(--lp-shadow-md); }
.lp-price-card--featured {
  border-color: var(--lp-mint-border);
  box-shadow: 0 0 0 2px var(--lp-mint), var(--lp-shadow-sm);
}
.lp-price-card--featured:hover {
  box-shadow: 0 0 0 2px var(--lp-mint), var(--lp-shadow-md);
}
.lp-price-badge {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--lp-green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: var(--lp-shadow-green);
}
.lp-price-name { font-size: 15px; font-weight: 700; color: var(--lp-text); margin: 0 0 5px; }
.lp-price-desc { font-size: 13px; color: var(--lp-text-3); margin: 0 0 20px; line-height: 1.5; }
.lp-price-amount {
  font-size: 38px; font-weight: 800; letter-spacing: -.04em;
  color: var(--lp-text); margin: 0; line-height: 1;
}
.lp-price-amount sup { font-size: 15px; font-weight: 700; letter-spacing: 0; vertical-align: super; margin-right: 1px; }
.lp-price-amount--custom { font-size: 22px; }
.lp-price-interval { font-size: 12px; color: var(--lp-text-4); margin: 5px 0 22px; }
.lp-price-divider { height: 1px; background: var(--lp-border); margin: 0 0 20px; }
.lp-price-features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin: 0 0 32px; }
.lp-price-feature {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; line-height: 1.45; color: var(--lp-text-2);
}
.lp-price-feature svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: 1px; }
.lp-price-feature--on svg { stroke: var(--lp-green); }
.lp-price-feature--off { color: var(--lp-text-4); }
.lp-price-feature--off svg { stroke: var(--lp-border-md); }

.lp-price-cta {
  display: flex; justify-content: center;
  padding: 11px 16px; border-radius: var(--lp-r-sm);
  font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; margin-top: auto;
  transition: background var(--lp-ease), color var(--lp-ease), border-color var(--lp-ease), box-shadow var(--lp-ease);
}
.lp-price-cta--primary {
  background: var(--lp-green); color: #fff;
  border: 1px solid var(--lp-green);
  box-shadow: 0 1px 2px rgba(126,188,78,.25);
}
.lp-price-cta--primary:hover {
  background: var(--lp-green-hover); border-color: var(--lp-green-hover);
  box-shadow: var(--lp-shadow-green);
}
.lp-price-cta--outline {
  background: transparent; color: var(--lp-text-2);
  border: 1px solid var(--lp-border-md);
}
.lp-price-cta--outline:hover {
  border-color: var(--lp-green); color: var(--lp-green-hover); background: var(--lp-green-muted);
}

/* Platform-only card variant */
.lp-price-card--platform {
  border-style: dashed;
  border-color: var(--lp-border-md);
}


/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.lp-faq {
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--lp-border);
}
.lp-faq-item { border-bottom: 1px solid var(--lp-border); }
.lp-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--lp-ease);
}
.lp-faq-q:hover { color: var(--lp-green); }
.lp-faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--lp-text-4);
  transition: transform 250ms ease, stroke var(--lp-ease);
}
.lp-faq-item.open .lp-faq-q svg {
  transform: rotate(180deg);
  stroke: var(--lp-green);
}
.lp-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--lp-text-3);
}
.lp-faq-item.open .lp-faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}


/* ════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════ */
.lp-cta {
  background: var(--lp-dark);
  padding: var(--lp-section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(93,217,160,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(126,188,78,.03) 0%, transparent 50%);
  pointer-events: none;
}
.lp-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.lp-cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
}
.lp-cta__sub {
  font-size: 16px;
  line-height: 1.68;
  color: rgba(255,255,255,.38);
  margin: 0 0 40px;
}
.lp-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.lp-footer {
  background: var(--lp-dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 72px;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
@media (max-width: 1023px) {
  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .lp-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

.lp-footer__brand {
  display: flex;
  flex-direction: column;
}
.lp-footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.lp-footer__brand-logo img { height: 26px; width: auto; }
.lp-footer__brand-logo-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
}
.lp-footer__tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.3);
  margin: 0 0 24px;
  max-width: 280px;
}
.lp-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer__contact-item {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-footer__contact-item svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.lp-footer__contact-item a {
  color: rgba(255,255,255,.4);
  transition: color var(--lp-ease);
}
.lp-footer__contact-item a:hover { color: var(--lp-mint); }

.lp-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 20px;
}
.lp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-footer__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: color var(--lp-ease);
  text-decoration: none;
}
.lp-footer__links a:hover { color: #fff; }

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,.18);
  margin: 0;
}
.lp-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.22);
  transition: color var(--lp-ease);
}
.lp-footer__legal-links a:hover { color: rgba(255,255,255,.5); }


/* ════════════════════════════════════════
   PLATFORM-ONLY OFFERING
   ════════════════════════════════════════ */
.lp-platform {
  padding: var(--lp-section-y) 0;
  background: var(--lp-dark);
  position: relative;
  overflow: hidden;
}
.lp-platform::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(93,217,160,.04) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(126,188,78,.03) 0%, transparent 50%);
  pointer-events: none;
}
.lp-platform__inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.lp-platform__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .lp-platform__grid { grid-template-columns: 1fr 1fr; }
}
.lp-platform__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--lp-r-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--lp-ease-slow), background var(--lp-ease-slow);
}
.lp-platform__card:hover {
  border-color: rgba(93,217,160,.2);
  background: rgba(255,255,255,.045);
}
.lp-platform__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lp-r-md);
  background: rgba(93,217,160,.08);
  border: 1px solid rgba(93,217,160,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-platform__card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lp-mint);
  stroke-width: 1.75;
}
.lp-platform__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.lp-platform__card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  margin: 0;
}

/* Platform CTA row */
.lp-platform__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 48px;
}


/* ════════════════════════════════════════
   MOBILE STICKY CTA
   ════════════════════════════════════════ */
.lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(10,20,16,.97);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 20px;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(.22,.61,.36,1);
}
.lp-sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 767px) { .lp-sticky-cta { display: flex; } }
.lp-sticky-cta__text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.4;
}
.lp-sticky-cta__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.lp-sticky-cta .lp-btn--primary {
  flex-shrink: 0;
  white-space: nowrap;
}


/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.lp-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.lp-reveal.lp-revealed {
  opacity: 1;
  transform: translateY(0);
}
.lp-reveal:nth-child(2) { transition-delay: 70ms; }
.lp-reveal:nth-child(3) { transition-delay: 140ms; }
.lp-reveal:nth-child(4) { transition-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --lp-section-y: 80px; }

  .lp-hero { padding: 120px 0 80px; }
  .lp-hero__inner { padding: 36px 24px 32px; max-width: 100%; margin: 0 20px; }
  .lp-hero__h1 { font-size: 32px; }
  .lp-hero__sub { font-size: 15px; }
  .lp-hero__bg-girl { display: none !important; }

  .lp-hero__trust { gap: 8px 20px; }
  .lp-hero__trust-item { font-size: 10px; }

  .lp-problem__stats { grid-template-columns: 1fr; gap: 12px; }

  .lp-compare thead th:nth-child(4),
  .lp-compare td:nth-child(4) { display: none; }

  .lp-compliance__grid { gap: 40px; }

  .lp-platform__grid { grid-template-columns: 1fr; }

  .lp-container { padding: 0 20px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root { --lp-section-y: 100px; }
  .lp-hero { padding: 140px 0 100px; }
  .lp-hero__bg-girl { width: 35%; max-width: 380px; }
}

@media (min-width: 1440px) {
  .lp-hero { padding: 180px 0 140px; }
  .lp-hero__bg-girl { width: 45%; max-width: 600px; }
}


/* ════════════════════════════════════════
   FOCUS — WCAG 2.1 AA
   ════════════════════════════════════════ */
.lp-page *:focus-visible {
  outline: 2px solid var(--lp-green);
  outline-offset: 3px;
}
