/* KDP Pro — Landing Page Stylesheet (v2 — Mobile-First 2026 Rebuild)
 * Light theme — KDP Pro is the workspace, SocialFreedom dark is the storefront.
 * Tokens come from tokens.css, fonts from fonts.css. The .lp-body scope maps
 * legacy --lp-* names onto the shared tokens so no call-site has to change.
 */
@import url('./tokens.css');
@import url('./fonts.css');

/* ── Landing-scoped aliases → tokens.css ────────────────────────────────── */
.lp-body {
  --lp-warm:      var(--bg-page-warm);
  --lp-cream:     var(--bg-cream);
  --lp-ink:       var(--text-ink);
  --lp-ink-soft:  var(--text-soft);
  --lp-ink-muted: var(--text-warm-muted);
  --lp-line:      var(--border);
  --lp-line-soft: var(--border-soft);
  --lp-gold:      var(--accent);
  --lp-gold-deep: var(--accent-dark);
  --lp-gold-warm: var(--accent-light);
  --lp-gold-tint: var(--accent-tint);
  --lp-shadow:    var(--shadow-lg);
  --lp-shadow-lg: var(--shadow-xl);
  --lp-shadow-xl: var(--shadow-2xl);
  --lp-radius-sm: var(--radius-md);   /* 10px — Landing small */
  --lp-radius-md: var(--radius-lg);   /* 16px */
  --lp-radius-lg: var(--radius-xl);   /* 24px */
  --lp-radius-xl: var(--radius-2xl);  /* 32px */
  --lp-container: var(--container);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  background: var(--lp-warm);
  color: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Link kontrast (WCAG AA) — body links in landing must use --link-on-light.
   Gold CTAs (.lp-nav__cta, .lp-price__cta, .lp-final__cta) use white-on-gold
   and are explicitly excluded below. */
.lp-section a:not(.lp-nav__cta):not(.lp-price__cta):not(.lp-final__cta):not(.lp-transparency__link) {
  color: var(--link-on-light);
}

.lp-display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-variation-settings: 'opsz' 96;
  letter-spacing: -0.018em;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.lp-container {
  width: min(var(--lp-container), calc(100% - 40px));
  margin: 0 auto;
}

/* ── Header (sticky, glass) ──────────────────────────────────────────────── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 247, 241, 0.86);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lp-body.scrolled .lp-header {
  border-bottom-color: var(--lp-line-soft);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px 0;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--lp-ink);
}
.lp-brand__mark { display: none; /* replaced by .lp-brand__icon SVG */ }
.lp-brand__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.lp-brand__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.lp-brand__name span {
  color: var(--lp-gold-deep);
  font-weight: 600;
}
.lp-brand__sub {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lp-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-ink-soft);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.lp-nav__link:hover {
  background: rgba(26, 24, 20, 0.04);
  color: var(--lp-ink);
  text-decoration: none;
}
.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  box-shadow: 0 8px 22px rgba(201, 162, 77, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lp-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(201, 162, 77, 0.36);
  text-decoration: none;
  color: #fff;
}

/* ── Section primitives ──────────────────────────────────────────────────── */
.lp-section {
  padding: 96px 0;
}
.lp-section--hero {
  padding: 56px 0 96px;
  position: relative;
  overflow: hidden;
}
.lp-section--tight {
  padding: 64px 0;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-gold-deep);
  background: var(--lp-gold-tint);
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 999px;
}

.lp-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--lp-ink);
  margin: 22px 0 18px;
  font-variation-settings: 'opsz' 144;
  text-wrap: balance;
}
.lp-h1__accent {
  font-style: italic;
  color: var(--lp-gold-deep);
  font-variation-settings: 'opsz' 144;
}

.lp-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 16px 0 14px;
  font-variation-settings: 'opsz' 96;
  text-wrap: balance;
}

.lp-h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--lp-ink);
  font-variation-settings: 'opsz' 36;
}

.lp-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--lp-ink-soft);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}

