/* ───────────────────────────────────────────────────────────
   landing-page.css — Shared styles for /lp/* campaign LPs
   Loads after tokens.css + typography.css. Self-contained
   layout: compact header, hero+form split, trust strip,
   3-card sections, sticky mobile bottom bar, compact footer.
   ─────────────────────────────────────────────────────────── */

/* ── Reset specifics for LP context ─────────────────────────── */
.lp-body { background: var(--color-secondary); color: var(--color-text-primary); }
.lp-body a { color: var(--color-accent); }

/* ── Compact non-clickable header ───────────────────────────── */
.lp-header {
  background: var(--color-primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-brand { display: flex; align-items: center; gap: 10px; color: var(--color-text-light); text-decoration: none; pointer-events: none; }
.lp-brand-mark { color: var(--color-accent); font-size: 20px; }
.lp-brand-text { display: flex; flex-direction: column; line-height: 1; }
.lp-brand-name { font-family: var(--font-heading); font-size: 18px; font-weight: 600; letter-spacing: 0.08em; color: var(--color-text-light); }
.lp-brand-sub { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.18em; color: var(--color-accent); margin-top: 2px; }
.lp-header-phone {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-header-phone::before { content: "📞"; font-size: 13px; }
.lp-header-phone:hover { color: var(--color-accent); }

/* ── Hero ──────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  background: var(--color-primary);
  color: var(--color-text-light);
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.40;
  z-index: 0;
}
.lp-hero-bg-pic { position: absolute; inset: 0; z-index: 0; }
.lp-hero-bg-pic img { width: 100%; height: 100%; object-fit: cover; opacity: 0.40; display: block; }
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,0.85) 0%, rgba(26,23,20,0.50) 100%);
  z-index: 1;
}
.lp-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1.2fr 1fr; gap: 56px; padding: 72px 24px 80px; align-items: start; }
}

.lp-hero-copy { max-width: 640px; }
.lp-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
}
.lp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--color-text-light);
}
.lp-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
}

/* Trust strip in hero */
.lp-hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 540px) {
  .lp-hero-trust { grid-template-columns: repeat(4, 1fr); }
}
.lp-trust-stat { text-align: left; }
.lp-trust-stat-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.1;
}
.lp-trust-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}

/* Hero CTAs */
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn--gold { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }
.lp-btn--gold:hover { background: var(--color-accent-hover); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.lp-btn--whatsapp { background: var(--color-whatsapp); color: #fff; border-color: var(--color-whatsapp); }
.lp-btn--whatsapp:hover { background: #1DA851; }
.lp-btn--ghost { background: transparent; color: var(--color-text-light); border-color: rgba(255,255,255,0.45); }
.lp-btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--color-text-light); }
.lp-btn--dark { background: var(--color-primary); color: var(--color-text-light); border-color: var(--color-primary); }
.lp-btn--dark:hover { background: #2A2520; }
.lp-btn--block { width: 100%; }

.lp-hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}
.lp-hero-urgency::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.55);
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* ── Hero form card ────────────────────────────────────────── */
.lp-form-card {
  background: #fff;
  color: var(--color-text-primary);
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  max-width: 460px;
  width: 100%;
  justify-self: end;
}
@media (max-width: 1023px) {
  .lp-form-card { justify-self: stretch; max-width: none; }
}
.lp-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-text-primary);
}
.lp-form-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0 0 18px;
  line-height: 1.5;
}
.lp-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lp-form-label { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--color-text-primary); }
.lp-form-label .req { color: #C0392B; }
.lp-form-input,
.lp-form-select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text-primary);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}
.lp-form-input:focus,
.lp-form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.lp-form-honeypot { position: absolute; left: -9999px; }
.lp-form-error {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  background: #fdecec;
  color: #C0392B;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.4;
}
.lp-form-error.visible { display: block; }
.lp-form-submit { margin-top: 8px; }
.lp-form-submit-spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}
.lp-btn[disabled] .lp-form-submit-spinner { display: inline-block; }
.lp-btn[disabled] { opacity: 0.7; cursor: not-allowed; }
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-form-finepic {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── Section base ───────────────────────────────────────────── */
.lp-section { padding: 64px 24px; }
@media (min-width: 1024px) { .lp-section { padding: 88px 24px; } }
.lp-section-inner { max-width: 1200px; margin: 0 auto; }
.lp-section-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.lp-section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 12px;
  max-width: 720px;
  color: var(--color-text-primary);
}
.lp-section-sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.lp-section--dark { background: var(--color-primary); color: var(--color-text-light); }
.lp-section--dark .lp-section-title { color: var(--color-text-light); }
.lp-section--dark .lp-section-sub { color: rgba(255,255,255,0.78); }
.lp-section--surface { background: var(--color-surface); }

