/* ============================================================
   DrivePlanner — Landing Page Styles  (UI/UX Pro Max revision)
   WCAG AA contrast verified throughout.
   ============================================================ */

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

body.lp-body {
  font-family: var(--font);
  color: #1E293B;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Contrast-safe colour tokens (landing only) ───────────── */
/* Dark bg (#0F172A):  use #FFFFFF, #E2E8F0, #CBD5E1, #94A3B8  */
/* Light bg (#fff):    use #0F172A, #1E293B, #334155, #475569   */
/* #94A3B8 on #0F172A = 6.5 : 1  ✓ AA                          */
/* #475569 on #fff    = 7.4 : 1  ✓ AA                           */

/* ── Navbar ───────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 28px;
  background: rgba(10, 17, 34, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-nav-logo-icon {
  width: 34px;
  height: 34px;
  background: #2563EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.lp-logo-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

/* Nav links: #CBD5E1 on #0A1122 ≈ 10 : 1  ✓ */
.lp-nav-link {
  padding: 7px 14px;
  color: #CBD5E1;
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 500;
  border-radius: 7px;
  transition: color 180ms ease, background 180ms ease;
}

.lp-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Sign-in link: #CBD5E1 ≈ 10 : 1  ✓ */
.lp-nav-signin {
  padding: 8px 16px;
  color: #CBD5E1;
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 500;
  border-radius: 7px;
  transition: color 180ms ease, background 180ms ease;
}

.lp-nav-signin:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.lp-nav-trial {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #2563EB;
  color: #fff;
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 180ms ease, transform 120ms ease, box-shadow 200ms ease;
}

.lp-nav-trial:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, .4);
}

/* Mobile-only nav elements — hidden on desktop */
.lp-nav-trial-mobile,
.lp-nav-mobile-right,
.lp-mobile-menu {
  display: none;
}

.lp-hamburger .icon-close {
  display: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  background: #080E1D url('../images/hero-photo.jpg') no-repeat center right / cover;
  padding: 96px 5% 104px;
  position: relative;
  overflow: hidden;
  min-height: 680px;
}

/* dark-left → transparent-right overlay so text stays readable */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #080E1D 0%,
      #080E1D 30%,
      rgba(8, 14, 29, .88) 48%,
      rgba(8, 14, 29, .35) 65%,
      rgba(8, 14, 29, .05) 82%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero-glow-1 {
  position: absolute;
  top: -120px;
  left: 30%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(37, 99, 235, .22) 0%, transparent 62%);
  pointer-events: none;
}

.lp-hero-glow-2 {
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, .14) 0%, transparent 62%);
  pointer-events: none;
}

.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lp-hero-copy {
  max-width: 560px;
}

/* Badge: #BFDBFE text on rgba-blue bg — ≈ 8 : 1 ✓ */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(37, 99, 235, .2);
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 100px;
  color: #BFDBFE;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .01em;
}

.lp-hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #60A5FA;
  border-radius: 50%;
  animation: lp-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.75);
  }
}

/* H1: white ≈ 19 : 1 ✓ */
.lp-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.038em;
  margin-bottom: 22px;
}

.lp-hero h1 .accent {
  background: linear-gradient(130deg, #60A5FA 0%, #818CF8 55%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtext: #CBD5E1 on #080E1D ≈ 11 : 1 ✓ */
.lp-hero-sub {
  font-size: 1.125rem;
  color: #CBD5E1;
  line-height: 1.72;
  margin-bottom: 38px;
  max-width: 490px;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.lp-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: #2563EB;
  color: #fff;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 180ms ease, transform 120ms ease, box-shadow 200ms ease;
}

.lp-btn-hero-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, .5);
}

.lp-btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lp-btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

/* Trust items: #94A3B8 on #080E1D ≈ 7 : 1 ✓ */
.lp-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.lp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #94A3B8;
  font-size: .875rem;
  font-weight: 500;
}

.lp-hero-trust-item svg {
  color: #4ADE80;
  flex-shrink: 0;
}


/* ── Trust bar ────────────────────────────────────────────── */
.lp-trust {
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 0 5%;
}

.lp-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* Trust items as subtle pills — #334155 on #F1F5F9 ≈ 9.6 : 1 ✓ */
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: .9rem;
  font-weight: 600;
  padding: 6px 20px;
}

.lp-trust-item svg {
  color: #2563EB;
  flex-shrink: 0;
}

