/**
 * Marketplus Media — Landing Page
 * Light/dark alternating theme — rounded corners — CRO-optimized
 */

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

:root {
  --brand: #910237;
  --brand-hover: #A80040;
  --brand-light: rgba(145, 2, 55, 0.08);
  --brand-glow: rgba(145, 2, 55, 0.25);

  /* Dark palette (hero, CTA, footer) */
  --dark: #0C0C0C;
  --dark-2: #111111;
  --dark-3: #1A1A1A;

  /* Light palette (main sections — warm tones, not sterile white) */
  --white: #FDFCFA;
  --light-1: #F7F6F3;
  --light-2: #F0EFEC;
  --light-3: #E5E4E0;
  --light-border: rgba(0,0,0,0.07);

  /* Text on light bg */
  --text-dark: #1A1A1A;
  --text-body: #444444;
  --text-muted: #777777;

  /* Text on dark bg */
  --text-light: #FFFFFF;
  --text-light-body: #CCCCCC;
  --text-light-muted: #999999;

  --font-head: 'Archivo Black', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'Roboto', sans-serif;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--light-1);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ─── ACCENT EMPHASIS (typography mixing — serif italic on emotional keywords) ── */
.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.01em;
  font-size: 1.12em;
}
.lp-final-cta .accent-serif,
.lp-hero .accent-serif,
.lp-faq-cta-card .accent-serif {
  color: var(--white);
}

/* ─── ENGAGEMENT PROGRESS BAR (scroll-based, top of page) ─────────── */
.lp-engagement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
  pointer-events: none;
}
.lp-engagement-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #910237, #c9184a, #A80040);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ─── NAV ──────────────────────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 28px;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s, transform 0.35s;
}
.lp-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-nav-logo { height: 38px; width: auto; }
.lp-nav-pills { display: none; }

.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language switch */
.lp-lang-switch {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}
.lp-lang-btn {
  padding: 6px 14px;
  border-radius: 50px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.lp-lang-btn.active {
  background: var(--white);
  color: var(--dark);
}
.lp-lang-btn:not(.active):hover {
  color: var(--white);
}

.btn-nav {
  background: var(--brand);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--brand-hover); transform: translateY(-1px); }

.nav-scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 28px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.nav-hidden { transform: translateY(-100%); }

@media (min-width: 768px) {
  .lp-nav { padding: 22px 36px; }
  .lp-nav-logo { height: 46px; }
  .lp-nav-pills {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 4px;
  }
  .lp-nav-pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s, background 0.2s;
  }
  .lp-nav-pill:hover { color: var(--white); }
  .lp-nav-pill.active { background: var(--brand); color: var(--white); }
  .nav-scrolled { padding: 14px 36px; }
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--brand-glow);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

/* ─── SECTION HELPERS ──────────────────────────────────────────────────── */
/* Light sections (default) */
.lp-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.lp-section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Dark sections override */
.section-dark .lp-section-title { color: var(--text-light); }
.section-dark .lp-section-label { color: var(--brand); }

/* Word-by-word reveal animation */
.sw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
}
.sw > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sw.in > span {
  transform: translateY(0);
}

/* ─── LIMITED TIME — hero inline text ───────────────────────────────────── */
.lp-hero-limited {
  color: #ff4d4d;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  animation: limited-glow 2.5s ease-in-out infinite;
}
@keyframes limited-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* ─── LIMITED TIME — pricing block sticker with scrolling text ──────────── */
.lp-limited-sticker {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff6b35 100%);
  padding: 6px 0;
  transform: rotate(35deg);
  box-shadow: 0 2px 8px rgba(255,77,77,0.35);
  z-index: 2;
}
.lp-limited-sticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  width: max-content;
  animation: sticker-scroll 8s linear infinite;
}
.lp-limited-sticker-track span {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.lp-limited-sticker-track span::after {
  content: '★';
  margin-left: 24px;
  opacity: 0.6;
}
@keyframes sticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .lp-hero-limited { font-size: 0.75rem; letter-spacing: 0.1em; }
  .lp-limited-sticker {
    top: 14px;
    right: -50px;
    width: 180px;
    padding: 5px 0;
  }
  .lp-limited-sticker-track { gap: 18px; }
  .lp-limited-sticker-track span { font-size: 0.6rem; }
  .lp-limited-sticker-track span::after { margin-left: 18px; }
}
@media (max-width: 380px) {
  .lp-limited-sticker {
    top: 12px;
    right: -55px;
    width: 160px;
    padding: 4px 0;
  }
  .lp-limited-sticker-track span { font-size: 0.55rem; }
}