.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.lp-section-head .lp-lead {
  margin: 14px auto 0;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
}
.lp-hero__bg {
  position: absolute;
  inset: -80px;
  background-image: url('../landing/hero-bg.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
  filter: blur(2px) saturate(110%);
  pointer-events: none;
  z-index: 0;
}
.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(201, 162, 77, 0.18), transparent 60%),
    radial-gradient(700px 400px at 82% 30%, rgba(224, 194, 122, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(251, 247, 241, 0.6) 0%, var(--lp-warm) 90%);
}
.lp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 56px;
}

.lp-hero__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 580px;
  margin: 36px auto 18px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.lp-hero__form:focus-within {
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 18px 50px rgba(201, 162, 77, 0.16), 0 0 0 4px rgba(201, 162, 77, 0.10);
  transform: translateY(-1px);
}
.lp-hero__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 20px 22px;
  font-size: 16px;
  font-family: inherit;
  color: var(--lp-ink);
  font-weight: 500;
}
.lp-hero__input::placeholder {
  color: var(--lp-ink-muted);
  font-weight: 400;
  opacity: 1;
}
.lp-hero__cta {
  flex-shrink: 0;
  border: none;
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 0 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.18s ease, filter 0.18s ease;
  letter-spacing: -0.005em;
}
.lp-hero__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.lp-hero__cta svg {
  transition: transform 0.2s ease;
}
.lp-hero__cta:hover svg {
  transform: translateX(4px);
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--lp-ink-muted);
}
.lp-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.lp-trust__check {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--lp-gold-deep);
  flex-shrink: 0;
}

.lp-hero__scroll-hint {
  display: inline-flex;
  margin-top: 56px;
  color: var(--lp-ink-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lp-hero__scroll-hint svg {
  animation: lp-bob 1.8s ease-in-out infinite;
}
@keyframes lp-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Founder Strip (Sonja + Ronald, real photo) ──────────────────────────── */
.lp-founder {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  position: relative;
}
.lp-founder__photo {
  position: relative;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--lp-cream);
  box-shadow: 0 30px 70px rgba(26, 24, 20, 0.16);
}
.lp-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-founder__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(26, 24, 20, 0.2) 100%);
  pointer-events: none;
}
.lp-founder__body {
  min-width: 0;
}
.lp-founder__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--lp-ink);
  margin: 14px 0 20px;
  letter-spacing: -0.01em;
}
.lp-founder__cite {
  font-size: 14px;
  color: var(--lp-ink-muted);
  line-height: 1.55;
  margin: 0;
}
.lp-founder__name {
  display: block;
  color: var(--lp-ink);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

/* ── Process Cards ───────────────────────────────────────────────────────── */
.lp-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-process__card {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 36px 32px;
  box-shadow: var(--lp-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-process__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
  border-color: rgba(201, 162, 77, 0.32);
}
.lp-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--lp-gold-warm) 0%, var(--lp-gold) 100%);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(201, 162, 77, 0.28);
}
.lp-process__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--lp-ink);
  margin: 0;
}
.lp-process__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-ink-soft);
  margin: 0;
}

/* ── Bento Grid: Was du bekommst ─────────────────────────────────────────── */
.lp-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.lp-bento__tile {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 220px;
  box-shadow: var(--lp-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-bento__tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-bento__tile--feature {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(165deg, var(--lp-cream) 0%, #fff 60%);
  border: 1px solid rgba(201, 162, 77, 0.22);
  position: relative;
  overflow: hidden;
  padding: 36px 36px 0;
}
.lp-bento__tile--feature .lp-bento__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.lp-bento__feature-image {
  margin: 16px -36px -1px;
  display: block;
  width: calc(100% + 72px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(26, 24, 20, 0.16));
}
.lp-bento__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--lp-gold-tint);
  color: var(--lp-gold-deep);
}
.lp-bento__icon-img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 77, 0.18);
  box-shadow: 0 12px 28px rgba(26, 24, 20, 0.10);
  background: var(--lp-cream);
}
@media (max-width: 540px) {
  .lp-bento__icon-img { width: 80px; height: 80px; border-radius: 14px; }
}
.lp-bento__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.lp-bento__body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--lp-ink-muted);
  margin: 0;
}

