/*
 * Paddle Party — Google Ads Landing Page
 * Self-contained styles for /join/{city-slug}/ pages.
 * Uses Space Grotesk (display) + DM Sans (body).
 * Version: 1.3.14
 */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --lp-green:       #16a34a;
  --lp-green-dark:  #15803d;
  --lp-green-light: #dcfce7;
  --lp-green-50:    #f0fdf4;
  --lp-dark:        #0f172a;
  --lp-navy:        #1e293b;
  --lp-text:        #1e293b;
  --lp-text-2:      #475569;
  --lp-text-3:      #94a3b8;
  --lp-surface:     #ffffff;
  --lp-surface-2:   #f8fafc;
  --lp-border:      #e2e8f0;
  --lp-yellow:      #facc15;
  --lp-red:         #ef4444;
  --lp-fd:          'Space Grotesk', sans-serif;
  --lp-fb:          'DM Sans', sans-serif;
}

/* ── Base reset (landing page only) ──────────────────────────── */
/*
 * SPECIFICITY NOTE: `body.pp-landing-page *` is 0,1,1 — higher than our
 * class selectors (0,1,0). We ONLY set box-sizing here, never margin/padding,
 * or it would strip all our layout spacing. Each class sets its own spacing.
 *
 * Element resets (h1, p, a, ul) also use 0,1,1 which beats class-only rules
 * (0,1,0) but LOSES to class+element rules (0,1,1 = tie, last-rule wins, or
 * 0,2,1 if we use two classes). We only reset properties our classes DON'T
 * override at the element level, so this is safe.
 */
body.pp-landing-page {
  font-family: var(--lp-fb);
  color: var(--lp-text);
  background: var(--lp-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
/* box-sizing only — no margin/padding in wildcard */
body.pp-landing-page * { box-sizing: border-box; }

/* ── NAV ──────────────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-nav-logo img { height: 32px; display: block; }
.lp-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lp-green); color: white !important;
  font-family: var(--lp-fd); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 8px;
  text-decoration: none; transition: background 0.2s;
}
.lp-nav-cta:hover { background: var(--lp-green-dark); }

/* ── HERO ─────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 120px 24px 72px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  color: white; overflow: hidden; text-align: center;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(22,163,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(250,204,21,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.lp-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

/* Urgency bar — hidden by default, JS shows it when ≤3 days */
.lp-urgency-bar {
  display: none;
  align-items: center; gap: 8px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
  font-family: var(--lp-fd); letter-spacing: 0.02em;
  animation: lp-pulse-glow 2s ease-in-out infinite;
  justify-content: center;
}
.lp-urgency-bar.visible { display: inline-flex; }
@keyframes lp-pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.lp-urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ef4444;
  animation: lp-blink 1.5s ease-in-out infinite;
}
@keyframes lp-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.lp-hero h1 {
  font-family: var(--lp-fd);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 16px;
  color: white;
}
.lp-hero h1 .lp-hl { color: var(--lp-yellow); }
.lp-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 8px;
}
.lp-hero-dates {
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-family: var(--lp-fd); font-weight: 500;
}
.lp-hero-dates strong { color: rgba(255,255,255,0.8); }
.lp-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lp-green); color: white !important;
  font-family: var(--lp-fd); font-weight: 700; font-size: 18px;
  padding: 16px 36px; border-radius: 12px;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(22,163,74,0.35);
}
.lp-hero-cta:hover {
  background: var(--lp-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
}

/* Hero testimonial */
.lp-hero-quote { margin-top: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.lp-hero-quote-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  font-style: italic; line-height: 1.55; margin-bottom: 6px;
}
.lp-hero-quote-author {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  font-family: var(--lp-fd); font-weight: 500;
}
.lp-hero-quote-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 16px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  font-family: var(--lp-fd); font-weight: 500;
}
.lp-hero-quote-stats span { opacity: 0.5; }