/* ─── HERO (dark) ──────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 120px 0 56px;
  overflow: hidden;
  background: linear-gradient(165deg, #0C0C0C 0%, #15151A 40%, #0F0F14 100%);
  color: var(--text-light);
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(145,2,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(145,2,55,0.06) 0%, transparent 40%),
    radial-gradient(ellipse 60% 50% at 25% 40%, rgba(145,2,55,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 75% 50%, rgba(145,2,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.lp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f59e0b;
  width: fit-content;
}

.lp-hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  width: fit-content;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.lp-hero-google-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.lp-hero-google-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}
.lp-hero-google-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.lp-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-accent { color: var(--white); }

.lp-hero-sub {
  font-size: 1rem;
  color: var(--text-light-body);
  max-width: 520px;
  line-height: 1.55;
}
.lp-hero-cta {
  margin-top: 8px;
}

.lp-hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light-body);
}

.lp-hero-cta-mobile {
  margin-top: 4px;
  width: fit-content;
}

/* Hero form (right column) */
.lp-hero-form { display: none; }
.lp-hero-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 12px 8px 0;
  backdrop-filter: blur(12px);
}
.lp-hero-form-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 2px;
}
.lp-hero-form-sub {
  text-align: center;
  color: var(--text-light-muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.lp-hero-calendar-wrap {
  min-height: 480px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 -4px;
}

@media (min-width: 1024px) {
  .lp-hero { padding: 170px 0 100px; }
  .lp-hero-grid {
    grid-template-columns: 1fr 480px;
    gap: 48px;
  }
  .lp-hero-form { display: block; }
  .lp-hero-cta-mobile { display: none; }
}
@media (min-width: 1280px) {
  .lp-hero-grid { grid-template-columns: 1fr 520px; gap: 56px; }
  .lp-hero-title { font-size: 3.6rem; }
}
@media (min-width: 1440px) {
  .lp-hero-grid { grid-template-columns: 1fr 560px; gap: 64px; }
  .lp-hero-title { font-size: 4rem; }
}

/* ─── HERO SPLIT LAYOUT (copy left, dashboard right) ─────────────────── */
.lp-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.lp-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lp-hero-social-proof {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-hero-social-proof::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  animation: proof-pulse 2s ease-in-out infinite;
}
@keyframes proof-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero calendar embed (right column) */
/* ─── 2-Step Checkout Form ─── */
.lp-hero-checkout {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.lp-checkout-step { padding: 28px 24px; }
.lp-checkout-header { margin-bottom: 20px; }
.lp-checkout-step-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: rgba(200,37,72,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.lp-checkout-step-badge--done {
  background: rgba(52,211,153,0.1);
  color: #059669;
}
.lp-checkout-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.lp-checkout-sub {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.4;
}
.lp-checkout-form { display: flex; flex-direction: column; gap: 14px; }
.lp-checkout-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-checkout-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.lp-checkout-field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(200,37,72,0.1);
  background: #fff;
}
.lp-checkout-field input::placeholder { color: #94a3b8; }
.lp-checkout-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 1rem;
  padding: 14px 24px;
}
.lp-checkout-privacy {
  font-size: 0.72rem;
  color: #94a3b8;
  text-align: center;
  margin: 12px 0 0;
}
.lp-checkout-sending .lp-checkout-submit {
  opacity: 0.7;
  pointer-events: none;
}

/* Final CTA checkout form (dark theme) */
.lp-calendar-wrap .lp-checkout-step {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-calendar-wrap .lp-checkout-title { color: #fff; }
.lp-calendar-wrap .lp-checkout-sub { color: rgba(255,255,255,0.6); }
.lp-calendar-wrap .lp-checkout-field label { color: rgba(255,255,255,0.8); }
.lp-calendar-wrap .lp-checkout-field input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.lp-calendar-wrap .lp-checkout-field input:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,0.08);
}
.lp-calendar-wrap .lp-checkout-field input::placeholder { color: rgba(255,255,255,0.3); }
.lp-calendar-wrap .lp-checkout-privacy { color: rgba(255,255,255,0.35); }

.lp-checkout-calendar-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 520px;
}
.lp-checkout-calendar-wrap iframe {
  width: 100%;
  min-height: 650px;
  border: none;
  display: block;
}
.lp-calendar-wrap .lp-checkout-calendar-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  max-height: 650px;
}

.lp-hero-visual {
  display: none;
}
.lp-hero-calendar {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: 520px;
  position: relative;
}
.lp-hero-calendar iframe {
  pointer-events: auto;
  width: 100%;
  min-height: 650px;
  height: 650px;
  border: none;
  display: block;
}

/* Hero split responsive */
@media (min-width: 1024px) {
  .lp-hero { padding: 130px 0 60px; }
  .lp-hero-split {
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
  }
  .lp-hero-visual {
    display: block;
  }
  .lp-hero-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }
}
@media (min-width: 1280px) {
  .lp-hero-split {
    grid-template-columns: 1fr 440px;
    gap: 56px;
  }
  .lp-hero-title {
    font-size: 2.8rem;
  }
}

/* ─── CLIENTS TOP (logo marquee under hero) ──────────────────────────── */
.lp-clients-top {
  padding: 32px 0;
  background: var(--light-1);
}

/* ─── SECTION DIVIDERS (brand-colored subtle line between sections) ────── */
.lp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145,2,55,0.2), transparent);
  border: none;
  margin: 0;
}
.lp-divider--dark {
  background: linear-gradient(90deg, transparent, rgba(145,2,55,0.35), transparent);
}