/* ── KDP Transparency (compact, single paragraph) ────────────────────────── */
.lp-transparency {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid rgba(201, 162, 77, 0.32);
  border-radius: var(--lp-radius-lg);
  padding: 36px 40px;
  box-shadow: 0 30px 70px rgba(201, 162, 77, 0.10);
  position: relative;
}
.lp-transparency__shield {
  position: absolute;
  top: -22px;
  left: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(201, 162, 77, 0.32);
}
.lp-transparency h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 8px 0 14px;
  color: var(--lp-ink);
  letter-spacing: -0.012em;
}
.lp-transparency p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-ink-soft);
  margin: 0 0 16px;
}
.lp-transparency__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-gold-deep);
  text-decoration: none;
}
.lp-transparency__link:hover {
  text-decoration: underline;
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-price {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 36px 32px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--lp-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-price:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-price--featured {
  border: 2px solid var(--lp-gold);
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(201, 162, 77, 0.18);
  background: linear-gradient(180deg, #fff 0%, #fffaf1 100%);
}
.lp-price--featured:hover {
  transform: scale(1.04) translateY(-3px);
}
.lp-price--featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(201, 162, 77, 0.32);
}
.lp-price__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.lp-price__amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--lp-ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.lp-price__amount span {
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-ink-muted);
}
.lp-price__desc {
  font-size: 14px;
  color: var(--lp-ink-soft);
  margin: 12px 0 24px;
  line-height: 1.55;
}
.lp-price__cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.lp-price__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.lp-price--ghost .lp-price__cta {
  background: #fff;
  color: var(--lp-gold-deep);
  border: 1.5px solid rgba(201, 162, 77, 0.4);
}
.lp-price--ghost .lp-price__cta:hover {
  background: var(--lp-gold-tint);
  filter: none;
}
.lp-price__note {
  font-size: 12px;
  color: var(--lp-ink-muted);
  margin-top: 14px;
}
.lp-pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--lp-ink-muted);
  margin-top: 28px;
}

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */
.lp-faq {
  max-width: 760px;
  margin: 0 auto;
}
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-faq__item[open] {
  border-color: rgba(201, 162, 77, 0.4);
  box-shadow: var(--lp-shadow);
}
.lp-faq__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lp-faq__summary::-webkit-details-marker {
  display: none;
}
.lp-faq__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: auto;
  color: var(--lp-gold-deep);
  transition: transform 0.25s ease;
}
.lp-faq__item[open] .lp-faq__chevron {
  transform: rotate(180deg);
}
.lp-faq__body {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-ink-soft);
}

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.lp-final {
  background: linear-gradient(165deg, var(--lp-cream) 0%, #fff 60%);
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: var(--lp-radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--lp-shadow-lg);
  position: relative;
  overflow: hidden;
}
.lp-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 20% 0%, rgba(201, 162, 77, 0.10), transparent 60%),
    radial-gradient(400px 250px at 80% 100%, rgba(224, 194, 122, 0.12), transparent 60%);
  pointer-events: none;
}
.lp-final > * {
  position: relative;
}
.lp-final h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.022em;
}
.lp-final p {
  font-size: 17px;
  color: var(--lp-ink-soft);
  margin: 0 0 28px;
}
.lp-final__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(201, 162, 77, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lp-final__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(201, 162, 77, 0.4);
  text-decoration: none;
  color: #fff;
}
.lp-final__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--lp-ink-muted);
}
.lp-final__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-final__badges svg {
  width: 16px;
  height: 16px;
  color: var(--lp-gold-deep);
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--lp-line-soft);
  padding: 48px 0;
  text-align: center;
}
.lp-footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.lp-footer__nav a {
  font-size: 14px;
  color: var(--lp-ink-muted);
  text-decoration: none;
}
.lp-footer__nav a:hover {
  color: var(--lp-gold-deep);
}
.lp-footer__copy {
  font-size: 13px;
  color: var(--lp-ink-muted);
  margin-bottom: 12px;
}
.lp-footer__legal {
  font-size: 11px;
  color: var(--lp-ink-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ── WhatsApp Floating Action Button ─────────────────────────────────────── */
.lp-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.48);
  text-decoration: none;
  color: #fff;
}
.lp-whatsapp svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.lp-whatsapp__text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.92;
  margin-top: 1px;
}