/* ── 3-card grid ───────────────────────────────────────────── */
.lp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .lp-cards { grid-template-columns: repeat(3, 1fr); } }
.lp-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.lp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.lp-card-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}
.lp-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--color-text-primary);
}
.lp-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── Reviews ────────────────────────────────────────────────── */
.lp-review {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-review-stars { color: var(--color-accent); font-size: 18px; letter-spacing: 2px; }
.lp-review-quote { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--color-text-primary); margin: 0; font-style: italic; }
.lp-review-author { font-family: var(--font-body); font-size: 13px; color: var(--color-text-secondary); margin: 0; }
.lp-review-author strong { color: var(--color-text-primary); }
.lp-reviews-link {
  display: block;
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.lp-reviews-link:hover { text-decoration: underline; }

/* ── Final CTA ──────────────────────────────────────────────── */
.lp-final-cta { text-align: center; }
.lp-final-cta .lp-section-title { color: var(--color-text-light); margin-bottom: 16px; }
.lp-final-cta-sub { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }
.lp-final-ctas { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Compact footer ─────────────────────────────────────────── */
.lp-footer {
  background: #0d0c0a;
  color: rgba(255,255,255,0.78);
  padding: 32px 24px 96px;       /* extra bottom space for sticky bar on mobile */
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
}
@media (min-width: 768px) { .lp-footer { padding: 32px 24px 24px; } }
.lp-footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.lp-footer a { color: var(--color-accent); text-decoration: none; }
.lp-footer-contact { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.lp-footer-bottom { width: 100%; text-align: center; padding-top: 18px; margin-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); font-size: 12px; }

/* ── Sticky mobile bottom bar ───────────────────────────────── */
.lp-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-primary);
  border-top: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.30);
}
.lp-sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-sticky-bar a:last-child { border-right: none; }
.lp-sticky-bar .lp-sticky-call { color: var(--color-text-light); }
.lp-sticky-bar .lp-sticky-wa { background: var(--color-whatsapp); color: #fff; }
.lp-sticky-bar .lp-sticky-quote { color: var(--color-accent); }
@media (min-width: 768px) { .lp-sticky-bar { display: none; } }

/* ── Thank-you page styles ─────────────────────────────────── */
.lp-ty-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 80px 24px;
  text-align: center;
}
.lp-ty-wrap { max-width: 580px; margin: 0 auto; }
.lp-ty-check {
  width: 88px; height: 88px;
  border-radius: 999px;
  background: rgba(201,168,76,0.12);
  border: 2px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.lp-ty-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--color-text-light);
}
.lp-ty-lead {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 28px;
}
.lp-ty-lead strong { color: var(--color-accent); }
.lp-ty-ctas { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   LP v2 — Class shims for new v2 HTML class names
   ============================================================ */

/* New hero grid wrapper */
.lp-hero-grid {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .lp-hero-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; padding: 72px 24px 80px; align-items: start; }
}

/* New subhead */
.lp-subhead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
  max-width: 640px;
}