/* ─── SECTION GLOW BACKGROUNDS (radial glows for depth) ──────────────── */
.lp-vsl::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(145,2,55,0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.lp-offer::before {
  content: '';
  position: absolute;
  top: 200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(145,2,55,0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lp-process::before {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(145,2,55,0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lp-showcase::before {
  content: '';
  position: absolute;
  bottom: 100px; right: -100px;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(145,2,55,0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lp-reviews::before {
  content: '';
  position: absolute;
  top: 50px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(145,2,55,0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
/* ─── CLIENT RESULTS CAROUSEL ─────────────────────────────────────────── */
.lp-results {
  padding: 48px 0;
  background: var(--light-1);
  overflow: hidden;
}
.lp-results-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.lp-results-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 20px;
  animation: marquee-scroll 35s linear infinite;
}
.lp-result-card {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.lp-result-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lp-result-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
}
.lp-result-name {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.lp-result-metric {
  color: var(--white);
  font-size: 0.95rem;
}
.lp-result-metric strong { color: #f59e0b; }
.lp-result-card--dark {
  background: linear-gradient(135deg, var(--dark) 0%, #1A1A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-result-stat-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-result-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
}
.lp-result-stat-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* ─── TRUST BAR ───────────────────────────────────────────────────────── */
.lp-trust-bar {
  background: var(--light-1);
  border-bottom: none;
  padding: 20px 0;
}
.lp-trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
}
.lp-trust-badge-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}
.lp-trust-badge-item > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.lp-trust-badge-item > div span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.lp-trust-bar-sep {
  width: 1px;
  height: 28px;
  background: var(--light-3);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lp-trust-bar-inner {
    gap: 16px 20px;
    justify-content: center;
  }
  .lp-trust-bar-sep { display: none; }
  .lp-trust-badge-item { font-size: 0.8rem; }
}

/* ─── VSL (light) ──────────────────────────────────────────────────────── */
.lp-vsl {
  position: relative;
  padding: 80px 0;
  background: var(--white);
}
.lp-vsl .lp-section-title { margin-bottom: 32px; text-align: center; }

.lp-vsl-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.lp-vsl-glow {
  position: absolute;
  width: 120%; height: 120%;
  top: -10%; left: -10%;
  background: radial-gradient(ellipse, rgba(145,2,55,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.lp-vsl-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
  z-index: 1;
}
.lp-vsl-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-vsl-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
}
.lp-vsl-overlay.hidden { opacity: 0; pointer-events: none; }
.lp-vsl-play {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: pulse-play 2s ease-in-out infinite;
}
.lp-vsl-play:hover { transform: scale(1.08); }
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 var(--brand-glow); }
  50% { box-shadow: 0 0 0 20px transparent; }
}
.lp-vsl-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.15); z-index: 3;
}
.lp-vsl-progress-bar { height: 100%; background: var(--brand); width: 0%; transition: width 0.1s linear; }


/* ─── OFFER (light gray) ───────────────────────────────────────────────── */
.lp-offer {
  position: relative;
  padding: 80px 0;
  background: var(--light-1);
}

/* Offer header */
.lp-offer-header {
  margin-bottom: 48px;
  text-align: center;
}

/* (Legacy offer-card CSS — orphaned, HTML was replaced by pricing-split/compare/included) */
.lp-offer-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 50px;
}
.lp-offer-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.lp-offer-card-from {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}
.lp-offer-card-amount {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 5rem);
  color: #fff;
  line-height: 1;
}
.lp-offer-card-per {
  font-size: 0.35em;
  color: var(--text-light-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.lp-offer-card-terms {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-hover);
  font-weight: 500;
  margin-top: 4px;
}
.lp-offer-card-savings {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-offer-card-old {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--text-light-muted);
}
.lp-offer-card-old del {
  text-decoration: line-through;
  text-decoration-color: var(--brand);
}
.lp-offer-card-new {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: #fff;
}
.lp-offer-card-save {
  background: rgba(145,2,55,0.2);
  color: #ff6b9d;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.lp-offer-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}
.lp-offer-card-features-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--text-light-body);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-offer-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 480px) {
  .lp-offer-card-grid { grid-template-columns: 1fr 1fr; }
}
.lp-offer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light-body);
}
.lp-offer-feature svg {
  flex-shrink: 0;
}
.lp-offer-card-cta {
  width: 100%;
  justify-content: center;
  margin-top: 32px;
  font-size: 1.1rem;
  padding: 18px 32px;
}
.lp-offer-card-micro {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .lp-offer-card-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Offer price hero (was → now comparison) */
.lp-offer-price-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.lp-offer-was {
  text-align: center;
}
.lp-offer-was-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}
.lp-offer-was-amount {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--text-light-muted);
}
.lp-offer-was-amount del {
  text-decoration: line-through;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
}
.lp-offer-arrow {
  font-size: 1.8rem;
  color: var(--brand);
  font-weight: 700;
  line-height: 1;
}
.lp-offer-now {
  text-align: center;
}
.lp-offer-now-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 4px;
  font-weight: 600;
}
.lp-offer-now-amount {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: #fff;
  line-height: 1;
}
.lp-offer-now-per {
  font-size: 0.3em;
  color: var(--text-light-muted);
  font-family: var(--font-body);
  font-weight: 400;
  vertical-align: baseline;
}
.lp-offer-terms-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.lp-offer-term-pill {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}
.lp-offer-term-pill--save {
  background: rgba(145,2,55,0.2);
  border-color: rgba(145,2,55,0.3);
  color: #ff6b9d;
  font-weight: 700;
}