/* Divider: #CBD5E1 on #F1F5F9 — decorative, not text */
.lp-trust-divider {
  width: 1px;
  height: 28px;
  background: #CBD5E1;
  flex-shrink: 0;
}

/* ── Section scaffold ─────────────────────────────────────── */
.lp-section {
  padding: 96px 5%;
}

.lp-section-alt {
  background: #F8FAFC;
}

.lp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.lp-eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

/* Section h2: #0F172A on white ≈ 17 : 1 ✓ */
.lp-section-header h2 {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 16px;
}

/* Section subtext: #334155 on white ≈ 10 : 1 ✓ (was #475569 — improved) */
.lp-section-header p {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.7;
}

/* ── Features ─────────────────────────────────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-top: 3px solid transparent;
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition: box-shadow 220ms ease, transform 200ms ease, border-top-color 220ms ease;
  position: relative;
}

.lp-feature-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
}

/* Coloured top accent on hover */
.lp-feature-card:nth-child(1):hover {
  border-top-color: #2563EB;
}

.lp-feature-card:nth-child(2):hover {
  border-top-color: #10B981;
}

.lp-feature-card:nth-child(3):hover {
  border-top-color: #7C3AED;
}

.lp-feature-card:nth-child(4):hover {
  border-top-color: #EA580C;
}

.lp-feature-card:nth-child(5):hover {
  border-top-color: #E11D48;
}

.lp-feature-card:nth-child(6):hover {
  border-top-color: #0D9488;
}

.lp-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lp-feature-icon-blue {
  background: #EFF6FF;
  color: #2563EB;
}

.lp-feature-icon-green {
  background: #ECFDF5;
  color: #059669;
}

.lp-feature-icon-purple {
  background: #F5F3FF;
  color: #6D28D9;
}

.lp-feature-icon-orange {
  background: #FFF7ED;
  color: #C2410C;
}

.lp-feature-icon-rose {
  background: #FFF1F2;
  color: #BE123C;
}

.lp-feature-icon-teal {
  background: #F0FDFA;
  color: #0F766E;
}

/* Feature title: #0F172A on #fff ≈ 17 : 1 ✓ */
.lp-feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -.015em;
}

/* Feature body: #334155 on #fff ≈ 10 : 1 ✓ (was #475569 — improved) */
.lp-feature-card p {
  font-size: .9375rem;
  color: #334155;
  line-height: 1.65;
}

/* ── How it works ─────────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* 4-step variant (driving-schools.php) */
.lp-steps-4 {
  grid-template-columns: repeat(4, 1fr);
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg, #BFDBFE 0%, #C4B5FD 100%);
  z-index: 0;
}

.lp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* 4-step connector line: columns are 25% wide so centres are at 12.5% in */
.lp-steps-4::before {
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
}

.lp-step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
  border: 2px solid #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: #2563EB;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 6px #fff;
}

/* Step title: #0F172A on #F8FAFC ≈ 17 : 1 ✓ */
.lp-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -.015em;
}

/* Step body: #334155 on #F8FAFC ≈ 9.6 : 1 ✓ */
.lp-step p {
  font-size: .9375rem;
  color: #334155;
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

/* ── Pricing ──────────────────────────────────────────────── */
.lp-pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  margin: 0 auto 56px;
}

.lp-pricing-toggle-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-size: .9375rem;
  font-weight: 500;
  /* Inactive: #475569 on #F1F5F9 ≈ 7.1 : 1 ✓ */
  color: #475569;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

/* Active: #0F172A on #fff ≈ 17 : 1 ✓ */
.lp-pricing-toggle-btn.active {
  background: #fff;
  color: #0F172A;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .12);
}

/* Save badge always visible — entices switch even from Monthly tab */
.lp-pricing-save-badge {
  font-size: .75rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 100px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Dim the badge when not on annual tab */
.lp-pricing-toggle-btn:not(.active) .lp-pricing-save-badge {
  opacity: .55;
}

.lp-pricing-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

/* Price number fades when billing tab switches */
.lp-plan-price-num {
  transition: opacity 120ms ease, transform 120ms ease;
}

.lp-plan-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 32px 32px;
  flex: 1;
  max-width: 360px;
  position: relative;
  transition: box-shadow 220ms ease, transform 200ms ease;
}

