/* =============================================================================
   Design System — robsonluiz.dev LP
   Tokens + shells compartilhados. Seções usam min-height (não height fixo)
   para caber conteúdo sem corte em 100svh.
   ============================================================================= */
:root {
  /* Color — brand */
  --color-bg: #090a0c;
  --color-bg-elevated: #0c0d10;
  --color-bg-soft: #121315;
  --color-surface: rgba(247, 242, 232, 0.035);
  --color-surface-strong: rgba(247, 242, 232, 0.06);
  --color-text: #f7f2e8;
  --color-text-muted: #c6bfb4;
  --color-text-subtle: #8d857a;
  --color-accent: #e7c36a;
  --color-accent-strong: #ffdc7a;
  --color-border: rgba(247, 242, 232, 0.18);
  --color-border-soft: rgba(247, 242, 232, 0.12);
  --color-border-strong: rgba(231, 195, 106, 0.48);
  --color-on-light: #111214;
  --color-on-light-muted: #514c43;
  --color-surface-light: rgba(255, 252, 244, 0.82);

  /* Typography */
  --font-display: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  --font-body: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 0.75rem; /* 12 */
  --text-sm: 0.8125rem; /* 13 */
  --text-md: 0.9375rem; /* 15 */
  --text-base: 1rem; /* 16 */
  --text-lg: 1.125rem; /* 18 */
  --text-xl: 1.25rem; /* 20 */
  --text-2xl: clamp(1.35rem, 2vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 3.2vw, 2.5rem);
  --text-4xl: clamp(2rem, 4vw, 3.25rem);
  --text-hero: clamp(2.25rem, 5vw, 3.75rem);
  --leading-tight: 1.12;
  --leading-snug: 1.35;
  --leading-body: 1.5;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Space */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --section-pad-y: clamp(48px, 6vh, 88px);
  --section-gap: clamp(20px, 3vh, 40px);
  --container-max: 1200px;
  --container-padding: 32px;

  /* Radius / elevation */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.22);
  --shadow-card-hover: 0 24px 60px rgba(0, 0, 0, 0.28);

  /* Motion */
  --motion-fast: 180ms;
  --motion-base: 420ms;
  --ease-editorial: cubic-bezier(0.22, 0.8, 0.22, 1);

  /* Section shell */
  --section-min-height: 100svh;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: var(--leading-body);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
}

a {
  color: inherit;
}

/* Shell de seção: preenche a viewport quando cabe; cresce se o conteúdo pedir.
   Nunca usar height/max-height fixos em seções de conteúdo. */
main > section {
  box-sizing: border-box;
  min-height: var(--section-min-height);
  overflow: visible;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* Mídia full-bleed pode clipar fundo; conteúdo interno permanece legível via min-height */
main > section.lp-hero,
main > section.lp-contrast,
main > section.lp-benefits,
main > section.lp-final {
  overflow: hidden;
}

.section-kicker {
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
}

/* Card atômico reutilizável */
.lp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
  padding: var(--space-5) var(--space-5);
  transition:
    border-color var(--motion-base) var(--ease-editorial),
    transform var(--motion-base) var(--ease-editorial),
    box-shadow var(--motion-base) var(--ease-editorial);
}

.lp-card--accent {
  border-color: rgba(231, 195, 106, 0.34);
  box-shadow: var(--shadow-card);
}