@media (max-width: 480px) {
  .lp-offer-price-hero { gap: 16px; }
  .lp-offer-was-amount { font-size: 1.2rem; }
  .lp-offer-arrow { font-size: 1.4rem; }
  .lp-offer-now-amount { font-size: clamp(2.4rem, 12vw, 3rem); }
  .lp-offer-terms-row { gap: 6px; }
  .lp-offer-term-pill { font-size: 0.72rem; padding: 5px 10px; }
}

/* ─── OFFER PRICING BLOCK (clear horizontal price comparison) ─────────── */
.lp-offer-pricing-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 56px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lp-offer-pricing-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #D4145A);
}
.lp-offer-pricing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.lp-offer-old-price {
  text-align: center;
}
.lp-offer-old-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}
.lp-offer-old-amount {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--text-light-muted);
}
.lp-offer-old-amount del {
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 3px;
}
.lp-offer-pricing-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrow-pulse 2s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: 0.7; }
}
@keyframes arrow-pulse-mobile {
  0%, 100% { transform: rotate(90deg) translateX(0); opacity: 1; }
  50% { transform: rotate(90deg) translateX(4px); opacity: 0.7; }
}
.lp-offer-new-price {
  text-align: center;
}
.lp-offer-new-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 4px;
}
.lp-offer-new-amount {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: #fff;
  line-height: 1;
}
.lp-offer-new-per {
  font-size: 0.28em;
  color: var(--text-light-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.lp-offer-terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.lp-offer-term-pill {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
}
.lp-offer-term-pill--save {
  background: rgba(145,2,55,0.2);
  border-color: rgba(145,2,55,0.3);
  color: #ff6b9d;
  font-weight: 700;
}
.lp-offer-pricing-cta {
  margin: 0 auto;
  font-size: 1.05rem;
  padding: 18px 40px;
  position: relative;
  overflow: hidden;
}
.lp-offer-pricing-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: cta-shimmer 3s ease-in-out infinite;
}
@keyframes cta-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}
.lp-offer-card-micro {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-top: 12px;
}

@media (min-width: 600px) {
  .lp-offer-pricing-block { padding: 56px 48px; }
  .lp-offer-pricing-row { gap: 40px; }
  .lp-offer-old-amount { font-size: 2.2rem; }
}

