/* ============================================================
   LANDING PAGE B2C — EconoClub USA
   Premium Health-Tech Design
   Scoped under .lp-b2c to avoid conflicts with site styles
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Landing Page Variables ───────────────────────────────── */
.lp-b2c {
  --lp-blue:        #1B4DFF;
  --lp-dark-blue:   #0D2B8C;
  --lp-green:       #00C896;
  --lp-green-hover: #00B386;
  --lp-gold:        #FFB800;
  --lp-red:         #FF4D6A;
  --lp-dark:        #080c1a;
  --lp-light:       #f5f7fb;
  --lp-white:       #ffffff;
  --lp-font-heading: 'DM Serif Display', Georgia, serif;
  --lp-font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  font-family: var(--lp-font-body);
  overflow-x: hidden;
}

/* ── Utility: Staggered reveal animation ─────────────────── */
@keyframes lp-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lp-scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes lp-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* ============================================================
   TOPBAR (.lp-topbar)
   ============================================================ */
.lp-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: linear-gradient(90deg, #060e2e 0%, var(--lp-dark-blue) 50%, #060e2e 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid rgba(27, 77, 255, 0.3);
}

.lp-topbar .lp-highlight {
  color: var(--lp-gold);
  font-weight: 700;
}

@keyframes lp-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.lp-topbar .lp-shimmer-text {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 1)   20%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.7) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lp-shimmer 4s ease-in-out infinite;
}

/* Shimmer should not affect the gold highlights */
.lp-topbar .lp-shimmer-text .lp-highlight {
  -webkit-text-fill-color: var(--lp-gold);
}

body.has-topbar {
  padding-top: calc(var(--lp-topbar-h, 44px) + 70px);
}

body.has-topbar .navbar {
  top: var(--lp-topbar-h, 44px);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1040;
}

/* ============================================================
   HERO (.lp-hero)
   ============================================================ */
.lp-hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 200, 150, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(27, 77, 255, 0.12) 0%, transparent 60%),
    linear-gradient(155deg, #060e2e 0%, var(--lp-dark-blue) 35%, var(--lp-blue) 100%);
  padding: 100px 0 80px;
  color: #ffffff;
  position: relative;
}

/* Subtle grid pattern overlay */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

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

.lp-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.lp-hero h1 {
  font-family: var(--lp-font-heading);
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.lp-subheadline {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.6;
}

.lp-pain-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.5;
}

.lp-checkmarks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.lp-checkmarks li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.4;
}

.lp-checkmarks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0, 200, 150, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-checkmarks li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 2px;
  color: var(--lp-green);
  font-weight: 700;
  font-size: 13px;
}

.lp-hero-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CTA Button (used everywhere) ──────────────────────────── */
.lp-btn-cta {
  background: linear-gradient(135deg, #00D4A0 0%, var(--lp-green) 50%, #00A87A 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow:
    0 4px 16px rgba(0, 200, 150, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  line-height: 1.2;
  font-family: var(--lp-font-body);
  position: relative;
  letter-spacing: 0.3px;
}

.lp-btn-cta:hover,
.lp-btn-cta:focus {
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(0, 200, 150, 0.45),
    0 4px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #00E0AC 0%, #00C896 50%, #00B386 100%);
  color: #ffffff;
  text-decoration: none;
}

.lp-btn-secondary {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--lp-font-body);
  transition: color 0.2s;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

.lp-btn-secondary:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.lp-trust-bar {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
  letter-spacing: 0.2px;
}

/* ── Price Card ─────────────────────────────────────────────── */
.lp-price-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  color: var(--text-900, #111827);
  position: sticky;
  top: 120px;
  border: 1px solid rgba(27, 77, 255, 0.08);
}

.lp-price-big {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--lp-dark-blue);
  line-height: 1;
  font-family: var(--lp-font-body);
}

.lp-price-unit {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-500, #6b7280);
}

.lp-price-sub {
  font-size: 0.9rem;
  color: var(--text-500, #6b7280);
  margin-bottom: 16px;
}

.lp-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-includes li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  position: relative;
  color: var(--text-700, #374151);
}

.lp-includes li:last-child {
  border-bottom: none;
}

.lp-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-green);
  font-weight: 700;
  font-size: 15px;
}

.lp-bonus-box {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border: 2px solid var(--lp-gold);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
  color: #92600a;
  animation: lp-pulse 3s ease-in-out infinite;
}