/* ── SECTIONS (shared) ───────────────────────────────────────── */
.lp-section { padding: 80px 24px; max-width: 900px; margin: 0 auto; }
.lp-section-wrap-alt { background: var(--lp-surface-2); }
.lp-section-badge {
  display: inline-block;
  font-family: var(--lp-fd); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lp-green); margin-bottom: 12px;
}
.lp-section-title {
  font-family: var(--lp-fd);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--lp-text); margin-bottom: 12px; line-height: 1.2;
}
.lp-section-desc {
  font-size: 1.05rem; color: var(--lp-text-2);
  line-height: 1.6; margin-bottom: 40px; max-width: 600px;
}

/* ── STEPS (How It Works) ────────────────────────────────────── */
.lp-steps { display: flex; flex-direction: column; }
.lp-step { position: relative; padding-bottom: 40px; }
.lp-step:last-child { padding-bottom: 0; }
.lp-step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.lp-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lp-green); color: white;
  font-family: var(--lp-fd); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(22,163,74,0.25);
}
.lp-step-title { font-family: var(--lp-fd); font-weight: 700; font-size: 1.15rem; color: var(--lp-text); margin: 0; }
.lp-step-desc { font-size: 0.95rem; color: var(--lp-text-2); line-height: 1.6; margin-left: 60px; }
.lp-step-line {
  position: absolute; left: 22px; top: 54px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--lp-green), var(--lp-border));
}
.lp-step:last-child .lp-step-line { display: none; }