@media (max-width: 599px) {
  .lp-offer-pricing-block {
    padding: 40px 20px 32px;
    margin: 0 auto 40px;
    border-radius: var(--radius);
  }
  .lp-offer-pricing-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .lp-offer-pricing-arrow {
    animation: arrow-pulse-mobile 2s ease-in-out infinite;
  }
  .lp-offer-pricing-arrow svg { width: 26px; height: 26px; }
  .lp-offer-old-amount { font-size: 1.5rem; }
  .lp-offer-new-amount { font-size: clamp(2.6rem, 13vw, 3.4rem); }
  .lp-offer-old-label, .lp-offer-new-label { font-size: 0.68rem; }
  .lp-offer-terms {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 20px;
  }
  .lp-offer-term-pill {
    text-align: center;
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  .lp-offer-pricing-cta {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.98rem;
    justify-content: center;
  }
  .lp-offer-card-micro { font-size: 0.74rem; padding: 0 4px; }
}

/* ─── COMPARISON TABLE (HeadshotPro-style row-based) ─────────────────── */
.lp-compare-table {
  max-width: 760px;
  margin: 0 auto 56px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-border);
  background: var(--white);
}
.lp-compare-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 2px solid var(--light-3);
}
.lp-compare-table-header .lp-compare-table-feature {
  padding: 16px 20px;
}
.lp-compare-table-col {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.lp-compare-table-col--other {
  color: var(--text-muted);
  background: var(--light-2);
}
.lp-compare-table-col--us {
  color: #fff;
  background: var(--brand);
  word-break: keep-all;
}
.lp-compare-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--light-border);
  transition: background 0.15s;
}
.lp-compare-table-row:last-child {
  border-bottom: none;
}
.lp-compare-table-row:hover {
  background: var(--light-1);
}
.lp-compare-table-feature {
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.lp-compare-table-cell {
  padding: 14px 20px;
  font-size: 0.88rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-compare-table-cell--bad {
  color: var(--text-muted);
}
.lp-compare-table-cell--bad::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fca5a5;
  margin-right: 8px;
  flex-shrink: 0;
}
.lp-compare-table-cell--good {
  color: var(--text-dark);
  font-weight: 600;
}
.lp-compare-table-cell--good::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  margin-right: 8px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .lp-compare-table {
    margin: 0 auto 40px;
    border-radius: var(--radius-sm);
  }
  .lp-compare-table-header,
  .lp-compare-table-row {
    grid-template-columns: 0.6fr 1fr 1fr;
  }
  .lp-compare-table-header {
    border-bottom-width: 1px;
  }
  .lp-compare-table-header .lp-compare-table-feature {
    padding: 10px 8px;
  }
  .lp-compare-table-col {
    padding: 10px 6px;
    font-size: 0.68rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .lp-compare-table-feature {
    padding: 10px 8px;
    font-size: 0.75rem;
  }
  .lp-compare-table-cell {
    padding: 10px 6px;
    font-size: 0.73rem;
    line-height: 1.3;
  }
  .lp-compare-table-cell--bad::before,
  .lp-compare-table-cell--good::before {
    width: 6px; height: 6px;
    margin-right: 5px;
  }
}

@media (max-width: 380px) {
  .lp-compare-table-header,
  .lp-compare-table-row {
    grid-template-columns: 0.55fr 1fr 1fr;
  }
  .lp-compare-table-col {
    padding: 8px 4px;
    font-size: 0.62rem;
  }
  .lp-compare-table-feature {
    padding: 8px 6px;
    font-size: 0.68rem;
  }
  .lp-compare-table-cell {
    padding: 8px 4px;
    font-size: 0.66rem;
  }
  .lp-compare-table-cell--bad::before,
  .lp-compare-table-cell--good::before {
    width: 5px; height: 5px;
    margin-right: 4px;
  }
}

/* ─── WHAT'S INCLUDED (6-item grid) ──────────────────────────────────── */
.lp-included {
  max-width: 900px;
  margin: 0 auto 48px;
}
.lp-included-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}
.lp-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.lp-included-item {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.lp-included-item:hover {
  border-color: rgba(145,2,55,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.lp-included-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lp-included-item h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.lp-included-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* Guarantee badges */
.lp-guarantees {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lp-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.lp-guarantee:hover {
  border-color: rgba(145,2,55,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.lp-guarantee-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .lp-guarantees { gap: 10px; }
  .lp-guarantee { padding: 12px 14px; font-size: 0.8rem; gap: 10px; }
  .lp-guarantee-icon { width: 36px; height: 36px; }
  .lp-guarantee-icon svg { width: 22px; height: 22px; }
}

/* ─── PORTFOLIO CAROUSEL ─────────────────────────────────────────────── */
.lp-portfolio-carousel {
  padding: 64px 0;
  background: var(--white);
  overflow: hidden;
}
.lp-portfolio-carousel .lp-section-title {
  margin-bottom: 40px;
}
.lp-portfolio-marquee {
  overflow: hidden;
  width: 100%;
}
.lp-portfolio-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: portfolio-scroll 30s linear infinite;
}
.lp-portfolio-track:hover {
  animation-play-state: paused;
}
@keyframes portfolio-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lp-portfolio-slide {
  flex-shrink: 0;
  width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-1);
  border: 1px solid var(--light-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-portfolio-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.lp-portfolio-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.lp-portfolio-slide-info {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-portfolio-slide-info strong {
  font-size: 0.9rem;
  color: var(--text-dark);
}
.lp-portfolio-slide-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--light-2);
  padding: 4px 10px;
  border-radius: 50px;
}

@media (max-width: 600px) {
  .lp-portfolio-carousel { padding: 48px 0; }
  .lp-portfolio-slide { width: 280px; }
  .lp-portfolio-slide img { height: 160px; }
  .lp-portfolio-slide-info { padding: 12px 14px; }
  .lp-portfolio-slide-info strong { font-size: 0.82rem; }
  .lp-portfolio-slide-info span { font-size: 0.72rem; }
}

/* ─── MEET OUR FOUNDERS (standalone dark section) ────────────────────── */
.lp-founders-section {
  padding: 80px 0;
  background: var(--dark);
  color: var(--text-light);
}
.lp-founders-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .lp-founders-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.lp-founders-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.lp-founders-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.lp-founders-photo-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 140px; height: 140px;
  background: var(--brand);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 0;
}
.lp-founders-content .lp-section-label {
  color: var(--brand-hover);
}
.lp-founders-content .lp-section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}
.lp-founders-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-founders-bio {
  font-size: 1.05rem;
  color: var(--text-light-body);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lp-founders-names {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
}
.lp-founder-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}
.lp-founder-tag:hover {
  background: rgba(255,255,255,0.08);
}
.lp-founder-tag strong {
  color: #fff;
  font-size: 0.95rem;
}
.lp-founder-tag span {
  color: var(--text-light-muted);
  font-size: 0.85rem;
  margin-left: auto;
}

/* ─── PROCESS (white) ──────────────────────────────────────────────────── */
.lp-process {
  position: relative;
  padding: 80px 0;
  background: var(--white);
}
.lp-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.lp-process-line { display: none; }
.lp-step {
  background: var(--light-1);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.lp-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-step-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.lp-step-desc {
  color: var(--text-body);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .lp-process-flow { grid-template-columns: repeat(4, 1fr); }
  .lp-process-line {
    display: block;
    position: absolute;
    top: 46px; left: 60px; right: 60px;
    height: 2px;
    background: var(--light-3);
    transform-origin: left center;
    z-index: 0;
  }
  .lp-step { position: relative; z-index: 1; }
}

.lp-process-cta-row {
  text-align: center;
  margin-top: 40px;
}

/* ─── PROCESS V2 (inspired by paidadvertising.com) ───────────────────── */
.lp-process-v2 {
  position: relative;
  padding: 80px 0;
  background: var(--white);
}
.lp-process-v2-header {
  text-align: center;
  margin-bottom: 56px;
}
.lp-process-v2-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-process-v2-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.lp-process-v2-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.lp-process-v2-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-process-v2-step:hover .lp-process-v2-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(145,2,55,0.15);
}
.lp-process-v2-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.lp-process-v2-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}
.lp-process-v2-connector {
  display: flex;
  align-items: center;
  padding-top: 32px;
  flex-shrink: 0;
  width: 40px;
}
.lp-process-v2-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--light-3), var(--brand), var(--light-3));
  border-radius: 1px;
}