.lp-price-footer {
  font-size: 13px;
  color: var(--text-500, #6b7280);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ============================================================
   SECTION 2 — PROBLEM (.lp-problem)
   Deep navy with texture — NOT flat black
   ============================================================ */
.lp-problem {
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, rgba(27, 77, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(255, 77, 106, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #060b1f 0%, #0c1333 40%, #0f1840 100%);
  color: #ffffff;
  padding: var(--section-py-lg, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay for depth */
.lp-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

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

.lp-eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.lp-eyebrow--red {
  color: var(--lp-red);
}

.lp-eyebrow--green {
  color: var(--lp-green);
}

.lp-eyebrow--blue {
  color: var(--lp-blue);
}

.lp-section-title {
  font-family: var(--lp-font-heading);
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  margin-bottom: 48px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* Override global heading color in dark sections */
.lp-problem .lp-section-title,
.lp-problem h2,
.lp-problem h3 {
  color: #ffffff !important;
}

.lp-pain-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  backdrop-filter: blur(4px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Glow accent on hover */
.lp-pain-card:hover {
  border-color: rgba(255, 77, 106, 0.25);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lp-pain-emoji {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-red);
}

.lp-pain-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--lp-font-body);
}

.lp-pain-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

.lp-pain-stat {
  display: inline-block;
  background: rgba(255, 77, 106, 0.12);
  color: var(--lp-red);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  margin-top: 12px;
  border: 1px solid rgba(255, 77, 106, 0.2);
  letter-spacing: 0.3px;
}

.lp-transition-text {
  text-align: center;
  max-width: 600px;
  margin: 56px auto 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.lp-transition-text strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
  font-family: var(--lp-font-heading);
}

/* ============================================================
   SECTION 3 — SOLUTION (.lp-solution)
   ============================================================ */
.lp-solution {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(27, 77, 255, 0.04) 0%, transparent 60%),
    #ffffff;
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-solution .lead {
  color: var(--text-500, #6b7280);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lp-pillar-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.lp-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.lp-pillar-card.green-top {
  border-top: 4px solid var(--lp-green);
}
.lp-pillar-card.green-top:hover {
  box-shadow: 0 16px 40px rgba(0, 200, 150, 0.12);
}

.lp-pillar-card.blue-top {
  border-top: 4px solid var(--lp-blue);
}
.lp-pillar-card.blue-top:hover {
  box-shadow: 0 16px 40px rgba(27, 77, 255, 0.1);
}

.lp-pillar-card.gold-top {
  border-top: 4px solid var(--lp-gold);
}
.lp-pillar-card.gold-top:hover {
  box-shadow: 0 16px 40px rgba(255, 184, 0, 0.1);
}

.lp-pillar-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-900, #111827);
}

.lp-pillar-card .lp-pillar-emoji {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lp-light);
  color: var(--lp-blue);
}

.lp-pillar-card.green-top .lp-pillar-emoji { color: var(--lp-green); }
.lp-pillar-card.gold-top .lp-pillar-emoji { color: var(--lp-gold); }

.lp-pillar-card p {
  color: var(--text-700, #374151);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   SECTION 4 — HOW IT WORKS (.lp-how-it-works)
   ============================================================ */
.lp-how-it-works {
  background: var(--lp-light);
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.lp-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-dark-blue) 100%);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 8px 24px rgba(13, 43, 140, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lp-step-emoji {
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(27, 77, 255, 0.08);
  color: var(--lp-blue);
  margin-left: auto;
  margin-right: auto;
}

.lp-step h4 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-900, #111827);
}

.lp-step p {
  color: var(--text-500, #6b7280);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Connector lines between steps (desktop) */
@media (min-width: 992px) {
  .lp-step::after {
    content: '';
    position: absolute;
    top: 36px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-blue), rgba(27, 77, 255, 0.2));
    z-index: 0;
    border-radius: 2px;
  }

  .lp-step:last-child::after {
    display: none;
  }
}

.lp-reinforcement {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
  color: var(--text-700, #374151);
  line-height: 1.65;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ============================================================
   SECTION 5 — BENEFITS (.lp-benefits)
   ============================================================ */
.lp-benefits {
  background: #ffffff;
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-benefit-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Subtle top gradient accent on hover */
.lp-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(27, 77, 255, 0.15);
}

.lp-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-blue), var(--lp-green));
  opacity: 0;
  transition: opacity 0.35s;
}

.lp-benefit-card:hover::before {
  opacity: 1;
}

.lp-benefit-emoji {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27, 77, 255, 0.08), rgba(0, 200, 150, 0.06));
  color: var(--lp-blue);
  margin-left: auto;
  margin-right: auto;
}

.lp-benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-900, #111827);
}

.lp-benefit-card p {
  font-size: 14px;
  color: var(--text-500, #6b7280);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============================================================
   SECTION 6 — SOCIAL PROOF (.lp-social-proof)
   ============================================================ */
.lp-social-proof {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(27, 77, 255, 0.03) 0%, transparent 60%),
    var(--lp-light);
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-stats-bar {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  padding: 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-stat {
  text-align: center;
}

.lp-stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--lp-dark-blue);
  line-height: 1;
  font-family: var(--lp-font-body);
}

.lp-stat-label {
  font-size: 13px;
  color: var(--text-500, #6b7280);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.lp-testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.lp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Decorative quote mark */
.lp-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: rgba(27, 77, 255, 0.06);
  font-family: var(--lp-font-heading);
  line-height: 1;
  pointer-events: none;
}

.lp-stars {
  color: var(--lp-gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
  display: flex;
  gap: 3px;
}

.lp-testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-700, #374151);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 18px;
  border: none;
  padding: 0;
}

.lp-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-900, #111827);
}

.lp-location {
  font-size: 13px;
  color: var(--text-500, #6b7280);
}

/* ============================================================
   SECTION 7 — COMPARISON (.lp-comparison)
   ============================================================ */
.lp-comparison {
  background: #ffffff;
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.lp-comparison-table thead {
  background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f8 100%);
}

.lp-comparison-table th {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  color: var(--text-500, #6b7280);
}

.lp-comparison-table th:first-child {
  /* Row label header — empty */
  background: transparent;
}

.lp-comparison-table th:nth-child(2) {
  background: var(--lp-dark-blue);
  color: #ffffff;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.lp-comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: var(--text-700, #374151);
}

.lp-comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-900, #111827);
  font-size: 14px;
}

.lp-comparison-table td:nth-child(2) {
  background: rgba(27, 77, 255, 0.03);
  font-weight: 600;
  color: var(--lp-dark-blue);
}

.lp-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.lp-comparison-table tbody tr:hover td {
  background-color: rgba(27, 77, 255, 0.02);
}

.lp-comparison-table tbody tr:hover td:nth-child(2) {
  background-color: rgba(27, 77, 255, 0.06);
}

.lp-economy-box {
  background: linear-gradient(135deg, var(--lp-light) 0%, #e8edf8 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 36px;
  border: 1px solid rgba(27, 77, 255, 0.08);
}

.lp-economy-box p {
  margin-bottom: 8px;
}

.lp-savings {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lp-green);
  font-family: var(--lp-font-body);
}

/* ============================================================
   SECTION 8 — GUARANTEE (.lp-guarantee)
   ============================================================ */
.lp-guarantee {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 200, 150, 0.06) 0%, transparent 60%),
    #f0fdf4;
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 2px solid var(--lp-green);
  border-radius: 16px;
  padding: 20px 36px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lp-dark-blue);
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0, 200, 150, 0.12);
}