/* ── TIMELINE ─────────────────────────────────────────────────── */
.lp-timeline-wrap { padding: 80px 24px; max-width: 720px; margin: 0 auto; }
.lp-timeline { position: relative; padding-left: 32px; }
.lp-timeline::before {
  content: ''; position: absolute;
  left: 11px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--lp-green), var(--lp-green-light), var(--lp-yellow));
}
.lp-tl-item { position: relative; padding-bottom: 28px; }
.lp-tl-item:last-child { padding-bottom: 0; }
.lp-tl-dot {
  position: absolute; left: -32px; top: 3px;
  width: 24px; height: 24px; border-radius: 50%;
  background: white; border: 3px solid var(--lp-green);
  display: flex; align-items: center; justify-content: center;
}
.lp-tl-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-green); }
.lp-tl-item.lp-tl-setup .lp-tl-dot  { border-color: var(--lp-text-3); background: var(--lp-surface-2); }
.lp-tl-item.lp-tl-setup .lp-tl-dot-inner { background: var(--lp-text-3); }
.lp-tl-item.lp-tl-playoffs .lp-tl-dot { border-color: var(--lp-yellow); background: var(--lp-yellow); }
.lp-tl-item.lp-tl-playoffs .lp-tl-dot-inner { background: var(--lp-dark); }
.lp-tl-item.lp-tl-finals .lp-tl-dot {
  border-color: var(--lp-yellow); background: var(--lp-yellow);
  width: 28px; height: 28px; left: -34px;
}
.lp-tl-item.lp-tl-finals .lp-tl-dot-inner { background: var(--lp-dark); width: 10px; height: 10px; }
.lp-tl-date { font-family: var(--lp-fd); font-weight: 600; font-size: 0.85rem; color: var(--lp-text-3); margin-bottom: 2px; }
.lp-tl-title { font-family: var(--lp-fd); font-weight: 700; font-size: 1rem; margin-bottom: 2px; color: var(--lp-text); }
.lp-tl-desc { font-size: 0.85rem; color: var(--lp-text-2); line-height: 1.5; }
.lp-tl-highlight {
  display: inline-block;
  background: var(--lp-green-light); color: var(--lp-green-dark);
  font-family: var(--lp-fd); font-weight: 600; font-size: 0.75rem;
  padding: 2px 8px; border-radius: 4px; margin-top: 4px;
}
.lp-tl-item.lp-tl-playoffs .lp-tl-highlight,
.lp-tl-item.lp-tl-finals   .lp-tl-highlight { background: rgba(250,204,21,0.2); color: #92400e; }

/* ── FEATURES GRID ───────────────────────────────────────────── */
.lp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.lp-feature-card {
  background: white; border: 1px solid var(--lp-border);
  border-radius: 12px; padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-feature-card:hover { border-color: var(--lp-green); box-shadow: 0 4px 16px rgba(22,163,74,0.08); }
.lp-feature-card.lp-highlighted { border-color: var(--lp-green); background: var(--lp-green-50); }
.lp-feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--lp-green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.lp-feature-card.lp-highlighted .lp-feature-icon { background: rgba(22,163,74,0.15); }
.lp-feature-name { font-family: var(--lp-fd); font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; color: var(--lp-text); }
.lp-feature-desc { font-size: 0.85rem; color: var(--lp-text-2); line-height: 1.5; }
.lp-feature-tag {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 600; font-family: var(--lp-fd);
  color: var(--lp-green-dark); background: var(--lp-green-light);
  padding: 2px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ── REGISTRATION ────────────────────────────────────────────── */
.lp-reg-section { padding: 80px 24px; max-width: 680px; margin: 0 auto; text-align: center; }
.lp-price-display { margin-bottom: 40px; }
.lp-price-amount { font-family: var(--lp-fd); font-size: 3.5rem; font-weight: 700; color: var(--lp-text); line-height: 1; }
.lp-price-amount .lp-dollar { font-size: 1.8rem; vertical-align: top; margin-right: 2px; color: var(--lp-text-2); }
.lp-price-period { font-size: 0.9rem; color: var(--lp-text-2); margin-top: 4px; }
.lp-price-reframe { font-size: 0.8rem; color: var(--lp-green-dark); font-weight: 600; margin-top: 4px; font-family: var(--lp-fd); }

.lp-division-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; margin-bottom: 16px; }
.lp-division-card {
  background: white; border: 2px solid var(--lp-border);
  border-radius: 12px; padding: 20px;
  cursor: pointer; transition: all 0.2s; position: relative;
}
.lp-division-card:hover { border-color: var(--lp-green); box-shadow: 0 2px 12px rgba(22,163,74,0.1); }
.lp-division-card.lp-selected { border-color: var(--lp-green); background: var(--lp-green-50); box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }
.lp-div-check {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lp-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: white; transition: background 0.2s;
}
.lp-division-card.lp-selected .lp-div-check { background: var(--lp-green); }
.lp-div-name { font-family: var(--lp-fd); font-weight: 700; font-size: 1rem; margin-bottom: 4px; padding-right: 30px; color: var(--lp-text); }
.lp-div-desc { font-size: 0.82rem; color: var(--lp-text-2); line-height: 1.5; }
.lp-div-meta { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.lp-div-exp { font-size: 0.75rem; color: var(--lp-text-3); font-family: var(--lp-fd); font-weight: 500; font-style: italic; }
.lp-div-dupr { font-size: 0.7rem; color: var(--lp-text-3); font-family: var(--lp-fd); font-weight: 600; background: var(--lp-surface-2); padding: 2px 8px; border-radius: 4px; white-space: nowrap; }

.lp-division-disclaimer { font-size: 0.8rem; color: var(--lp-text-3); line-height: 1.5; margin-bottom: 32px; text-align: center; }
.lp-division-disclaimer strong { color: var(--lp-text-2); }

.lp-reg-form { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease; margin-top: 0; }
.lp-reg-form.visible { max-height: 500px; opacity: 1; margin-top: 8px; }
.lp-reg-form-inner {
  background: white; border: 2px solid var(--lp-green);
  border-radius: 14px; padding: 28px 24px; text-align: left;
  box-shadow: 0 8px 32px rgba(22,163,74,0.08);
}

.lp-toggle-row { display: flex; align-items: center; gap: 4px; margin-bottom: 20px; background: var(--lp-surface-2); border-radius: 8px; padding: 4px; }
.lp-toggle-btn { flex: 1; padding: 10px 16px; border: none; border-radius: 6px; font-family: var(--lp-fd); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; background: transparent; color: var(--lp-text-2); }
.lp-toggle-btn.lp-active { background: white; color: var(--lp-text); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.lp-toggle-price { font-weight: 400; color: var(--lp-text-3); margin-left: 4px; }

.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.lp-form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--lp-text-2); margin-bottom: 4px; font-family: var(--lp-fd); }
.lp-form-field input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--lp-border); border-radius: 8px;
  font-size: 15px; font-family: var(--lp-fb);
  color: var(--lp-text); transition: border-color 0.2s; outline: none;
}
.lp-form-field input:focus { border-color: var(--lp-green); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.lp-form-field input::placeholder { color: var(--lp-text-3); }

.lp-discount-row { margin-bottom: 14px; }
.lp-discount-row label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--lp-text-2); margin-bottom: 6px; font-family: var(--lp-fd); }
.lp-discount-input-wrap { display: flex; gap: 8px; }
.lp-discount-input-wrap input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--lp-border); border-radius: 8px; font-size: 14px; font-family: var(--lp-fb); color: var(--lp-text); outline: none; transition: border-color 0.2s; letter-spacing: 0.05em; }
.lp-discount-input-wrap input:focus { border-color: var(--lp-green); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.lp-discount-input-wrap input::placeholder { color: var(--lp-text-3); letter-spacing: 0; }
.lp-discount-input-wrap button { padding: 0 14px; height: 42px; background: var(--lp-green); color: #fff; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; font-family: var(--lp-fd); cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background 0.2s; }
.lp-discount-input-wrap button:hover { background: var(--lp-green-dark); }
.lp-discount-input-wrap button:disabled { opacity: 0.6; cursor: not-allowed; }

.lp-form-submit {
  display: block; width: 100%; padding: 14px; border: none;
  border-radius: 10px; background: var(--lp-green); color: white;
  font-family: var(--lp-fd); font-weight: 700; font-size: 16px;
  cursor: pointer; transition: all 0.25s; margin-top: 4px;
}
.lp-form-submit:hover { background: var(--lp-green-dark); transform: translateY(-1px); }
.lp-form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.lp-form-footer { text-align: center; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.lp-form-team-note { font-size: 0.8rem; color: var(--lp-green-dark); font-weight: 500; display: none; }
.lp-form-team-note.visible { display: block; }
.lp-form-refund { font-size: 0.8rem; color: var(--lp-text-3); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ── BONUS SECTION ───────────────────────────────────────────── */
.lp-bonus-section { padding: 0 24px 80px; max-width: 680px; margin: 0 auto; }
.lp-bonus-title { font-family: var(--lp-fd); font-weight: 700; font-size: 1.1rem; text-align: center; margin-bottom: 20px; color: var(--lp-text); }
.lp-bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-bonus-card { display: flex; gap: 12px; padding: 16px; background: var(--lp-surface-2); border: 1px solid var(--lp-border); border-radius: 10px; }
.lp-bonus-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--lp-green-light); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.lp-bonus-label { font-family: var(--lp-fd); font-weight: 600; font-size: 0.85rem; margin-bottom: 2px; color: var(--lp-text); }
.lp-bonus-desc { font-size: 0.78rem; color: var(--lp-text-2); line-height: 1.45; }
.lp-bonus-value { font-size: 0.7rem; color: var(--lp-green-dark); font-weight: 600; font-family: var(--lp-fd); margin-top: 3px; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.lp-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-testimonial-card { background: white; border: 1px solid var(--lp-border); border-radius: 14px; padding: 28px; }
.lp-testimonial-stars { color: var(--lp-yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.lp-testimonial-text { font-size: 0.95rem; line-height: 1.65; color: var(--lp-text); margin-bottom: 18px; font-style: italic; }
.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lp-green-light); color: var(--lp-green-dark); font-family: var(--lp-fd); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--lp-text); }
.lp-testimonial-meta { font-size: 0.8rem; color: var(--lp-text-3); }

/* ── APP SECTION ─────────────────────────────────────────────── */
.lp-app-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lp-app-features-list { display: flex; flex-direction: column; gap: 20px; }
.lp-app-feature-item { display: flex; gap: 14px; }
.lp-app-feature-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--lp-green-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.lp-app-feature-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; color: var(--lp-text); }
.lp-app-feature-desc { font-size: 0.85rem; color: var(--lp-text-2); line-height: 1.5; }
.lp-iphone-frame {
  position: relative;
  width: 260px;
  background: #111;
  border-radius: 52px;
  padding: 14px;
  margin: 0 auto;
  box-shadow:
    inset 0 0 0 2px #333,
    0 0 0 1px #222,
    0 25px 60px rgba(0,0,0,0.35),
    0 8px 24px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
/* Power button */
.lp-iphone-frame::before {
  content: '';
  position: absolute;
  right: -3px; top: 140px;
  width: 3px; height: 70px;
  background: #333; border-radius: 0 3px 3px 0;
}
/* Volume buttons */
.lp-iphone-frame::after {
  content: '';
  position: absolute;
  left: -3px; top: 110px;
  width: 3px; height: 40px;
  background: #333; border-radius: 3px 0 0 3px;
  box-shadow: 0 56px 0 #333;
}
.lp-iphone-dynamic-island {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 28px;
  background: #000; border-radius: 20px;
  z-index: 2;
}
.lp-iphone-screen-img {
  width: 100%; display: block;
  border-radius: 40px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item { border-bottom: 1px solid var(--lp-border); }
.lp-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--lp-fd); font-weight: 600; font-size: 1rem; color: var(--lp-text); transition: color 0.2s; }
.lp-faq-question:hover { color: var(--lp-green); }
.lp-faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--lp-surface-2); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--lp-text-3); flex-shrink: 0; margin-left: 16px; transition: transform 0.3s, background 0.2s; }
.lp-faq-item.lp-open .lp-faq-toggle { transform: rotate(45deg); background: var(--lp-green-light); color: var(--lp-green); }
.lp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; }
.lp-faq-item.lp-open .lp-faq-answer { max-height: 400px; }
.lp-faq-answer-inner { padding: 0 0 20px; font-size: 0.95rem; color: var(--lp-text-2); line-height: 1.65; }
.lp-faq-answer-inner a { color: var(--lp-green); text-decoration: underline; }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.lp-final-cta { text-align: center; padding: 80px 24px; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); color: white; position: relative; overflow: hidden; }
.lp-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(22,163,74,0.12) 0%, transparent 70%); }
.lp-final-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.lp-final-cta h2 { font-family: var(--lp-fd); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 12px; color: white; }
.lp-final-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }
.lp-final-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--lp-green); color: white !important; font-family: var(--lp-fd); font-weight: 700; font-size: 18px; padding: 16px 40px; border-radius: 12px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 24px rgba(22,163,74,0.35); }
.lp-final-cta-btn:hover { background: var(--lp-green-dark); transform: translateY(-2px); }
.lp-final-cta-sub { margin-top: 14px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.lp-final-cta-sub span { margin: 0 8px; opacity: 0.4; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.lp-footer { text-align: center; padding: 32px 24px; background: var(--lp-dark); color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.lp-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.lp-footer a:hover { color: white; }
.lp-footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; }

/* ── STICKY BAR — desktop only ───────────────────────────────── */
.lp-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: rgba(15,23,42,0.97); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 24px; display: none; align-items: center; justify-content: center; gap: 16px; transform: translateY(100%); transition: transform 0.35s ease; }
.lp-sticky-bar.lp-visible { transform: translateY(0); }
.lp-sticky-bar-text { font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--lp-fd); font-weight: 500; }
.lp-sticky-bar-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--lp-green); color: white !important; font-family: var(--lp-fd); font-weight: 700; font-size: 15px; padding: 12px 28px; border-radius: 10px; text-decoration: none; transition: background 0.2s; }
.lp-sticky-bar-cta:hover { background: var(--lp-green-dark); }
@media (min-width: 769px) { .lp-sticky-bar { display: flex; } }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-app-section { grid-template-columns: 1fr; }
  .lp-iphone-frame { order: -1; width: 220px; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
  .lp-division-grid { grid-template-columns: 1fr; }
  .lp-bonus-grid { grid-template-columns: 1fr; }
  .lp-form-row { grid-template-columns: 1fr; }
}

/* ── WP admin bar offset ─────────────────────────────────────── */
.admin-bar .lp-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .lp-nav { top: 46px; } }