/* Process v2 mobile */
@media (max-width: 767px) {
  .lp-process-v2 { padding: 48px 0; }
  .lp-process-v2-header { margin-bottom: 32px; }
  .lp-process-v2-grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .lp-process-v2-step {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    background: var(--light-1);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 400px;
    gap: 16px;
  }
  .lp-process-v2-num {
    position: absolute;
    top: -8px;
    left: 16px;
    background: var(--white);
    padding: 0 6px;
    font-size: 0.7rem;
    margin-bottom: 0;
  }
  .lp-process-v2-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
  }
  .lp-process-v2-icon svg { width: 24px; height: 24px; }
  .lp-process-v2-desc { max-width: none; margin: 0; font-size: 0.82rem; }
  .lp-process-v2-name { font-size: 0.92rem; margin-bottom: 4px; }
  .lp-process-v2-connector { display: none; }
}

/* ─── PORTFOLIO (light gray) ───────────────────────────────────────────── */
.lp-showcase {
  position: relative;
  padding: 80px 0;
  background: var(--light-1);
}
.lp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.lp-showcase-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.lp-showcase-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.lp-showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lp-showcase-card:hover .lp-showcase-img img { transform: scale(1.05); }
.lp-showcase-info { padding: 16px 20px; }
.lp-showcase-info h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.lp-showcase-info span { font-size: 0.85rem; color: var(--text-muted); }

@media (min-width: 768px) {
  .lp-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-showcase-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Client logos */
.lp-clients-label {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.lp-clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.lp-logos-track {
  display: flex;
  gap: 36px;
  align-items: center;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.lp-logos-track img {
  height: 56px; width: auto;
  opacity: 1;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.lp-logos-track img:not([src$=".png"]) {
  border-radius: 4px;
}
.lp-logos-track img:hover { opacity: 0.8; }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TRANSFORMATION (before/after social proof) ──────────────────────── */
.lp-transformation {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}
.lp-transformation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.lp-transformation .lp-section-label {
  color: var(--brand);
}
.lp-transformation .lp-section-title {
  color: var(--text-light);
}
.lp-transformation .accent-serif {
  color: var(--white);
}

/* Transform grid: copy left, IG card right */
.lp-transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.lp-transform-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp-transform-copy .lp-section-label {
  margin-bottom: 12px;
}
.lp-transform-title {
  text-align: left;
  margin-bottom: 20px;
}
.lp-transform-desc {
  color: var(--text-light-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.lp-transform-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lp-transform-stat {
  text-align: center;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 120px;
  transition: border-color 0.3s, transform 0.3s;
}
.lp-transform-stat:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}
.lp-transform-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 4px;
}
.lp-transform-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light-muted);
  letter-spacing: 0.02em;
}
.lp-transform-client {
  color: var(--text-light-body);
  font-size: 0.9rem;
  line-height: 1.6;
}
.lp-transform-client strong {
  color: var(--text-light);
}
.lp-transform-link {
  display: inline-block;
  color: var(--brand);
  font-weight: 500;
  margin-left: 8px;
  transition: color 0.2s;
}
.lp-transform-link:hover {
  color: var(--brand-hover);
}

/* IG post card */
.lp-transform-card {
  display: block;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.3s;
  max-width: 420px;
  margin: 0 auto;
}
.lp-transform-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(145,2,55,0.3);
  border-color: rgba(145,2,55,0.4);
}
.lp-transform-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.lp-transform-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-3);
}
.lp-transform-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-transform-card-meta {
  flex: 1;
  min-width: 0;
}
.lp-transform-card-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}
.lp-transform-card-handle {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light-muted);
}
.lp-transform-card-ig {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.lp-transform-card:hover .lp-transform-card-ig {
  opacity: 1;
}
.lp-transform-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.lp-transform-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.lp-transform-card:hover .lp-transform-card-image img {
  transform: scale(1.03);
}
.lp-transform-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.lp-transform-card-engagement {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-light-muted);
}
.lp-transform-card-cta {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand);
  transition: color 0.2s;
}
.lp-transform-card:hover .lp-transform-card-cta {
  color: var(--brand-hover);
}

@media (min-width: 768px) {
  .lp-transform-grid {
    grid-template-columns: 1fr 380px;
    gap: 56px;
  }
  .lp-transform-stat-num {
    font-size: 2rem;
  }
  .lp-transform-stat {
    padding: 22px 28px;
  }
}
@media (min-width: 1024px) {
  .lp-transform-grid {
    grid-template-columns: 1fr 420px;
    gap: 72px;
  }
  .lp-transform-stat-num {
    font-size: 2.2rem;
  }
}