/* ── Sticky Bottom CTA (mobile only) ─────────────────────────────────────── */
.lp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--lp-line);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.08);
  display: none;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.lp-body.sticky-bar-visible .lp-sticky-bar {
  transform: translateY(0);
}
.lp-sticky-bar__cta {
  flex: 1;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--lp-gold) 0%, var(--lp-gold-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.lp-sticky-bar__cta:hover {
  text-decoration: none;
  color: #fff;
}
.lp-sticky-bar__close {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--lp-cream);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  color: var(--lp-ink-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ── Tablet (768-1079px) ─────────────────────────────────────────────────── */
@media (max-width: 1079px) {
  .lp-section { padding: 80px 0; }
  .lp-section--hero { padding: 48px 0 80px; }

  .lp-process { grid-template-columns: 1fr; gap: 18px; }

  .lp-bento {
    grid-template-columns: 1fr 1fr;
  }
  .lp-bento__tile--feature {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: auto;
  }

  .lp-founder {
    padding: 36px;
    gap: 32px;
  }
}

/* ── Mobile (≤768px) ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-section { padding: 64px 0; }
  .lp-section--hero { padding: 32px 0 56px; }
  .lp-section-head { margin-bottom: 36px; }

  .lp-header__inner {
    min-height: 56px;
    padding: 10px 0;
  }
  .lp-brand__name { font-size: 15px; }
  .lp-brand__sub { display: none; }
  .lp-brand__icon { width: 22px; height: 22px; }
  .lp-nav__link { padding: 8px 12px; font-size: 13px; }
  .lp-nav__cta { padding: 9px 16px; font-size: 13px; }

  .lp-h1 { margin: 18px 0 14px; }
  .lp-lead { font-size: 16px; }

  .lp-hero__inner { padding-top: 24px; }
  .lp-hero__form {
    flex-direction: column;
    border-radius: 16px;
    margin: 28px auto 16px;
  }
  .lp-hero__input {
    padding: 16px 20px;
    border-bottom: 1px solid var(--lp-line);
  }
  .lp-hero__cta {
    padding: 16px 20px;
    min-height: 54px;
    font-size: 16px;
  }
  .lp-hero__scroll-hint { margin-top: 36px; }

  .lp-trust {
    gap: 14px;
    font-size: 12px;
  }

  .lp-founder {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .lp-founder__photo {
    max-width: 240px;
    margin: 0 auto;
  }
  .lp-founder__quote { font-size: 18px; }

  .lp-bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-bento__tile--feature {
    grid-column: 1;
    grid-row: auto;
    padding: 32px 28px 0;
  }
  .lp-bento__tile {
    min-height: 180px;
    padding: 26px 24px;
  }
  .lp-bento__feature-image {
    margin: 16px -28px -1px;
    width: calc(100% + 56px);
  }

  .lp-transparency {
    padding: 28px 24px;
  }
  .lp-transparency h2 { font-size: 21px; }

  .lp-pricing {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-price { padding: 32px 26px 28px; }
  .lp-price--featured {
    transform: none;
  }
  .lp-price--featured:hover {
    transform: translateY(-3px);
  }

  .lp-faq__summary {
    padding: 20px 22px;
    font-size: 15px;
  }
  .lp-faq__body {
    padding: 0 22px 22px;
    font-size: 14px;
  }

  .lp-final {
    padding: 48px 28px;
  }
  .lp-final p { font-size: 16px; }

  /* Sticky bar shows on mobile */
  .lp-sticky-bar { display: flex; }

  /* WhatsApp FAB on mobile: smaller, positioned to not overlap sticky bar */
  .lp-whatsapp {
    bottom: 84px;
    right: 16px;
    padding: 12px 14px;
  }
  .lp-whatsapp__text { display: none; }
  .lp-whatsapp svg { width: 24px; height: 24px; }
}

/* ── Narrow Phones (≤420px) ──────────────────────────────────────────────── */
@media (max-width: 420px) {
  .lp-h1 { font-size: 32px; line-height: 1.08; }
  .lp-lead { font-size: 15px; }
  .lp-section { padding: 56px 0; }
  .lp-founder { padding: 28px 20px; }
  .lp-final { padding: 40px 22px; }
  .lp-final h2 { font-size: 27px; }
  .lp-trust { gap: 10px; font-size: 11px; }
  .lp-trust__check { width: 14px; height: 14px; }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