.lp-plan-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.lp-plan-card.featured {
  border: 2px solid #2563EB;
  box-shadow: 0 0 0 1px #2563EB, 0 16px 56px rgba(37, 99, 235, .2);
  transform: scale(1.035);
  background: linear-gradient(180deg, #F0F7FF 0%, #fff 60%);
}

.lp-plan-card.featured:hover {
  box-shadow: 0 0 0 1px #2563EB, 0 24px 64px rgba(37, 99, 235, .28);
  transform: scale(1.035) translateY(-4px);
}

.lp-plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .03em;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .4);
}

/* Plan name: #2563EB on white ≈ 5.9 : 1 ✓ (uppercase large — 3:1 minimum met) */
.lp-plan-name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #2563EB;
  margin-bottom: 8px;
}

/* Plan desc: #334155 on white ≈ 10 : 1 ✓ (was var(--text-muted)=#94A3B8=FAIL) */
.lp-plan-desc {
  font-size: .9375rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 46px;
}

.lp-plan-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

/* Price currency: #475569 on white ≈ 7.4 : 1 ✓ */
.lp-plan-price-cur {
  font-size: 1.25rem;
  font-weight: 700;
  color: #475569;
  line-height: 1;
  padding-bottom: 7px;
}

/* Price number: #0F172A on white ≈ 17 : 1 ✓ */
.lp-plan-price-num {
  font-size: 3.25rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -.04em;
  line-height: 1;
}

/* Price period: #475569 on white ≈ 7.4 : 1 ✓ (was var(--text-muted)=FAIL) */
.lp-plan-price-per {
  font-size: .9375rem;
  color: #475569;
  padding-bottom: 9px;
  font-weight: 500;
}

/* Annual billing note — green "billed €X/yr" confirmation */
.lp-plan-annual-note {
  font-size: .875rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 20px;
}

/* Monthly nudge — blue "Switch to Annual" prompt */
.lp-plan-annual-note.is-nudge {
  color: #2563EB;
}

.lp-plan-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 24px 0;
}

.lp-plan-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

/* Feature text: #334155 on white ≈ 10 : 1 ✓ (was var(--text-secondary)=#475569 — improved) */
.lp-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: #334155;
  line-height: 1.45;
}

.lp-plan-feature svg {
  color: #2563EB;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Differentiator lines (student cap, support tier) — made to visibly stand
   out so the per-plan difference is obvious at a glance, not buried in a
   list that otherwise reads identically across all three cards. */
.lp-plan-feature-diff {
  font-weight: 700;
  color: #0F172A;
}

.lp-plan-feature-diff svg {
  color: #fff;
  background: #2563EB;
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}

.lp-plan-btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 180ms ease, transform 100ms ease, border-color 180ms ease;
  cursor: pointer;
}

.lp-plan-btn-outline {
  border: 2px solid #CBD5E1;
  color: #1E293B;
  background: #fff;
}

.lp-plan-btn-outline:hover {
  border-color: #94A3B8;
  background: #F8FAFC;
  color: #0F172A;
}

.lp-plan-btn-primary {
  background: #2563EB;
  color: #fff;
  border: 2px solid #2563EB;
}

.lp-plan-btn-primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  transform: translateY(-1px);
}

/* Trial note: #475569 on white ≈ 7.4 : 1 ✓ (was var(--text-muted)=FAIL) */
.lp-plan-trial-note {
  font-size: .8125rem;
  color: #475569;
  margin-top: 10px;
}

.lp-plan-trial-note--featured {
  color: #1D4ED8;
}

.lp-pricing-toggle-wrap {
  text-align: center;
}

.lp-pricing-footer-note {
  text-align: center;
  margin-top: 32px;
  font-size: .9375rem;
  color: #475569;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.lp-faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.lp-faq-item:first-child {
  border-top: 1px solid #E2E8F0;
}

.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  /* FAQ question: #0F172A on #F8FAFC ≈ 17 : 1 ✓ */
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0F172A;
  transition: color 180ms ease;
  font-family: var(--font);
  line-height: 1.45;
}

.lp-faq-q:hover {
  color: #2563EB;
}

.lp-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  transition: background 200ms ease, border-color 200ms ease, transform 300ms ease;
}

.lp-faq-item.open .lp-faq-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff;
  transform: rotate(45deg);
}

.lp-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}