/* ─── REVIEWS (white + gradient) ───────────────────────────────────────── */
.lp-reviews {
  position: relative;
  padding: 80px 0 40px;
  background: var(--white);
  overflow: hidden;
}
.lp-reviews-header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.lp-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--light-1);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  width: fit-content;
  transition: box-shadow 0.3s;
}
.lp-google-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.lp-reviews-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.lp-reviews-rating { display: block; font-size: 0.8rem; color: var(--text-muted); }

@media (min-width: 768px) {
  .lp-reviews-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .lp-google-badge {
    margin-top: 16px;
  }
}

/* Review marquee */
.lp-reviews-marquee {
  overflow: hidden;
  padding-bottom: 40px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.lp-reviews-track {
  display: flex; gap: 20px;
  width: max-content;
  padding: 0 20px;
}
.lp-reviews-track--left { animation: marquee-scroll 50s linear infinite; }

.lp-review-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--light-1);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 24px;
}
.lp-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lp-review-top .lp-review-stars { margin-bottom: 0; }
.lp-review-g { flex-shrink: 0; opacity: 0.7; }
.lp-review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 12px; }
.lp-review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}
.lp-review-author { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lp-review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-3);
  color: var(--text-muted);
  font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-review-author strong { display: block; color: var(--text-dark); font-size: 0.9rem; }
.lp-review-author span { font-size: 0.75rem; color: var(--text-muted); }
.lp-review-source { font-size: 0.75rem; color: var(--text-muted); }

/* ─── FOUNDER ─────────────────────────────────────────────────────────── */

/* ─── FAQ (light gray + gradient) ──────────────────────────────────────── */
.lp-faq {
  position: relative;
  padding: 80px 0;
  background: var(--light-1);
}
.lp-faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.lp-faq-cta-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1A1A2E 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-faq-cta-card .lp-section-label { color: var(--brand); }
.lp-faq-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--white);
  line-height: 1.15;
}
.lp-faq-cta-sub {
  font-size: 1rem;
  color: var(--text-light-body);
  line-height: 1.5;
}
.lp-faq-cta-card .btn-primary { margin-top: 8px; width: fit-content; }
.lp-faq-list {
  display: flex; flex-direction: column; gap: 12px;
}
.lp-faq-item {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.lp-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.lp-faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none; border: none;
  color: var(--text-dark);
  font-size: 1rem; font-weight: 500;
  text-align: left; gap: 12px;
}
.lp-faq-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}
.lp-faq-item.open .lp-faq-chevron { transform: rotate(180deg); }
.lp-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.lp-faq-item.open .lp-faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.lp-faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .lp-faq-grid {
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .lp-faq-grid { grid-template-columns: 380px 1fr; }
}

/* ─── FINAL CTA (dark) ─────────────────────────────────────────────────── */
.lp-final-cta {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #0F0F14 0%, #0C0C0C 50%, #0A0A0E 100%);
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}
.lp-cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}
.lp-cta-content {
  position: relative; z-index: 1;
  margin-bottom: 40px;
}
.lp-final-cta .lp-section-title { color: var(--text-light); }
.lp-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--text-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lp-cta-sub {
  font-size: 1.05rem;
  color: var(--text-light-body);
  max-width: 540px;
  margin: 0 auto;
}
.lp-cta-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  bottom: 10%; right: 10%;
  background: radial-gradient(circle, rgba(145,2,55,0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}
.lp-calendar-wrap {
  position: relative; z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}
.lp-cta-trust-row {
  position: relative; z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.lp-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}
.lp-cta-trust-item svg { flex-shrink: 0; }

/* ─── FOMO POPUP ──────────────────────────────────────────────────────── */
.lp-popup-overlay {
  position: fixed; inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lp-popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.lp-popup {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s ease;
}
.lp-popup-overlay.visible .lp-popup {
  transform: scale(1) translateY(0);
}
.lp-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--light-2);
  color: var(--text-muted);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lp-popup-close:hover { background: var(--light-3); color: var(--text-dark); }
.lp-popup-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.lp-popup-title span { color: var(--brand); }
.lp-popup-sub {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 24px;
}
.lp-popup-cta { width: 100%; justify-content: center; }
.lp-popup-dismiss {
  display: block;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-popup-dismiss:hover { color: var(--text-dark); }

/* ─── COOKIE CONSENT BANNER ──────────────────────────────────────────── */
.lp-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lp-cookie-banner.visible {
  transform: translateY(0);
}
.lp-cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-cookie-text {
  font-size: 0.88rem;
  color: var(--text-light-body);
  flex: 1;
  min-width: 200px;
}
.lp-cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-cookie-link {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.lp-cookie-link:hover { color: var(--text-light); }
.lp-cookie-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lp-cookie-btn--accept {
  background: var(--brand);
  color: #fff;
}
.lp-cookie-btn--accept:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}
.lp-cookie-btn--decline {
  background: rgba(255,255,255,0.08);
  color: var(--text-light-muted);
  border: 1px solid rgba(255,255,255,0.12);
}
.lp-cookie-btn--decline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-light);
}
@media (max-width: 767px) {
  .lp-cookie-inner { flex-direction: column; text-align: center; gap: 12px; }
  .lp-cookie-text { min-width: auto; }
  .lp-cookie-actions { justify-content: center; }
}