/* Trust strip — new naming */
.lp-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 540px) { .lp-trust-strip { grid-template-columns: repeat(4, 1fr); } }
.lp-trust-item {
  display: flex; flex-direction: column;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.lp-trust-item strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* CTA row + buttons (new naming) */
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.lp-cta-btn:hover { transform: translateY(-1px); }
.lp-cta-btn--whatsapp { background: var(--color-whatsapp); color: #fff; border-color: var(--color-whatsapp); }
.lp-cta-btn--whatsapp:hover { background: #1DA851; }
.lp-cta-btn--secondary { background: transparent; color: var(--color-text-light); border-color: rgba(255,255,255,0.45); }
.lp-cta-btn--secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--color-text-light); }
.lp-cta-btn--primary {
  background: var(--color-accent);
  color: var(--color-primary) !important;   /* override any cascading white from .lp-final-cta */
  border-color: var(--color-accent);
  font-weight: 700;
}
.lp-cta-btn--primary:hover {
  transform: translateY(-2px);
  background: #d4b659;
  color: var(--color-primary) !important;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Form-card field/submit/disclaimer (new naming) */
.form-promise { font-size: 13px; color: var(--color-text-secondary); margin: 0 0 18px; line-height: 1.5; }
.lp-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lp-form-field label {
  font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--color-text-primary);
}
.lp-form-field input,
.lp-form-field select {
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
  border: 1.5px solid var(--color-border); border-radius: 8px;
  background: #fff; color: var(--color-text-primary);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}
.lp-form-field input:focus, .lp-form-field select:focus {
  outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.lp-form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 24px; margin-top: 8px;
  background: var(--color-accent); color: var(--color-primary);
  border: 2px solid var(--color-accent); border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.lp-form-submit:hover { transform: translateY(-1px); background: var(--color-accent-hover); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.lp-form-submit[disabled] { opacity: 0.7; cursor: not-allowed; }
.lp-form-disclaimer {
  margin-top: 12px; font-size: 12px; color: var(--color-text-muted);
  text-align: center; line-height: 1.5;
}

/* Section h2 default */
.lp-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 12px;
  max-width: 760px;
  color: var(--color-text-primary);
}
.lp-section--alt { background: var(--color-surface); }

/* Why Elysian grid (3-card) */
.lp-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .lp-why-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-why-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.lp-why-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.lp-why-card .icon { font-size: 28px; margin-bottom: 12px; line-height: 1; color: var(--color-accent); }
.lp-why-card h3 {
  font-family: var(--font-heading); font-size: 21px; font-weight: 600;
  margin: 0 0 10px; color: var(--color-text-primary);
}
.lp-why-card p {
  font-family: var(--font-body); font-size: 15px; color: var(--color-text-secondary);
  line-height: 1.65; margin: 0;
}

/* Reviews container + author/text/footer (new naming) */
.lp-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .lp-reviews { grid-template-columns: repeat(3, 1fr); } }
.lp-review-text { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--color-text-primary); margin: 0; font-style: italic; }
.lp-review-author { font-family: var(--font-body); font-size: 13px; color: var(--color-text-secondary); margin: 0; font-weight: 600; }
.lp-reviews-footer { text-align: center; margin-top: 28px; font-size: 14px; color: var(--color-text-secondary); }
.lp-reviews-footer a { color: var(--color-accent); text-decoration: none; font-weight: 500; }
.lp-reviews-footer a:hover { text-decoration: underline; }

/* Final CTA section (text-block format) */
.lp-final-cta {
  background: var(--color-primary);
  color: var(--color-text-light);
  text-align: center;
  padding: 64px 24px;
}
@media (min-width: 1024px) { .lp-final-cta { padding: 88px 24px; } }
.lp-final-cta h2 { color: var(--color-text-light); margin-bottom: 16px; }
.lp-final-cta p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }

/* Footer (text-block style) */
.lp-footer {
  background: #0d0c0a;
  color: rgba(255,255,255,0.78);
  padding: 32px 24px 96px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 768px) { .lp-footer { padding: 32px 24px 24px; } }
.lp-footer p { margin: 4px 0; }