/* FAQ answer: #334155 on #F8FAFC ≈ 9.6 : 1 ✓ (was #475569 — improved) */
.lp-faq-body-inner {
  padding: 0 0 22px;
  font-size: .9375rem;
  color: #334155;
  line-height: 1.75;
}

/* ── Final CTA ────────────────────────────────────────────── */
.lp-cta {
  background: #080E1D;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.lp-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, .25) 0%, transparent 65%);
  pointer-events: none;
}

.lp-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* CTA h2: #fff on #080E1D ≈ 19 : 1 ✓ */
.lp-cta h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 18px;
}

/* CTA p: #CBD5E1 on #080E1D ≈ 11 : 1 ✓ (was rgba(.6) ≈ 6:1 — improved) */
.lp-cta p {
  font-size: 1.125rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 40px;
}

.lp-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* CTA fine print: #94A3B8 on #080E1D ≈ 7 : 1 ✓ (was rgba(.38)=FAIL) */
.lp-cta-note {
  margin-top: 22px;
  font-size: .875rem;
  color: #94A3B8;
  letter-spacing: .01em;
}

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer {
  background: #080E1D;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 56px 5% 40px;
}

.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.lp-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.lp-footer-brand-logo-icon {
  width: 30px;
  height: 30px;
  background: #2563EB;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}


/* Footer desc: #CBD5E1 on #080E1D ≈ 11 : 1 ✓ (was rgba(.4)=FAIL) */
.lp-footer-brand-desc {
  font-size: .9rem;
  color: #CBD5E1;
  line-height: 1.7;
  max-width: 280px;
}

/* Footer col title: #94A3B8 on #080E1D ≈ 7 : 1 ✓ (was rgba(.5)=borderline) */
.lp-footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #94A3B8;
  margin-bottom: 18px;
}