/* ─── FOOTER (dark) ────────────────────────────────────────────────────── */
.lp-footer {
  padding: 48px 0 32px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  color: var(--text-light-body);
}
.lp-footer-logo { height: 32px; margin: 0 auto 16px; }
.lp-footer-contact {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}
.lp-footer-contact a:hover { color: var(--white); }
.lp-footer-sep { color: rgba(255,255,255,0.2); }
.lp-footer-links { margin-bottom: 12px; }
.lp-footer-links a { font-size: 0.85rem; color: var(--text-light-muted); transition: color 0.2s; }
.lp-footer-links a:hover { color: var(--brand); }
.lp-footer p:last-child { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── STICKY BAR (mobile) ──────────────────────────────────────────────── */
.lp-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--brand);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.lp-sticky-bar.visible { transform: translateY(0); }
.lp-sticky-bar span { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.btn-sticky {
  background: var(--brand);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-sticky:hover { background: var(--brand-hover); }

@media (min-width: 1024px) {
  .lp-sticky-bar { display: none; }
}

/* ─── MOBILE OVERRIDES ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .lp-hero { padding: 110px 0 48px; }
  .lp-hero-title { font-size: clamp(1.8rem, 7.5vw, 2.6rem); }
  .lp-hero-sub { font-size: 1rem; }
  .lp-hero-centered { gap: 18px; }
  .lp-hero-checks { gap: 8px; }
  .lp-hero-check { font-size: 0.88rem; }

  .lp-vsl, .lp-offer, .lp-process, .lp-process-v2, .lp-showcase, .lp-transformation, .lp-reviews, .lp-faq { padding: 48px 0; }
  .lp-results { padding: 28px 0; }
  .lp-section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 24px; }
  .container { padding: 0 16px; }

  /* Nav mobile */
  .lp-nav { padding: 14px 16px; }
  .lp-nav-logo { height: 32px; }
  .btn-nav { padding: 10px 18px; font-size: 0.85rem; }
  .lp-lang-btn { padding: 5px 10px; font-size: 0.75rem; }
  .nav-scrolled { padding: 10px 16px; }

  /* Buttons mobile */
  .btn-primary { padding: 14px 26px; font-size: 0.95rem; }

  /* VSL mobile */
  .lp-vsl .lp-section-title { font-size: clamp(1.3rem, 5vw, 1.8rem); margin-bottom: 20px; }
  .lp-vsl-play { width: 64px; height: 64px; }

  /* Offer mobile */
  .lp-offer-card { padding: 32px 24px 28px; }
  .lp-offer-card-amount { font-size: clamp(2.8rem, 10vw, 3.5rem); }
  .lp-offer-card-old { font-size: 1.2rem; }
  .lp-offer-card-new { font-size: 1.4rem; }
  .lp-offer-card-cta { padding: 16px 24px; font-size: 1rem; }
  .lp-offer-header { margin-bottom: 28px; }
  .lp-offer-showcase { gap: 16px; }

  /* Founders mobile */
  .lp-founders-section { padding: 56px 0; }
  .lp-founders-bio { font-size: 0.95rem; }
  .lp-founders-photo-accent { width: 80px; height: 80px; }

  /* Process mobile */
  .lp-process-flow { gap: 12px; }
  .lp-step { padding: 22px 20px; }
  .lp-step-num { width: 38px; height: 38px; font-size: 0.9rem; margin-bottom: 12px; }

  /* Transformation section mobile */
  .lp-transform-title { text-align: center; }
  .lp-transform-desc { text-align: center; margin-left: auto; margin-right: auto; font-size: 0.95rem; }
  .lp-transform-stats { justify-content: center; }
  .lp-transform-stat { min-width: 90px; padding: 14px 10px; }
  .lp-transform-stat-num { font-size: 1.4rem; }
  .lp-transform-card { max-width: 320px; }

  /* Reviews mobile */
  .lp-review-card { width: 290px; padding: 20px; }
  .lp-review-text { font-size: 0.9rem; }

  /* FAQ mobile */
  .lp-faq-cta-card { padding: 28px 24px; }
  .lp-faq-trigger { padding: 16px 18px; font-size: 0.92rem; }
  .lp-faq-answer { padding: 0 18px; }
  .lp-faq-item.open .lp-faq-answer { padding: 0 18px 16px; }

  /* Final CTA mobile */
  .lp-final-cta { padding: 64px 0 48px; }
  .lp-cta-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .lp-calendar-wrap { padding: 12px; }
  .lp-calendar-wrap iframe { min-height: 550px; }

  /* Popup mobile */
  .lp-popup { padding: 40px 24px 28px; }
  .lp-popup-title { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .lp-popup-sub { font-size: 0.88rem; margin-bottom: 20px; }

  /* Sticky bar mobile */
  .lp-sticky-bar { padding: 12px 16px; }
  .lp-sticky-bar span { font-size: 0.85rem; }
  .btn-sticky { padding: 9px 18px; font-size: 0.82rem; }

  /* Footer mobile */
  .lp-footer { padding: 36px 0 80px; }

  /* Clients top mobile */
  .lp-clients-top { padding: 24px 0; }
}