/* Mobile sticky bar (new naming) */
.lp-mobile-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-primary);
  border-top: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.30);
}
.lp-mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-mobile-sticky a:last-child { border-right: none; }
.lp-mobile-sticky a.call { color: var(--color-text-light); }
.lp-mobile-sticky a.wa { background: var(--color-whatsapp); color: #fff; }
.lp-mobile-sticky a.form { color: var(--color-accent); }
@media (min-width: 768px) { .lp-mobile-sticky { display: none; } }

/* Compact header v2 — logo (left) + trust pills (right) */
.lp-header {
  background: var(--color-primary);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  font-weight: 600;
  pointer-events: none;
  line-height: 1.1;
}
.lp-logo small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--color-text-muted);
  margin-top: 2px;
  font-family: var(--font-body);
}
.lp-header-trust {
  display: flex;
  gap: 12px;
  align-items: center;
}
.lp-header-trust .trust-pill {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 20px;
  white-space: nowrap;
}
.lp-header-trust .trust-pill:last-child {
  color: var(--color-accent);
  font-weight: 600;
}
@media (max-width: 700px) {
  .lp-header-trust .trust-pill:first-child { display: none; }
  .lp-header-trust .trust-pill {
    padding: 4px 10px;
    font-size: 12px;
  }
  .lp-logo { font-size: 18px; }
  .lp-logo small { font-size: 10px; }
}

/* === WhatsApp floating button === */
.lp-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.lp-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.lp-wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: lp-wa-pulse 2s ease-in-out infinite;
}
@keyframes lp-wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0;   }
}
@media (max-width: 900px) {
  .lp-wa-float {
    bottom: 80px;     /* sit above the sticky mobile bar */
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .lp-wa-float svg { width: 28px; height: 28px; }
}

/* Hero H1 + form-card H3 default (new HTML uses bare <h1>/<h3>) */
.lp-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--color-text-light);
}
.lp-form-card h3 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-text-primary);
}

/* ============================================================
   LP v2 — Extended sections (educational long-form)
   ============================================================ */

.lp-prose { max-width: 760px; margin: 0 auto; }
.lp-prose p {
  font-size: 16px; line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4, 16px);
}
.lp-prose strong { color: var(--color-text-primary); font-weight: 600; }
.lp-prose em { color: var(--color-text-muted); font-style: italic; }

.lp-problem { background: var(--color-surface); padding: var(--space-12, 48px) var(--space-6, 24px); }
.lp-problem h2 { color: var(--color-text-primary); text-align: center; margin-bottom: var(--space-6, 24px); }
.lp-problem-intro {
  font-size: 18px; color: var(--color-text-primary);
  text-align: center; max-width: 700px;
  margin: 0 auto var(--space-8, 32px);
  line-height: 1.6;
}

.lp-explainer { padding: var(--space-12, 48px) var(--space-6, 24px); }
.lp-explainer-callout {
  background: rgba(201, 168, 76, 0.06);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-5, 20px);
  margin: var(--space-6, 24px) auto;
  max-width: 760px;
  border-radius: 0 4px 4px 0;
}

.lp-design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6, 24px);
  max-width: 1100px;
  margin: 0 auto;
}
.lp-design-card { background: #fff; border-radius: 6px; overflow: hidden; border: 1px solid rgba(201, 168, 76, 0.15); }
.lp-design-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.lp-design-card-body { padding: var(--space-5, 20px); }
.lp-design-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px; color: var(--color-accent);
  margin-bottom: var(--space-2, 8px);
}
.lp-design-card-body p { font-size: 14px; line-height: 1.6; color: var(--color-text-secondary); }

.lp-process-detailed { max-width: 800px; margin: 0 auto; }
.lp-process-step-detailed {
  padding: var(--space-6, 24px);
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  margin-bottom: var(--space-4, 16px);
  border-radius: 0 6px 6px 0;
}
.lp-process-step-detailed h3 {
  font-family: var(--font-heading);
  font-size: 19px; color: var(--color-accent);
  margin-bottom: var(--space-3, 12px);
}
.lp-process-step-detailed p { font-size: 15px; line-height: 1.65; color: var(--color-text-secondary); margin-bottom: var(--space-2, 8px); }
.lp-process-step-detailed ul { list-style: none; padding-left: 0; margin-top: var(--space-2, 8px); }
.lp-process-step-detailed ul li { padding: 4px 0 4px 20px; position: relative; font-size: 14px; color: var(--color-text-secondary); }
.lp-process-step-detailed ul li::before { content: "→"; position: absolute; left: 0; color: var(--color-accent); }