.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Footer links: #CBD5E1 on #080E1D ≈ 11 : 1 ✓ (was rgba(.52)=borderline) */
.lp-footer-links a {
  font-size: .9rem;
  color: #CBD5E1;
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-footer-links a:hover {
  color: #fff;
}

.lp-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer copy: #94A3B8 on #080E1D ≈ 7 : 1 ✓ (was rgba(.35)=FAIL) */
.lp-footer-copy {
  font-size: .875rem;
  color: #94A3B8;
}

.lp-footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Footer bottom links: #94A3B8 on #080E1D ≈ 7 : 1 ✓ (was rgba(.38)=FAIL) */
.lp-footer-bottom-links a {
  font-size: .875rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-footer-bottom-links a:hover {
  color: #fff;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1023px) {
  .lp-hero h1 {
    font-size: 2.5rem;
  }

  .lp-hero-copy {
    max-width: 480px;
  }

  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-steps::before {
    display: none;
  }

  .lp-pricing-wrap {
    flex-direction: column;
    align-items: center;
  }

  .lp-plan-card {
    max-width: 420px;
    width: 100%;
  }

  .lp-plan-card.featured {
    transform: none;
  }

  .lp-plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .lp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .lp-step {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .lp-nav-links {
    display: none;
  }

  .lp-nav-signin {
    display: none;
  }

  /* 3-zone mobile nav: logo | [trial centred] | login+hamburger */
  .lp-nav-actions {
    display: none;
  }

  .lp-nav-trial-mobile {
    display: inline-flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 14px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 180ms ease;
  }

  .lp-nav-trial-mobile:hover { background: #1D4ED8; }
  .lp-nav-trial-mobile:active { transform: translateX(-50%) scale(0.97); }

  .lp-nav-mobile-right {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
  }

  .lp-nav-login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #CBD5E1;
    text-decoration: none;
    border-radius: 7px;
    transition: color 180ms ease, background 180ms ease;
  }

  .lp-nav-login-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, .09);
  }

  .lp-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: none;
    border: none;
    color: #CBD5E1;
    cursor: pointer;
    border-radius: 7px;
    transition: color 180ms ease, background 180ms ease;
  }

  .lp-hamburger:hover { color: #fff; background: rgba(255, 255, 255, .09); }

  .lp-hamburger.open .icon-menu { display: none; }
  .lp-hamburger.open .icon-close { display: flex; }

  /* ── Mobile nav modal ──────────────────────────────────────── */
  .lp-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(6, 11, 24, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 28px 40px;
    overflow-y: auto;
    /* closed state */
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .lp-mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Nav links — vertically centred in the available space */
  .lp-mobile-nav-links {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 0;
  }

  .lp-mobile-link {
    display: block;
    padding: 18px 0;
    color: #E2E8F0;
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: color 150ms ease, padding-left 150ms ease;
    /* stagger-in from below */
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 260ms ease, transform 260ms ease, color 150ms ease;
  }

  .lp-mobile-link:last-child { border-bottom: none; }
  .lp-mobile-link:hover { color: #fff; padding-left: 6px; }

  /* Stagger links in when open */
  .lp-mobile-menu.open .lp-mobile-link:nth-child(1) { transition-delay:  50ms; opacity: 1; transform: none; }
  .lp-mobile-menu.open .lp-mobile-link:nth-child(2) { transition-delay:  90ms; opacity: 1; transform: none; }
  .lp-mobile-menu.open .lp-mobile-link:nth-child(3) { transition-delay: 130ms; opacity: 1; transform: none; }
  .lp-mobile-menu.open .lp-mobile-link:nth-child(4) { transition-delay: 170ms; opacity: 1; transform: none; }

  /* Footer CTAs */
  .lp-mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 28px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 260ms ease 210ms, transform 260ms ease 210ms;
  }

  .lp-mobile-menu.open .lp-mobile-menu-footer {
    opacity: 1;
    transform: none;
  }

  .lp-mobile-signin {
    display: block;
    text-align: center;
    padding: 13px;
    color: #CBD5E1;
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 500;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .14);
    transition: color 180ms ease, background 180ms ease;
  }

  .lp-mobile-signin:hover { color: #fff; background: rgba(255, 255, 255, .07); }

  .lp-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 180ms ease;
  }

  .lp-mobile-cta:hover { background: #1D4ED8; }
  .lp-mobile-cta:active { transform: scale(0.97); }

  .lp-hero {
    padding: 72px 5% 72px;
    min-height: 500px;
  }

  .lp-hero-copy {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .lp-hero-badge {
    align-self: center;
  }

  .lp-hero-ctas {
    justify-content: center;
  }

  .lp-hero-trust-row {
    justify-content: center;
  }

  /* On mobile the person is off-screen right — darken whole hero so text stays readable */
  .lp-hero::before {
    background: linear-gradient(180deg,
        rgba(8, 14, 29, .92) 0%,
        rgba(8, 14, 29, .78) 100%);
  }

  .lp-section {
    padding: 64px 5%;
  }

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

  .lp-trust-divider {
    display: none;
  }

  .lp-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Focus states (accessibility) ────────────────────────── */
.lp-nav-link:focus-visible,
.lp-nav-signin:focus-visible,
.lp-nav-trial:focus-visible,
.lp-nav-trial-mobile:focus-visible,
.lp-nav-login-icon:focus-visible,
.lp-hamburger:focus-visible,
.lp-mobile-link:focus-visible,
.lp-mobile-signin:focus-visible,
.lp-mobile-cta:focus-visible,
.lp-btn-hero-primary:focus-visible,
.lp-btn-hero-ghost:focus-visible,
.lp-plan-btn:focus-visible,
.lp-faq-q:focus-visible {
  outline: 3px solid #60A5FA;
  outline-offset: 3px;
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .lp-hero-badge-dot {
    animation: none;
  }

  .lp-btn-hero-primary:hover,
  .lp-btn-hero-ghost:hover,
  .lp-feature-card:hover,
  .lp-plan-card:hover {
    transform: none;
  }

  .lp-faq-icon {
    transition: none;
  }

  .lp-faq-body {
    transition: none;
  }

  /* Hero + scroll animations disabled */
  .hero-anim-1,
  .hero-anim-2,
  .hero-anim-3,
  .hero-anim-4,
  .hero-anim-5,
  .hero-anim-visual {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Animations (Emil Kowalski principles)
   - Only animate transform + opacity (GPU-composited)
   - Strong ease-out: cubic-bezier(0.23, 1, 0.32, 1)
   - Nothing starts from scale(0) — always 0.96+ with opacity
   - Hero: CSS keyframes (no JS needed, runs immediately)
   - Scroll: IntersectionObserver + CSS transitions (interruptible)
   ============================================================ */

/* ── Custom easing ────────────────────────────────────────── */
/* --ease-out-strong: starts instantly, decelerates — best for entries */
/* --ease-in-out-strong: for on-screen movement between states       */

/* ── Hero entrance keyframes ──────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes heroReveal {

  /* Mockup reveals — starts from scale(0.96), never 0 */
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Applied to hero copy children in order — no JS needed */
.hero-anim-1 {
  animation: heroFadeUp .55s cubic-bezier(0.23, 1, 0.32, 1) 0ms both;
}

.hero-anim-2 {
  animation: heroFadeUp .60s cubic-bezier(0.23, 1, 0.32, 1) 80ms both;
}

.hero-anim-3 {
  animation: heroFadeUp .55s cubic-bezier(0.23, 1, 0.32, 1) 175ms both;
}

.hero-anim-4 {
  animation: heroFadeUp .55s cubic-bezier(0.23, 1, 0.32, 1) 290ms both;
}

.hero-anim-5 {
  animation: heroFadeUp .50s cubic-bezier(0.23, 1, 0.32, 1) 390ms both;
}

.hero-anim-visual {
  animation: heroReveal .65s cubic-bezier(0.23, 1, 0.32, 1) 200ms both;
}

/* ── Scroll-reveal system ─────────────────────────────────── */
/* Elements start hidden; JS adds .is-visible when they enter viewport */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Stagger: each child reads --i CSS variable for its delay */
.reveal-stagger {
  transition-delay: calc(var(--i, 0) * 65ms);
}

/* Scale variant: for pricing cards (scale from 0.97, not 0) */
.reveal-scale {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition:
    opacity 500ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lp-plan-card.featured.reveal-scale.is-visible {
  transform: translateY(0) scale(1.035);
}

/* ── Button press states (Emil: every button must feel responsive) ── */
.lp-btn-hero-primary:active,
.lp-nav-trial:active,
.lp-plan-btn:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

/* Ghost button press — no translateY interaction */
.lp-btn-hero-ghost:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

/* ── Nav: scrolled state ──────────────────────────────────── */
.lp-nav.scrolled {
  background: rgba(5, 10, 20, .99);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07), 0 4px 16px rgba(0, 0, 0, .3);
}

/* ── Photo Banner ─────────────────────────────────────────── */
.lp-photo-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.lp-photo-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scaleX(-1);
  /* Mirror horizontally — RHD in Ireland */
}

.lp-photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(8, 14, 29, .92) 0%,
      rgba(8, 14, 29, .65) 50%,
      rgba(8, 14, 29, .5) 100%);
}

.lp-photo-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  left: 5%;
  right: 5%;
}

.lp-photo-banner-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.lp-photo-banner-stat+.lp-photo-banner-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}

/* #FFFFFF on dark overlay ≈ 19 : 1 ✓ */
.lp-photo-banner-num {
  display: block;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.lp-photo-banner-num .accent {
  color: #60A5FA;
}

/* #CBD5E1 on dark overlay ≈ 11 : 1 ✓ */
.lp-photo-banner-lbl {
  font-size: 1rem;
  color: #CBD5E1;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .lp-photo-banner {
    height: 320px;
  }

  .lp-photo-banner-content {
    flex-direction: column;
    gap: 24px;
    padding: 30px 0 30px 0;
  }

  .lp-photo-banner-stat {
    padding: 0 16px;
  }

  .lp-photo-banner-stat+.lp-photo-banner-stat::before {
    display: none;
  }

  .lp-photo-banner-num {
    font-size: 2rem;
  }

  .lp-photo-banner-lbl {
    font-size: .875rem;
  }
}

/* ── Testimonials ─────────────────────────────────────────── */
.lp-testimonials {
  background: #080E1D;
  padding: 96px 5%;
  position: relative;
  overflow: hidden;
}

/* Reuse hero dot-grid texture */
.lp-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.lp-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lp-testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Testimonials eyebrow on dark bg — #93C5FD ✓ */
.lp-testimonials-header .lp-eyebrow {
  color: #60A5FA;
}

/* H2 on dark: #fff ≈ 19 : 1 ✓ */
.lp-testimonials-header h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 14px;
}