.lp-guarantee p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-700, #374151);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lp-guarantee .lp-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-900, #111827);
  margin-top: 20px;
  font-family: var(--lp-font-heading);
}

.lp-security-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-500, #6b7280);
  margin-top: 32px;
  font-weight: 500;
}

.lp-security-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-security-badges span i {
  font-size: 1rem;
  opacity: 0.7;
}

/* Icon in eyebrow labels */
.lp-eyebrow i {
  margin-right: 4px;
}

/* Icon in topbar/bonus */
.lp-topbar i,
.lp-bonus-box i {
  margin-right: 4px;
}

/* Icon in urgency */
.lp-urgency i {
  margin-right: 4px;
}

/* Trust bar stars */
.lp-trust-bar i.fa-star {
  color: var(--lp-gold);
  font-size: 0.75rem;
}

/* ============================================================
   SECTION 9 — FINAL CTA (.lp-final-cta)
   ============================================================ */
.lp-final-cta {
  background:
    radial-gradient(ellipse 60% 50% at 30% 80%, rgba(0, 200, 150, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(27, 77, 255, 0.1) 0%, transparent 60%),
    linear-gradient(155deg, #060e2e 0%, var(--lp-dark-blue) 40%, var(--lp-blue) 100%);
  color: #ffffff;
  padding: var(--section-py-lg, 6rem) 0;
  position: relative;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.lp-final-cta .container {
  position: relative;
  z-index: 1;
}

.lp-offer-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  color: var(--text-900, #111827);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  margin: 36px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-offer-label {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--lp-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(27, 77, 255, 0.1);
}

.lp-offer-line {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
}

.lp-offer-line:last-of-type {
  border-bottom: none;
}

.lp-offer-line strong {
  color: var(--lp-dark-blue);
  font-weight: 700;
}

.lp-urgency {
  color: var(--lp-gold);
  font-weight: 700;
  font-size: 15px;
  margin-top: 24px;
}

.lp-final-cta .lp-security-badges {
  color: rgba(255, 255, 255, 0.5);
}

.lp-final-cta .lp-checkmarks li {
  color: rgba(255, 255, 255, 0.9);
}

.lp-final-cta .lp-checkmarks li::before {
  background: rgba(0, 200, 150, 0.15);
}

.lp-final-cta .lp-section-title {
  color: #ffffff;
}

.lp-final-cta .lead {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SECTION 10 — FAQ (.lp-faq)
   ============================================================ */
.lp-faq {
  background: var(--lp-light);
  padding: var(--section-py-lg, 6rem) 0;
}

.lp-faq .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}

.lp-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 4px 16px rgba(27, 77, 255, 0.06);
  border-color: rgba(27, 77, 255, 0.12) !important;
}

.lp-faq .accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-900, #111827);
  background-color: #ffffff;
  padding: 18px 24px;
  box-shadow: none;
  font-family: var(--lp-font-body);
  line-height: 1.4;
}

.lp-faq .accordion-button:not(.collapsed) {
  color: var(--lp-blue);
  background-color: rgba(27, 77, 255, 0.03);
  box-shadow: none;
}

.lp-faq .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.lp-faq .accordion-button::after {
  filter: none;
  transition: transform 0.3s ease;
}

.lp-faq .accordion-button:not(.collapsed)::after {
  filter: invert(26%) sepia(98%) saturate(3164%) hue-rotate(219deg) brightness(100%) contrast(104%);
}

.lp-faq .accordion-body {
  font-size: 15px;
  color: var(--text-700, #374151);
  line-height: 1.7;
  padding: 0 24px 20px;
}

/* ============================================================
   FLOATING CTA (.lp-floating-cta)
   ============================================================ */
.lp-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 14px 20px;
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-floating-cta.visible {
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — ≤991.98px (Tablet)
   ============================================================ */
@media (max-width: 991.98px) {
  .lp-hero .row {
    flex-direction: column;
  }

  .lp-price-card {
    position: static;
    margin-top: 32px;
  }

  .lp-stats-bar {
    gap: 32px;
    padding: 24px;
  }
}

/* ============================================================
   RESPONSIVE — ≤767.98px (Mobile)
   ============================================================ */
@media (max-width: 767.98px) {
  .lp-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .lp-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero-cta .lp-btn-cta,
  .lp-hero-cta .lp-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .lp-pain-card,
  .lp-pillar-card,
  .lp-benefit-card {
    height: auto;
  }

  .lp-stats-bar {
    gap: 20px;
  }

  .lp-stat {
    flex: 0 0 calc(50% - 10px);
    min-width: 120px;
  }

  .lp-step::after {
    display: none;
  }

  .lp-floating-cta .lp-btn-cta {
    width: 100%;
    text-align: center;
  }

  .lp-testimonial-card {
    height: auto;
  }

  .lp-section-title br {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — ≤575.98px (Small Mobile)
   ============================================================ */
@media (max-width: 575.98px) {
  .lp-hero {
    padding: 72px 0 48px;
  }

  .lp-b2c .lp-section-title {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
    margin-bottom: 32px;
  }

  .lp-price-big {
    font-size: 2.5rem;
  }

  .lp-price-card {
    padding: 24px 20px;
  }

  .lp-stat-number {
    font-size: 2rem;
  }

  .lp-guarantee-badge {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .lp-offer-box {
    padding: 24px 20px;
  }

  .lp-security-badges {
    gap: 12px;
    font-size: 12px;
  }

  .lp-stats-bar {
    gap: 12px;
    padding: 20px;
  }

  .lp-stat {
    flex: 0 0 calc(50% - 6px);
  }

  .lp-topbar {
    font-size: 12px;
    padding: 8px 12px;
  }

  .lp-btn-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .lp-b2c *,
  .lp-b2c *::before,
  .lp-b2c *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lp-topbar .lp-shimmer-text {
    animation: none;
    -webkit-text-fill-color: #ffffff;
    background: none;
  }

  .lp-floating-cta {
    transition: none;
  }
}