.lp-case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8, 32px);
  max-width: 1100px;
  margin: 0 auto var(--space-8, 32px);
  align-items: center;
  padding: var(--space-6, 24px);
  background: var(--color-surface);
  border-radius: 6px;
}
.lp-case-study:nth-child(even) { direction: rtl; }
.lp-case-study:nth-child(even) > * { direction: ltr; }
.lp-case-study img { width: 100%; border-radius: 4px; max-height: 380px; object-fit: cover; }
.lp-case-study h3 {
  font-family: var(--font-heading);
  font-size: 22px; color: var(--color-accent);
  margin-bottom: var(--space-3, 12px);
}
.lp-case-study .case-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-text-muted);
  margin-top: var(--space-3, 12px); margin-bottom: 4px;
  font-weight: 600;
}
.lp-case-study p { font-size: 15px; line-height: 1.65; color: var(--color-text-secondary); margin-bottom: var(--space-2, 8px); }

.lp-questions { max-width: 800px; margin: 0 auto; }
.lp-question { padding: var(--space-5, 20px) 0; border-bottom: 1px solid rgba(201, 168, 76, 0.15); }
.lp-question:last-child { border-bottom: none; }
.lp-question-number {
  display: inline-block;
  width: 32px; height: 32px; line-height: 32px;
  text-align: center;
  background: var(--color-accent); color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-3, 12px);
  vertical-align: top;
}
.lp-question h3 {
  display: inline-block;
  width: calc(100% - 50px);
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2, 8px);
  vertical-align: top;
}
.lp-question-comment {
  margin-left: 50px;
  font-size: 14px; font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.lp-questions-closer {
  max-width: 800px;
  margin: var(--space-8, 32px) auto 0;
  padding: var(--space-5, 20px);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-primary);
}

.lp-faq { max-width: 800px; margin: 0 auto; }
.lp-faq-item { border-bottom: 1px solid rgba(201, 168, 76, 0.15); }
.lp-faq-item summary {
  padding: var(--space-5, 20px) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-text-primary);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: var(--space-5, 20px);
  color: var(--color-accent);
  font-size: 24px;
  transition: transform 0.2s;
}
.lp-faq-item[open] summary::after { content: "−"; }
.lp-faq-item summary:hover { color: var(--color-accent); }
.lp-faq-answer { padding: 0 0 var(--space-5, 20px); font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); }

.lp-quote-breakdown {
  max-width: 760px;
  margin: var(--space-6, 24px) auto;
  padding: var(--space-6, 24px);
  background: var(--color-surface);
  border-radius: 6px;
  border-left: 3px solid var(--color-accent);
}
.lp-quote-breakdown ul { list-style: none; padding: 0; margin: 0; }
.lp-quote-breakdown li {
  padding: var(--space-2, 8px) 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px; line-height: 1.6;
  color: var(--color-text-secondary);
}
.lp-quote-breakdown li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--color-accent); font-weight: 700; font-size: 18px;
}
.lp-quote-breakdown li strong { color: var(--color-text-primary); }

@media (max-width: 900px) {
  .lp-design-grid { grid-template-columns: 1fr; gap: var(--space-4, 16px); }
  .lp-design-card img { height: 220px; }
  .lp-case-study {
    grid-template-columns: 1fr;
    gap: var(--space-4, 16px);
    padding: var(--space-4, 16px);
  }
  .lp-case-study:nth-child(even) { direction: ltr; }
  .lp-case-study img { max-height: 280px; }
  .lp-prose p { font-size: 15px; line-height: 1.7; }
  .lp-question h3 { font-size: 16px; }
  .lp-process-step-detailed { padding: var(--space-4, 16px); }
  .lp-process-step-detailed h3 { font-size: 17px; }
  .lp-faq-item summary { font-size: 16px; padding-right: 32px; }
  .lp-section h2 { font-size: 22px; }
}