/* Subtext on dark: #CBD5E1 ≈ 11 : 1 ✓ */
.lp-testimonials-header p {
  font-size: 1.0625rem;
  color: #CBD5E1;
  line-height: 1.65;
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* When there are 4 cards, the 4th wraps alone — centre it in the 3-col grid */
.lp-testimonials-grid--4 .lp-testimonial-card:last-child {
  grid-column: 2;
}

.lp-testimonial-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.lp-testimonial-card:hover {
  border-color: rgba(96, 165, 250, .35);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, .15), 0 12px 40px rgba(0, 0, 0, .35);
}

/* Early-access repurposed cards */
.lp-testimonial-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 10px;
}

.lp-testimonial-card .lp-feature-icon {
  margin-bottom: 20px;
}

.lp-early-card-body {
  font-style: normal;
  border: none;
  padding: 0;
  color: #CBD5E1;
  line-height: 1.72;
}

/* Opening quote mark */
.lp-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(96, 165, 250, .18);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Star rating */
.lp-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.lp-testimonial-stars svg {
  color: #FBBF24;
}

/* Quote text: #E2E8F0 on #111827 ≈ 13 : 1 ✓ */
.lp-testimonial-quote {
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.72;
  margin-bottom: 28px;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
}

.lp-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(96, 165, 250, .3);
  /* Fallback bg if image fails */
  background: #1E3A5F;
}