.lp-card__label {
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-card__title {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  line-height: var(--leading-tight);
  margin: var(--space-3) 0 0;
}

.lp-card__body {
  color: var(--color-text-muted);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  margin: var(--space-4) 0 0;
}

.lp-section-title {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  line-height: var(--leading-tight);
  margin: 0;
}

.lp-section-lead {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  margin: var(--space-4) 0 0;
  max-width: 40rem;
}

.lp-hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.lp-hero__background {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.lp-hero__background::before {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.94) 0%, rgba(9, 10, 12, 0.82) 34%, rgba(9, 10, 12, 0.36) 68%, rgba(9, 10, 12, 0.08) 100%),
    radial-gradient(circle at 76% 28%, rgba(231, 195, 106, 0.16), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.lp-hero__background::after {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.34;
  position: absolute;
  z-index: 2;
}

.lp-hero__background img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.lp-hero__inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: var(--container-max);
  min-height: 100svh;
  padding: 88px var(--container-padding) 64px;
  position: relative;
  z-index: 3;
}

.lp-hero__copy {
  max-width: 660px;
}

.lp-hero__brand {
  align-items: center;
  color: var(--color-text);
  display: flex;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 38px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 52px;
}

.lp-hero__brand-mark {
  display: block;
  flex: 0 0 auto;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.lp-hero__brand em {
  color: var(--color-text-muted);
  font-style: italic;
  font-weight: 600;
  margin-left: 4px;
}

.lp-hero h1 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 58px;
  margin: 0;
  max-width: 680px;
}

.lp-hero__lead {
  color: var(--color-text-muted);
  font-size: 21px;
  font-weight: 600;
  line-height: 32px;
  margin: 26px 0 0;
  max-width: 640px;
}

.lp-hero__statement {
  color: var(--color-text-subtle);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin: 28px 0 0;
}

.lp-hero__actions {
  margin-top: 32px;
}

.button-primary {
  align-items: center;
  background: var(--color-accent);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(231, 195, 106, 0.18);
  color: #090a0c;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 58px;
  min-width: 278px;
  padding: 0 28px;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button-primary:hover {
  background: var(--color-accent-strong);
}

.button-primary:active {
  transform: scale(0.99);
}

.button-primary:focus-visible {
  outline: 2px solid var(--color-border-strong);
  outline-offset: 3px;
}

.lp-contrast {
  align-items: center;
  background:
    linear-gradient(180deg, #090a0c 0%, #111214 54%, #090a0c 100%),
    linear-gradient(90deg, rgba(247, 242, 232, 0.04) 1px, transparent 1px);
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-contrast::before {
  background-image: linear-gradient(rgba(247, 242, 232, 0.045) 1px, transparent 1px);
  background-size: 100% 84px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.lp-contrast__inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.lp-contrast__copy {
  max-width: 560px;
}

.section-kicker {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.lp-contrast h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 54px;
  margin: 0;
  max-width: 620px;
}

.lp-contrast__lead,
.lp-contrast__closing {
  color: var(--color-text-muted);
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
  margin: 24px 0 0;
  max-width: 640px;
}

.lp-contrast__closing {
  color: var(--color-text-subtle);
  font-size: 17px;
  line-height: 28px;
}

.lp-contrast__actions {
  margin-top: 34px;
}

.lp-contrast__visual {
  border-radius: 8px;
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.32);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.lp-contrast__visual::after {
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.lp-contrast__visual img {
  aspect-ratio: 3 / 2;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.lp-projects {
  align-items: center;
  background:
    linear-gradient(180deg, #090a0c 0%, #0f1012 46%, #090a0c 100%),
    radial-gradient(circle at 82% 18%, rgba(231, 195, 106, 0.12), transparent 30%);
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-projects::before {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
}

.lp-projects__inner {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.lp-projects__header {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  margin-bottom: 46px;
}

.lp-projects h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 54px;
  margin: 0;
  max-width: 560px;
}

.lp-projects__lead {
  color: var(--color-text-muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 29px;
  margin: 0;
}

.lp-projects__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-project-card {
  background: #101113;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 3px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.lp-project-card::after {
  display: none;
}

.lp-project-card img {
  aspect-ratio: 16 / 10;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease, filter 500ms ease;
  width: 100%;
}

.lp-project-card--pedro img {
  object-position: center 42%;
}

.lp-project-card__caption {
  align-items: start;
  background: #101113;
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 15px 16px 17px;
  position: relative;
}

.lp-project-card__caption span {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 26px;
}

.lp-project-card__caption em {
  color: var(--color-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
}

.lp-projects__actions {
  margin-top: 38px;
  text-align: center;
}

.lp-proof {
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(231, 195, 106, 0.07), transparent 28%),
    linear-gradient(180deg, #0b0c0f 0%, #090a0c 100%);
  border-top: 1px solid var(--color-border-soft);
  display: flex;
  min-height: var(--section-min-height);
  overflow: visible;
  padding: var(--section-pad-y) 0;
  position: relative;
}

.lp-proof::before {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
}

.lp-proof__inner {
  display: grid;
  gap: var(--section-gap);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-proof__header {
  max-width: 720px;
}

.lp-proof h2 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  line-height: var(--leading-tight);
  margin: 0;
}

.lp-proof__lead {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  margin: var(--space-4) 0 0;
  max-width: 36rem;
}

.lp-proof__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-proof-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
  padding: var(--space-5);
  transition:
    border-color var(--motion-base) var(--ease-editorial),
    transform var(--motion-base) var(--ease-editorial);
}

.lp-proof-card__stars {
  color: var(--color-accent);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  line-height: 1;
}

.lp-proof-card blockquote {
  margin: var(--space-3) 0 0;
  padding: 0;
}

.lp-proof-card blockquote p {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  line-height: var(--leading-snug);
  margin: 0;
}

.lp-proof-card figcaption {
  border-top: 1px solid var(--color-border-soft);
  display: grid;
  gap: var(--space-1);
  margin-top: auto;
  padding-top: var(--space-4);
}

.lp-proof-card figcaption strong {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-extrabold);
  line-height: 1.25;
}

.lp-proof-card figcaption span {
  color: var(--color-text-subtle);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  line-height: 1.25;
}

.lp-method {
  align-items: center;
  background:
    linear-gradient(180deg, #090a0c 0%, #121315 52%, #090a0c 100%),
    radial-gradient(circle at 18% 18%, rgba(231, 195, 106, 0.1), transparent 32%);
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-method::before {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
}

.lp-method__inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(500px, 1.12fr) minmax(0, 0.88fr);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.lp-method__copy {
  max-width: 590px;
}

.lp-method h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 54px;
  margin: 0;
}

.lp-method__lead {
  color: var(--color-text-muted);
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
  margin: 24px 0 0;
}

.lp-method__layers {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  perspective: 1000px;
}

.lp-method-layer {
  background: rgba(247, 242, 232, 0.045);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 3px;
  border-top: 2px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 142px;
  overflow: visible;
  padding: 18px;
  position: relative;
  transition: border-color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.lp-method-layer::before {
  display: none;
}

.lp-method-layer::after {
  display: none;
}

.lp-method-layer span {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--color-accent-strong);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: auto;
  justify-content: flex-start;
  line-height: 1;
  margin-bottom: 20px;
  width: auto;
}

.lp-method-layer strong {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 23px;
  margin-bottom: 14px;
  white-space: normal;
}

.lp-method-layer small {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 15px;
  text-transform: uppercase;
}

.lp-method__visual {
  --scroll-shift: 0px;
  border-radius: 3px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.lp-method__visual::before {
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.08), rgba(9, 10, 12, 0.28)),
    linear-gradient(90deg, rgba(9, 10, 12, 0.18), rgba(9, 10, 12, 0.04));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.lp-method__visual::after {
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.lp-method__poster,
.lp-method__video {
  inset: 0;
  position: absolute;
}

.lp-method__poster {
  display: block;
}

.lp-method__poster img,
.lp-method__video {
  aspect-ratio: 3 / 2;
  display: block;
  filter: brightness(0.86) contrast(1.04) saturate(0.92);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--scroll-shift), 0) scale(1.04);
  transition: opacity var(--motion-base) var(--ease-editorial);
  width: 100%;
}

.lp-method__poster img {
  height: auto;
}

.lp-method__video {
  opacity: 0;
  z-index: 0;
}

.lp-method__visual.is-video-ready .lp-method__video {
  opacity: 1;
}

.lp-method__visual .lp-method__poster {
  position: relative;
  z-index: 0;
}

.lp-method__visual .lp-method__poster img {
  height: auto;
  width: 100%;
}

.lp-benefits {
  align-items: center;
  background: #090a0c;
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-benefits__background {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.lp-benefits__background::before {
  background:
    radial-gradient(ellipse at center, rgba(9, 10, 12, 0.2) 0%, rgba(9, 10, 12, 0.5) 56%, rgba(9, 10, 12, 0.78) 100%),
    linear-gradient(180deg, rgba(9, 10, 12, 0.54) 0%, rgba(9, 10, 12, 0.12) 44%, rgba(9, 10, 12, 0.72) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.lp-benefits__background::after {
  background:
    radial-gradient(ellipse at center, rgba(231, 195, 106, 0.14), transparent 36%),
    linear-gradient(180deg, #090a0c 0%, transparent 18%, transparent 76%, #090a0c 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.lp-benefits__background img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  width: 100%;
}

.lp-benefits__inner {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 46px;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--container-max);
  min-height: 520px;
  padding: 0 var(--container-padding);
  position: relative;
  text-align: left;
  z-index: 3;
}

.lp-benefits__copy {
  max-width: 720px;
}

.lp-benefits h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 58px;
  margin: 0;
  max-width: 820px;
}

.lp-benefits__lead {
  color: var(--color-text-muted);
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
  margin: 24px 0 0;
  max-width: 620px;
}

.lp-benefits__grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  width: 100%;
}

.lp-benefit-card {
  align-items: start;
  background: rgba(9, 10, 12, 0.74);
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.18);
  display: grid;
  gap: 10px 18px;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 138px;
  padding: 24px 28px;
  position: relative;
  text-align: left;
  transition: background-color var(--motion-fast) ease, transform var(--motion-fast) var(--ease-editorial);
}

.lp-benefit-card::before {
  color: var(--color-accent-strong);
  content: attr(data-index);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  grid-row: 1 / span 2;
  letter-spacing: -0.04em;
  line-height: 1;
  position: static;
}

.lp-benefit-card::after {
  background: var(--color-accent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-editorial);
  width: 100%;
}

.lp-benefit-card span {
  color: var(--color-accent-strong);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-benefit-card strong {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 27px;
  margin: 0;
  max-width: none;
}

.lp-benefit-card:nth-child(2) {
  transition-delay: 80ms;
}

.lp-benefit-card:nth-child(3) {
  transition-delay: 160ms;
}

.lp-benefit-card:nth-child(4) {
  transition-delay: 240ms;
}

.lp-compare {
  align-items: center;
  background:
    radial-gradient(circle at 78% 48%, rgba(231, 195, 106, 0.15), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(247, 242, 232, 0.06), transparent 28%),
    linear-gradient(180deg, #090a0c 0%, #121315 48%, #090a0c 100%);
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-compare::before {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
}

.lp-compare::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(231, 195, 106, 0.22) 50%, transparent 100%),
    radial-gradient(circle at 50% 50%, rgba(231, 195, 106, 0.12), transparent 28%);
  content: "";
  height: 1px;
  left: 14%;
  opacity: 0.8;
  position: absolute;
  right: 14%;
  top: 50%;
}

.lp-method__name {
  color: var(--color-accent);
  display: block;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.lp-fit {
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(231, 195, 106, 0.08), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(231, 195, 106, 0.05), transparent 30%),
    linear-gradient(180deg, var(--color-bg-elevated) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border-soft);
  display: flex;
  min-height: var(--section-min-height);
  overflow: visible;
  padding: var(--section-pad-y) 0;
  position: relative;
}

.lp-fit::before {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.lp-fit__inner {
  display: grid;
  gap: var(--section-gap);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-fit__header {
  max-width: 720px;
}

.lp-fit h2 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  line-height: var(--leading-tight);
  margin: 0;
}

.lp-fit__lead {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  margin: var(--space-4) 0 0;
  max-width: 40rem;
}

.lp-fit__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-fit-card {
  background: rgba(247, 242, 232, 0.03);
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 26px 30px;
  position: relative;
}

.lp-fit-card--yes {
  border-color: rgba(231, 195, 106, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.lp-fit-card--yes::before {
  background: linear-gradient(90deg, rgba(231, 195, 106, 0.9), transparent 70%);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 30%;
  top: 0;
}

.lp-fit-card--no {
  background: rgba(247, 242, 232, 0.02);
  border-color: rgba(247, 242, 232, 0.1);
}

.lp-fit-card span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-fit-card--no span {
  color: var(--color-text-subtle);
}

.lp-fit-card strong {
  color: var(--color-text);
  display: block;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 34px;
  margin-top: 16px;
}

.lp-fit-card ul {
  color: var(--color-text-muted);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.lp-fit-card li {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  padding-left: 18px;
  position: relative;
}

.lp-fit-card li::before {
  content: "·";
  font-weight: 800;
  left: 0;
  position: absolute;
  top: 0;
}

.lp-fit-card--yes li::before {
  color: var(--color-accent);
  content: "+";
}

.lp-fit-card--no li::before {
  color: var(--color-text-subtle);
  content: "–";
}

.lp-compare__inner {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.lp-compare__copy {
  max-width: 520px;
}

.lp-compare h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 58px;
  margin: 0;
}

.lp-compare__lead {
  color: var(--color-text-muted);
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
  margin: 24px 0 0;
}

.lp-compare__stage {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  position: relative;
}

.lp-compare-card {
  border-radius: 3px;
  border-left: 0;
  border-right: 0;
  display: flex;
  flex-direction: column;
  min-height: 394px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.lp-compare-card::before {
  display: none;
}

.lp-compare-card span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-compare-card strong {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 39px;
  margin-top: 26px;
}

.lp-compare-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.lp-compare-card li {
  align-items: center;
  border-radius: 0;
  color: var(--color-text-muted);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  min-height: 46px;
  padding: 0 0 0 14px;
  position: relative;
}

.lp-compare-card li::before {
  background: currentColor;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: calc(50% - 2px);
  width: 4px;
}

.lp-compare-card--simple {
  background: rgba(14, 15, 17, 0.72);
  border: 1px solid rgba(247, 242, 232, 0.16);
  box-shadow: none;
}

.lp-compare-card--simple::before {
  display: none;
}

.lp-compare-card--simple span {
  color: var(--color-text-subtle);
}

.lp-compare-card--simple li {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(247, 242, 232, 0.1);
}

.lp-compare-card--premium {
  background: #17150f;
  border: 1px solid rgba(231, 195, 106, 0.48);
  box-shadow: none;
}

.lp-compare-card--premium::before {
  display: none;
}

.lp-compare-card--premium span {
  color: var(--color-accent-strong);
}

.lp-compare-card--premium li {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(231, 195, 106, 0.24);
  color: var(--color-text);
}

.lp-compare__divider {
  align-self: center;
  border: 0;
  border-radius: 0;
  color: var(--color-accent-strong);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  height: auto;
  letter-spacing: 0;
  line-height: 1;
  place-items: center;
  text-transform: uppercase;
  width: auto;
}

.lp-process {
  align-items: center;
  background:
    linear-gradient(135deg, transparent 0%, transparent 58%, rgba(9, 10, 12, 0.08) 58%, rgba(9, 10, 12, 0.08) 100%),
    linear-gradient(180deg, #f1eee5 0%, #ded9cc 100%);
  border-top: 1px solid rgba(9, 10, 12, 0.12);
  color: #121315;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-process::before {
  background-image:
    linear-gradient(rgba(9, 10, 12, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 12, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.lp-process::after {
  background:
    linear-gradient(90deg, transparent, rgba(9, 10, 12, 0.28), transparent),
    linear-gradient(90deg, transparent, rgba(196, 143, 43, 0.55), transparent);
  content: "";
  height: 1px;
  left: 44%;
  position: absolute;
  right: 7%;
  top: 50%;
}

.lp-process__inner {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.58fr) minmax(700px, 1.42fr);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-process__header {
  margin: 0;
  max-width: 430px;
  text-align: left;
}

.lp-process .section-kicker {
  color: #8f661c;
}

.lp-process h2 {
  color: #121315;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 62px;
  margin: 0;
}

.lp-process__lead {
  color: #514c43;
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
  margin: 24px 0 0;
}

.lp-process__timeline {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  min-height: 0;
  position: relative;
}

.lp-process-step {
  align-items: center;
  background: #fbf8ef;
  border: 1px solid rgba(9, 10, 12, 0.18);
  border-radius: 6px;
  box-shadow: 0 22px 54px rgba(9, 10, 12, 0.12);
  color: #121315;
  display: grid;
  gap: 20px;
  grid-template-columns: 54px minmax(132px, 0.34fr) minmax(0, 1fr);
  min-height: 92px;
  overflow: hidden;
  padding: 18px 22px;
  position: relative;
  transform: translateX(var(--process-x, 0)) rotate(var(--process-tilt, 0deg));
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.lp-process-step:nth-child(1) {
  --process-tilt: -1.4deg;
  --process-x: -18px;
}

.lp-process-step:nth-child(2) {
  --process-tilt: 1deg;
  --process-x: 28px;
}

.lp-process-step:nth-child(3) {
  --process-tilt: -0.8deg;
  --process-x: 0;
}

.lp-process-step:nth-child(4) {
  --process-tilt: 1.2deg;
  --process-x: 36px;
}

.lp-process-step:nth-child(5) {
  --process-tilt: -1deg;
  --process-x: -10px;
}

.lp-process-step::before {
  background: #121315;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-color 220ms ease, height 220ms ease;
}

.lp-process-step::after {
  background: linear-gradient(135deg, rgba(9, 10, 12, 0.08) 0 50%, rgba(255, 255, 255, 0.2) 50% 100%);
  bottom: 0;
  content: "";
  height: 34px;
  position: absolute;
  right: 0;
  width: 34px;
}

.lp-process-step span {
  align-items: center;
  background: #121315;
  border: 1px solid rgba(9, 10, 12, 0.22);
  border-radius: 999px;
  color: #f7f2e8;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  line-height: 1;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
  width: 44px;
}

.lp-process-step strong {
  color: #121315;
  display: block;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 27px;
  margin: 0;
  overflow-wrap: anywhere;
}

.lp-process-step p {
  color: #575147;
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
  margin: 0;
}

.lp-guarantee {
  align-items: center;
  background:
    linear-gradient(118deg, transparent 0%, transparent 48%, rgba(231, 195, 106, 0.12) 48.2%, transparent 67%),
    linear-gradient(180deg, #0a0a0b 0%, #151310 58%, #090a0c 100%);
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-guarantee::before {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
}

.lp-guarantee::after {
  background: linear-gradient(90deg, transparent, rgba(231, 195, 106, 0.48), transparent);
  bottom: 92px;
  content: "";
  height: 1px;
  left: 10%;
  position: absolute;
  right: 10%;
}

.lp-guarantee__inner {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-guarantee__copy {
  max-width: 780px;
}

.lp-guarantee h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 66px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 70px;
  margin: 0;
}

.lp-guarantee__lead {
  color: var(--color-text-muted);
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  margin: 28px 0 0;
  max-width: 620px;
}

.lp-guarantee__panel {
  background: #111214;
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 3px;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  min-height: 0;
  padding: 28px 30px 32px;
  position: relative;
  transition: border-color var(--motion-fast) ease, transform var(--motion-fast) var(--ease-editorial);
}

.lp-guarantee__panel::before {
  display: none;
}

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

.lp-guarantee__panel > * {
  position: relative;
  z-index: 1;
}

.lp-guarantee__portrait {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 0;
  display: flex;
  gap: 14px;
  margin: 0 0 30px;
  overflow: visible;
  padding: 0 0 22px;
  position: relative;
}

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

.lp-guarantee__portrait img {
  display: block;
  flex: 0 0 56px;
  filter: saturate(0.88) contrast(1.02);
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  transition: filter var(--motion-fast) ease;
  width: 56px;
}

.lp-guarantee__portrait figcaption {
  position: static;
}

.lp-guarantee__portrait strong {
  color: var(--color-text);
  display: block;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

.lp-guarantee__portrait span {
  color: var(--color-text-muted);
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 5px;
  text-align: left;
  text-transform: uppercase;
}

.lp-guarantee__panel p {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.lp-guarantee__panel > strong {
  color: var(--color-text);
  display: block;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 35px;
  margin: 0;
}

.lp-guarantee__panel > span {
  color: var(--color-text-muted);
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  margin-top: 14px;
}

.lp-faq {
  align-items: center;
  background:
    linear-gradient(135deg, transparent 0%, transparent 56%, rgba(9, 10, 12, 0.07) 56.2%, rgba(9, 10, 12, 0.07) 100%),
    linear-gradient(180deg, #f7f2e8 0%, #e5ded0 100%);
  border-top: 1px solid rgba(9, 10, 12, 0.12);
  color: #111214;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(72px, 8vh, 112px) 0;
  position: relative;
}

.lp-faq::before {
  background-image:
    linear-gradient(rgba(9, 10, 12, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 12, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
}

.lp-faq::after {
  color: rgba(9, 10, 12, 0.045);
  content: "?";
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 520px;
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
  position: absolute;
  right: 4%;
  top: 5%;
}

.lp-faq__inner {
  align-items: center;
  display: grid;
  gap: 66px;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-faq__copy {
  max-width: 500px;
}

.lp-faq .section-kicker {
  color: #8f661c;
}

.lp-faq h2 {
  color: #111214;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 62px;
  margin: 0;
}

.lp-faq__lead {
  color: #514c43;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  margin: 24px 0 0;
}

.lp-faq__accordion {
  display: grid;
  gap: 12px;
}

.lp-faq-item {
  background: rgba(255, 252, 244, 0.82);
  border: 1px solid rgba(9, 10, 12, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(9, 10, 12, 0.1);
  overflow: hidden;
  transition: background-color var(--motion-base) var(--ease-editorial), border-color var(--motion-base) var(--ease-editorial), box-shadow var(--motion-base) var(--ease-editorial), transform var(--motion-base) var(--ease-editorial);
}

.lp-faq-item[open] {
  background: #fffaf0;
  border-color: rgba(143, 102, 28, 0.34);
  box-shadow: 0 28px 66px rgba(9, 10, 12, 0.14);
  transform: translateY(-2px);
}

.lp-faq-item summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 18px;
  grid-template-columns: 46px minmax(0, 1fr) 28px;
  list-style: none;
  min-height: 78px;
  padding: 18px 22px;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  align-items: center;
  border: 1px solid rgba(9, 10, 12, 0.22);
  border-radius: 999px;
  color: #111214;
  content: "+";
  display: flex;
  font-size: 21px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  line-height: 1;
  transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-base) var(--ease-editorial);
  width: 28px;
}

.lp-faq-item[open] summary::after {
  background: #111214;
  color: #f7f2e8;
  transform: rotate(45deg) scale(1.06);
}

.lp-faq-item summary span {
  align-items: center;
  background: #111214;
  border-radius: 999px;
  color: #f7f2e8;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 46px;
}

.lp-faq-item summary strong {
  color: #111214;
  display: block;
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
}

.lp-faq-item p {
  color: #575147;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 68px 0 86px;
  transform: translateY(-8px);
  transition: max-height var(--motion-base) var(--ease-editorial), opacity var(--motion-fast) ease, padding var(--motion-base) var(--ease-editorial), transform var(--motion-base) var(--ease-editorial);
}

.lp-faq-item[open] p {
  max-height: 22rem;
  opacity: 1;
  padding-bottom: 24px;
  transform: translateY(0);
}

.lp-final {
  align-items: center;
  background: #090a0c;
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.lp-final__background {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.lp-final__background::before {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96) 0%, rgba(9, 10, 12, 0.9) 36%, rgba(9, 10, 12, 0.58) 66%, rgba(9, 10, 12, 0.26) 100%),
    linear-gradient(180deg, rgba(9, 10, 12, 0.08) 0%, rgba(9, 10, 12, 0.82) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.lp-final__background::after {
  background-image:
    linear-gradient(rgba(247, 242, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  opacity: 0.34;
  position: absolute;
  z-index: 2;
}

.lp-final__background img {
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  opacity: 0.72;
  width: 100%;
}

.lp-final__inner {
  align-items: center;
  display: flex;
  margin: 0 auto;
  max-width: var(--container-max);
  min-height: 100svh;
  padding: 64px var(--container-padding);
  position: relative;
  width: 100%;
  z-index: 3;
}

.lp-final__copy {
  max-width: 820px;
}

.lp-final h2 {
  color: var(--color-text);
  font-family: "Bricolage Grotesque", Manrope, system-ui, sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 62px;
  margin: 0;
}

.lp-final h2 span {
  color: var(--color-accent-strong);
  display: block;
}

.lp-final__lead {
  color: var(--color-text-muted);
  font-size: 20px;
  font-weight: 700;
  line-height: 31px;
  margin: 24px 0 0;
  max-width: 600px;
}

.lp-final__actions {
  align-items: center;
  display: flex;
  gap: 22px;
  margin-top: 30px;
}

.lp-final__actions p {
  color: var(--color-text-subtle);
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
  margin: 0;
  max-width: 260px;
}

.lp-final__cta {
  min-width: 294px;
}

.floating-whatsapp {
  align-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  color: #05130a;
  display: inline-flex;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 10px;
  position: fixed;
  right: 22px;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
  z-index: 40;
}

.floating-whatsapp span {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  display: flex;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.floating-whatsapp svg {
  display: block;
  fill: #128c3f;
  height: 23px;
  width: 23px;
}

.floating-whatsapp strong {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.floating-whatsapp:focus-visible {
  outline: 2px solid var(--color-accent-strong);
  outline-offset: 3px;
}

@media (hover: hover) {
  .lp-project-card:hover img {
    filter: saturate(1.03) contrast(1.02);
    transform: scale(1.018);
  }

  .lp-method-layer:hover {
    border-color: rgba(231, 195, 106, 0.38);
    transform: translateY(-2px);
  }

  .lp-benefit-card:hover {
    background: rgba(247, 242, 232, 0.06);
    transform: translateY(-2px);
  }

  .lp-benefit-card:hover::after {
    transform: scaleX(1);
  }

  .lp-compare-card--premium:hover {
    border-color: var(--color-accent-strong);
  }

  .lp-process-step:hover {
    border-color: rgba(143, 102, 28, 0.36);
    box-shadow: 0 34px 76px rgba(9, 10, 12, 0.2);
    transform: translateX(var(--process-x, 0)) translateY(-8px) rotate(var(--process-tilt, 0deg));
  }

  .lp-process-step:hover::before {
    background: var(--color-accent);
    height: 9px;
  }

  .lp-process-step:hover span {
    background: var(--color-accent);
    color: #121315;
    transform: scale(1.06);
  }

  .lp-guarantee__panel:hover {
    border-color: rgba(231, 195, 106, 0.52);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
  }

  .lp-guarantee__panel:hover .lp-guarantee__portrait img {
    filter: saturate(0.98) contrast(1.04);
  }

  .lp-faq-item:hover {
    border-color: rgba(143, 102, 28, 0.3);
    box-shadow: 0 24px 58px rgba(9, 10, 12, 0.13);
    transform: translateY(-2px);
  }

  .lp-fit-card--yes:hover {
    border-color: rgba(231, 195, 106, 0.5);
    transform: translateY(-2px);
  }

  .lp-fit-card--no:hover {
    border-color: rgba(247, 242, 232, 0.18);
    transform: translateY(-2px);
  }

  .lp-proof-card:hover {
    border-color: rgba(231, 195, 106, 0.36);
    transform: translateY(-2px);
  }

  .lp-final__cta:hover {
    transform: translateY(-2px);
  }

  .floating-whatsapp:hover {
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
    transform: translateY(-2px);
  }
}

/* Snap obrigatório apenas onde todas as seções cabem na viewport (QA: no mobile
   8 seções excedem a tela — snap mandatory ali salta conteúdo). */
@media (prefers-reduced-motion: no-preference) and (min-width: 1025px) {
  html {
    scroll-snap-type: y mandatory;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-method__video {
    display: none;
  }

  .lp-method__poster img {
    transform: none;
  }

  .lp-faq-item,
  .lp-faq-item p,
  .lp-faq-item summary::after {
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .lp-hero__brand,
  .lp-hero h1,
  .lp-hero__lead,
  .lp-hero__statement,
  .lp-hero__actions {
    animation: heroReveal 620ms ease both;
  }

  .lp-hero h1 {
    animation-delay: 90ms;
  }

  .lp-hero__lead {
    animation-delay: 160ms;
  }

  .lp-hero__statement {
    animation-delay: 230ms;
  }

  .lp-hero__actions {
    animation-delay: 300ms;
  }

  .js .js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

  .js .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .js .lp-process__timeline .lp-process-step {
    opacity: 0;
    transform: translateX(var(--process-x, 0)) translateY(38px) rotate(-2deg);
    transition: opacity 520ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .js .lp-process__timeline.is-visible .lp-process-step {
    opacity: 1;
    transform: translateX(var(--process-x, 0)) translateY(0) rotate(var(--process-tilt, 0deg));
  }

  .js .lp-process__timeline.is-visible .lp-process-step:nth-child(2) {
    transition-delay: 80ms;
  }

  .js .lp-process__timeline.is-visible .lp-process-step:nth-child(3) {
    transition-delay: 160ms;
  }

  .js .lp-process__timeline.is-visible .lp-process-step:nth-child(4) {
    transition-delay: 240ms;
  }

  .js .lp-process__timeline.is-visible .lp-process-step:nth-child(5) {
    transition-delay: 320ms;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1025px) {
  .lp-projects__header {
    margin-bottom: 32px;
  }

  .lp-projects h2 {
    max-width: 760px;
  }

  .lp-projects__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-project-card img {
    aspect-ratio: 4 / 3;
  }

  .lp-project-card__caption {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
  }

  .lp-project-card__caption span {
    font-size: 18px;
    line-height: 22px;
  }

  .lp-project-card__caption em {
    white-space: normal;
  }

  .lp-projects__actions {
    margin-top: 30px;
  }
}

@media (min-width: 1025px) and (max-height: 780px) {
  .lp-final__inner {
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .lp-final h2 {
    font-size: 50px;
    line-height: 54px;
    max-width: 760px;
  }

  .lp-final__lead {
    font-size: 18px;
    line-height: 28px;
    margin-top: 18px;
  }

  .lp-final__actions {
    margin-top: 22px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 24px;
  }

  .lp-hero h1 {
    font-size: 46px;
    line-height: 52px;
    max-width: 570px;
  }

  .lp-hero__lead {
    font-size: 19px;
    line-height: 30px;
    max-width: 560px;
  }

  .lp-contrast__inner {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .lp-contrast__copy,
  .lp-contrast__visual {
    max-width: 680px;
  }

  .lp-projects__header {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .lp-method__inner {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .lp-method__copy,
  .lp-method__visual {
    max-width: 720px;
  }

  .lp-compare__inner {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .lp-compare__copy,
  .lp-compare__stage {
    max-width: 720px;
  }

  .lp-compare-card {
    min-height: 318px;
  }

  .lp-fit h2 {
    font-size: 46px;
    line-height: 52px;
  }

  .lp-fit__grid {
    grid-template-columns: 1fr;
  }

  .lp-proof h2 {
    font-size: clamp(26px, 5vw, 34px);
    line-height: 1.15;
  }

  .lp-proof__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .lp-proof-card {
    padding: 12px 12px 12px;
  }

  .lp-proof-card blockquote p {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .lp-fit-card strong {
    font-size: 26px;
    line-height: 32px;
  }

  .lp-process__inner {
    display: block;
  }

  .lp-process__header {
    margin-bottom: 42px;
    max-width: 720px;
  }

  .lp-process h2 {
    font-size: 46px;
    line-height: 52px;
  }

  .lp-process__timeline {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 720px;
    min-height: 0;
  }

  .lp-process-step {
    --process-tilt: 0deg;
    --process-x: 0;
    margin-top: 0;
    min-height: 100px;
  }

  .lp-process-step:nth-child(n) {
    --process-tilt: 0deg;
    --process-x: 0;
    margin-top: 0;
  }

  .lp-process-step:last-child {
    grid-column: 1 / -1;
  }

  .lp-guarantee__inner {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .lp-guarantee__copy,
  .lp-guarantee__panel {
    max-width: 720px;
  }

  .lp-guarantee h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .lp-guarantee__panel {
    min-height: 0;
  }

  .lp-faq__inner {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .lp-faq__copy,
  .lp-faq__accordion {
    max-width: 720px;
  }

  .lp-faq h2 {
    font-size: 46px;
    line-height: 52px;
  }

  .lp-final__background::before {
    background:
      linear-gradient(90deg, rgba(9, 10, 12, 0.96) 0%, rgba(9, 10, 12, 0.88) 52%, rgba(9, 10, 12, 0.42) 100%),
      linear-gradient(180deg, rgba(9, 10, 12, 0.12) 0%, rgba(9, 10, 12, 0.84) 100%);
  }

  .lp-final h2 {
    font-size: 48px;
    line-height: 54px;
    max-width: 720px;
  }

  .lp-final__lead {
    font-size: 19px;
    line-height: 30px;
  }

  .lp-benefits {
    min-height: 100svh;
  }

  .lp-benefits__inner {
    gap: 44px;
    min-height: 0;
  }

  .lp-benefits__copy,
  .lp-benefits__grid {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  :root {
    --container-padding: 20px;
  }

  .lp-fit h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-proof h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  .lp-proof__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lp-proof-card {
    padding: 10px 12px;
  }

  .lp-proof-card blockquote {
    margin-top: 8px;
  }

  .lp-proof-card blockquote p {
    font-size: 12px;
    line-height: 1.35;
  }

  .lp-proof-card figcaption {
    padding-top: 8px;
  }

  .lp-proof-card figcaption strong {
    font-size: 12px;
  }

  .lp-proof-card figcaption span {
    font-size: 10px;
  }

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

  .lp-fit-card strong {
    font-size: 24px;
    line-height: 30px;
  }

  .lp-hero {
    min-height: 100svh;
  }

  .lp-hero__background::before {
    background:
      linear-gradient(180deg, rgba(9, 10, 12, 0.92) 0%, rgba(9, 10, 12, 0.76) 48%, rgba(9, 10, 12, 0.32) 100%),
      linear-gradient(90deg, rgba(9, 10, 12, 0.82), rgba(9, 10, 12, 0.2));
  }

  .lp-hero__background img {
    object-position: 64% center;
  }

  .lp-hero__inner {
    align-items: flex-start;
    min-height: 100svh;
    padding-bottom: 48px;
    padding-top: 44px;
  }

  .lp-hero__copy {
    max-width: none;
    width: 100%;
  }

  .lp-hero__brand {
    font-size: 30px;
    margin-bottom: 44px;
  }

  .lp-hero__brand-mark {
    height: 34px;
    width: 34px;
  }

  .lp-hero h1 {
    font-size: 38px;
    line-height: 44px;
    max-width: 360px;
  }

  .lp-hero__lead {
    font-size: 17px;
    line-height: 27px;
    max-width: 350px;
  }

  .lp-hero__statement {
    font-size: 16px;
    line-height: 24px;
  }

  .button-primary {
    min-height: 54px;
    min-width: 0;
    width: 100%;
  }

  .lp-contrast {
    padding: 76px 0;
  }

  .lp-contrast__inner {
    gap: 40px;
  }

  .section-kicker {
    margin-bottom: 18px;
  }

  .lp-contrast h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-contrast__lead {
    font-size: 17px;
    line-height: 27px;
  }

  .lp-contrast__visual img {
    aspect-ratio: 4 / 5;
    object-position: 55% center;
  }

  .lp-projects {
    padding: 76px 0;
  }

  .lp-projects__header {
    gap: 18px;
    margin-bottom: 32px;
  }

  .lp-projects h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-projects__lead {
    font-size: 16px;
    line-height: 26px;
  }

  .lp-projects__grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .lp-project-card img {
    aspect-ratio: 4 / 3;
  }

  .lp-project-card__caption {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
  }

  .lp-project-card__caption span {
    font-size: 20px;
    line-height: 24px;
  }

  .lp-project-card__caption em {
    white-space: normal;
  }

  .lp-projects__actions {
    margin-top: 28px;
  }

  .lp-method {
    padding: 76px 0;
  }

  .lp-method__inner {
    gap: 36px;
  }

  .lp-method h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-method__lead {
    font-size: 17px;
    line-height: 27px;
  }

  .lp-method__layers {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .lp-method-layer {
    min-height: 112px;
    padding: 16px;
  }

  .lp-method-layer span {
    margin-bottom: 16px;
  }

  .lp-method-layer strong {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .lp-method__poster img {
    aspect-ratio: 4 / 5;
    object-position: 56% center;
  }

  .lp-method__video {
    display: none;
  }

  .lp-benefits {
    padding: 76px 0;
  }

  .lp-benefits__background::before {
    background:
      radial-gradient(ellipse at center, rgba(9, 10, 12, 0.22) 0%, rgba(9, 10, 12, 0.62) 58%, rgba(9, 10, 12, 0.88) 100%),
      linear-gradient(180deg, rgba(9, 10, 12, 0.78) 0%, rgba(9, 10, 12, 0.44) 48%, rgba(9, 10, 12, 0.9) 100%);
  }

  .lp-benefits__background img {
    object-position: center;
  }

  .lp-benefits__inner {
    gap: 34px;
  }

  .lp-benefits h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-benefits__lead {
    font-size: 17px;
    line-height: 27px;
  }

  .lp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .lp-benefit-card {
    min-height: 128px;
    padding: 18px;
  }

  .lp-benefit-card strong {
    font-size: 21px;
    line-height: 26px;
    margin: 0;
    max-width: none;
  }

  .lp-compare {
    padding: 76px 0;
  }

  .lp-compare::after {
    left: 20px;
    right: 20px;
  }

  .lp-compare__inner {
    gap: 34px;
  }

  .lp-compare h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-compare__lead {
    font-size: 17px;
    line-height: 27px;
  }

  .lp-compare__stage {
    grid-template-columns: 1fr;
  }

  .lp-compare-card {
    min-height: 266px;
    padding: 20px;
  }

  .lp-compare-card strong {
    font-size: 28px;
    line-height: 33px;
    margin-top: 18px;
  }

  .lp-compare-card ul {
    gap: 10px;
    margin-top: 28px;
  }

  .lp-compare-card li {
    min-height: 42px;
  }

  .lp-compare__divider {
    height: auto;
    justify-self: center;
    width: auto;
  }

  .lp-process {
    padding: 76px 0;
  }

  .lp-process::after {
    bottom: 120px;
    left: 20px;
    right: 20px;
    top: auto;
  }

  .lp-process__header {
    margin-bottom: 34px;
    text-align: left;
  }

  .lp-process h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-process__lead {
    font-size: 17px;
    line-height: 27px;
  }

  .lp-process__timeline {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lp-process-step,
  .lp-process-step:last-child {
    grid-column: auto;
  }

  .lp-process-step {
    --process-tilt: 0deg;
    display: block;
    margin-top: 0;
    min-height: 158px;
    padding: 18px;
    transform: none;
  }

  .lp-process-step strong {
    font-size: 23px;
    line-height: 28px;
    margin-top: 28px;
  }

  .lp-process-step p {
    font-size: 15px;
    line-height: 22px;
    margin: 14px 0 0;
  }

  .lp-guarantee {
    padding: 76px 0;
  }

  .lp-guarantee::after {
    bottom: 64px;
    left: 20px;
    right: 20px;
  }

  .lp-guarantee__inner {
    gap: 34px;
  }

  .lp-guarantee h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-guarantee__lead {
    font-size: 17px;
    line-height: 27px;
    margin-top: 20px;
  }

  .lp-guarantee__panel {
    padding: 22px 20px 24px;
  }

  .lp-guarantee__portrait {
    margin-bottom: 24px;
    padding: 0 0 18px;
  }

  .lp-guarantee__portrait img {
    flex-basis: 48px;
    height: 48px;
    width: 48px;
  }

  .lp-guarantee__portrait strong {
    font-size: 20px;
  }

  .lp-guarantee__portrait span {
    font-size: 11px;
  }

  .lp-guarantee__panel > strong {
    font-size: 27px;
    line-height: 32px;
  }

  .lp-faq {
    padding: 76px 0;
  }

  .lp-faq::after {
    font-size: 360px;
    right: -22px;
    top: 160px;
  }

  .lp-faq__inner {
    gap: 34px;
  }

  .lp-faq h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lp-faq__lead {
    font-size: 17px;
    line-height: 27px;
  }

  .lp-faq__accordion {
    gap: 10px;
  }

  .lp-faq-item summary {
    gap: 12px;
    grid-template-columns: 38px minmax(0, 1fr) 26px;
    min-height: 72px;
    padding: 16px;
  }

  .lp-faq-item summary span {
    height: 32px;
    width: 38px;
  }

  .lp-faq-item summary strong {
    font-size: 19px;
    line-height: 24px;
  }

  .lp-faq-item summary::after {
    height: 26px;
    width: 26px;
  }

  .lp-faq-item p {
    font-size: 15px;
    line-height: 24px;
    padding: 0 16px 0 66px;
  }

  .lp-faq-item[open] p {
    padding-bottom: 18px;
  }

  .lp-final__background::before {
    background:
      linear-gradient(180deg, rgba(9, 10, 12, 0.92) 0%, rgba(9, 10, 12, 0.72) 46%, rgba(9, 10, 12, 0.94) 100%),
      linear-gradient(90deg, rgba(9, 10, 12, 0.86), rgba(9, 10, 12, 0.32));
  }

  .lp-final__background img {
    object-position: 58% center;
    opacity: 0.58;
  }

  .lp-final__inner {
    align-items: flex-start;
    padding-bottom: 56px;
    padding-top: 60px;
  }

  .lp-final h2 {
    font-size: 38px;
    line-height: 44px;
    max-width: 350px;
  }

  .lp-final__lead {
    font-size: 17px;
    line-height: 27px;
    max-width: 340px;
  }

  .lp-final__actions {
    align-items: flex-start;
    display: block;
    margin-top: 30px;
  }

  .lp-final__cta {
    min-width: 0;
    width: 100%;
  }

  .lp-final__actions p {
    font-size: 14px;
    line-height: 21px;
    margin-top: 16px;
    max-width: 330px;
  }

  .floating-whatsapp {
    bottom: 16px;
    min-height: 52px;
    padding: 0;
    right: 16px;
    width: 52px;
  }

  .floating-whatsapp span {
    background: rgba(255, 255, 255, 0.92);
    height: 36px;
    margin: 0 auto;
    width: 36px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}

/* =============================================================================
   DS v2 — Section shell overrides (anti-clip)
   Garante que seções densas cresçam além de 100svh em vez de cortar conteúdo.
   ============================================================================= */
.lp-projects,
.lp-method,
.lp-benefits,
.lp-fit,
.lp-proof,
.lp-compare,
.lp-process,
.lp-guarantee,
.lp-faq {
  box-sizing: border-box;
  height: auto !important;
  max-height: none !important;
  min-height: var(--section-min-height);
  overflow: visible !important;
  padding-block: var(--section-pad-y);
}

/* Mídia full-bleed ainda clipa o fundo, não o fluxo de texto */
.lp-hero,
.lp-contrast,
.lp-final {
  overflow: hidden;
}

.lp-benefits {
  overflow: hidden;
}

.lp-benefits__inner,
.lp-fit__inner,
.lp-proof__inner,
.lp-projects__inner,
.lp-method__inner,
.lp-compare__inner,
.lp-process__inner,
.lp-guarantee__inner,
.lp-faq__inner {
  width: 100%;
}

/* Títulos de seção densas usam escala do DS */
.lp-fit h2,
.lp-proof h2,
.lp-projects h2,
.lp-method h2,
.lp-benefits h2,
.lp-compare h2,
.lp-process h2,
.lp-guarantee h2,
.lp-faq h2,
.lp-contrast h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}

.lp-fit__lead,
.lp-proof__lead,
.lp-projects__lead,
.lp-method__lead,
.lp-benefits__lead,
.lp-compare__lead,
.lp-process__lead,
.lp-guarantee__lead,
.lp-faq__lead,
.lp-contrast__lead,
.lp-contrast__closing {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

/* Cards padronizados (fit + proof) */
.lp-fit__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-fit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--space-5) var(--space-5) var(--space-6);
  position: relative;
}

.lp-fit-card--yes {
  border-color: rgba(231, 195, 106, 0.34);
  box-shadow: var(--shadow-card);
}

.lp-fit-card--yes::before {
  background: linear-gradient(90deg, rgba(231, 195, 106, 0.9), transparent 70%);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 30%;
  top: 0;
}

.lp-fit-card span {
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-fit-card--no span {
  color: var(--color-text-subtle);
}

.lp-fit-card strong {
  color: var(--color-text);
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin-top: var(--space-3);
}

.lp-fit-card ul {
  color: var(--color-text-muted);
  display: grid;
  gap: var(--space-3);
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
}

.lp-fit-card li {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  padding-left: 18px;
  position: relative;
}

.lp-fit-card li::before {
  font-weight: var(--weight-extrabold);
  left: 0;
  position: absolute;
  top: 0;
}

.lp-fit-card--yes li::before {
  color: var(--color-accent);
  content: "+";
}

.lp-fit-card--no li::before {
  color: var(--color-text-subtle);
  content: "–";
}

.lp-proof-card blockquote p {
  font-size: var(--text-md);
  line-height: var(--leading-snug);
}

/* Snap mais permissivo: evita “pular” conteúdo em seções altas */
@media (prefers-reduced-motion: no-preference) and (min-width: 1025px) {
  html {
    scroll-snap-type: y proximity;
  }

  main > section {
    scroll-snap-stop: normal;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: 24px;
    --section-pad-y: clamp(40px, 5vh, 64px);
    --section-gap: 24px;
  }

  .lp-fit__grid,
  .lp-proof__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container-padding: 20px;
    --section-pad-y: 40px;
    --section-gap: 20px;
    --section-min-height: auto;
  }

  /* No mobile, seções seguem o conteúdo (sem forçar 100svh em blocos densos) */
  .lp-projects,
  .lp-method,
  .lp-benefits,
  .lp-fit,
  .lp-proof,
  .lp-compare,
  .lp-process,
  .lp-guarantee,
  .lp-faq {
    min-height: 0;
  }

  .lp-hero,
  .lp-final {
    min-height: 100svh;
  }
}