/* Author name: #F1F5F9 on #111827 ≈ 14 : 1 ✓ */
.lp-testimonial-name {
  font-size: .9375rem;
  font-weight: 700;
  color: #F1F5F9;
  line-height: 1.3;
}

/* Author sub: #94A3B8 on #111827 ≈ 7 : 1 ✓ */
.lp-testimonial-role {
  font-size: .8125rem;
  color: #94A3B8;
  margin-top: 2px;
}

.lp-testimonial-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: #4ADE80;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .lp-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ── Image clip-path reveal (photo banner on scroll) ─────── */
.lp-photo-banner-img {
  clip-path: inset(0 0 0 0);
  transition: clip-path 800ms cubic-bezier(0.23, 1, 0.32, 1);
}

.lp-photo-banner.before-reveal .lp-photo-banner-img {
  clip-path: inset(0 0 100% 0);
}

.lp-photo-banner.is-visible .lp-photo-banner-img {
  clip-path: inset(0 0 0 0);
}

/* ── Logo sizing & responsive (landing-specific) ────────────────── */
.lp-nav-logo .nav-logo-img,
.lp-footer-brand-logo .nav-logo-img {
  height: 50px;
  width: 50px;
}

@media (max-width: 768px) {
  .lp-logo-name { display: none; }
}

/* ── Legal / info pages ──────────────────────────────────────── */
.lp-legal-hero {
  background: linear-gradient(135deg, #080E1D 0%, #0F172A 100%);
  padding: 100px 24px 64px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.lp-legal-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

.lp-legal-hero p {
  color: #94A3B8;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.lp-legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.lp-legal-updated {
  font-size: .875rem;
  color: #94A3B8;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.lp-legal-wrap h2 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0F172A;
  margin: 40px 0 12px;
}

.lp-legal-wrap h2:first-of-type { margin-top: 0; }

.lp-legal-wrap p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: .9375rem;
}

.lp-legal-wrap ul {
  margin: 0 0 14px 0;
  padding-left: 22px;
  color: #475569;
  line-height: 1.8;
  font-size: .9375rem;
}

.lp-legal-wrap ul li { margin-bottom: 5px; }

.lp-legal-wrap a { color: #2563EB; text-decoration: underline; }

.lp-legal-kos {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #2563EB;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 32px 0;
}

.lp-legal-kos p { margin: 0; }

/* Support & Contact pages */
.lp-support-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.lp-contact-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.lp-contact-info h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 14px;
}

.lp-contact-info p {
  color: #475569;
  line-height: 1.8;
  font-size: .9375rem;
  margin-bottom: 14px;
}

.lp-contact-info a { color: #2563EB; }

.lp-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #E2E8F0;
  font-size: .9375rem;
  color: #334155;
}

.lp-contact-detail:last-child { border-bottom: none; }

.lp-contact-detail svg { flex-shrink: 0; margin-top: 2px; color: #2563EB; }

.lp-support-alert {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: .9375rem;
  color: #1E40AF;
  line-height: 1.6;
}

.lp-form-success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  color: #166534;
}

.lp-form-success h3 { font-size: 1.125rem; margin-bottom: 8px; color: #166534; }

.lp-form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .9375rem;
  color: #991B1B;
}

@media (max-width: 768px) {
  .lp-legal-hero h1 { font-size: 1.75rem; }
  .lp-legal-hero { padding: 80px 20px 48px; }
  .lp-legal-wrap, .lp-support-wrap { padding: 40px 20px 64px; }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 64px; }
}