/* ============================================================
   LANDING PAGE — D3 Design
   Dark theme · Geist · Manrope
   ============================================================ */

/* Override global light defaults */
body {
  background: #000;
  color: #fff;
  font-family: 'Manrope', sans-serif;
}

/* Remove grain texture — not needed for dark lp */
body::after { display: none; }

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --lp-bg:          #000000;
  --lp-surface:     #0d0d0d;
  --lp-card:        #111111;
  --lp-card-border: rgba(255, 255, 255, 0.08);

  --lp-white:       #ffffff;
  --lp-white-65:    rgba(255, 255, 255, 0.65);
  --lp-white-55:    rgba(255, 255, 255, 0.55);
  --lp-muted:       rgb(153, 153, 153);

  --lp-font-display: 'Geist', sans-serif;
  --lp-font-body:    'Manrope', sans-serif;

  --lp-pad:    clamp(1.5rem, 5vw, 5rem);
  --lp-max:    1280px;
  --lp-nav-h:  80px;
  --lp-radius: 16px;
  --lp-ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.lp-section__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 var(--lp-pad);
}

.lp-section__rule {
  width: calc(100% - 2 * var(--lp-pad));
  max-width: var(--lp-max);
  margin: 0 auto 80px;
  height: 1px;
  background: rgba(170, 170, 170, 0.45);
}

.lp-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================================
   NAV
   ============================================================ */
.lp-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
  max-height: var(--lp-nav-h);
  overflow: hidden;
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: max-height 1.1s cubic-bezier(0.68, -0.01, 0, 1.03), background 0.35s var(--lp-ease), border-radius 1.7s cubic-bezier(0.68, -0.01, 0, 1.03);
}

.lp-nav.is-scrolled {
  background: rgba(5, 5, 5, 0.85);
}

.lp-nav.is-open {
  max-height: 400px;
  border-radius: 0 0 30px 30px;
}

.lp-nav__inner {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: var(--lp-nav-h);
  flex-shrink: 0;
  padding: 0 var(--lp-pad);
}

.lp-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.lp-nav__logo img {
  height: 22px;
  width: auto;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.lp-nav__link {
  font-family: var(--lp-font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lp-white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lp-nav__link:hover { opacity: 1; }

/* Hamburger button */
.lp-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.lp-nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.7s cubic-bezier(0.68, -0.01, 0, 1.03), opacity 0.3s ease;
}

.lp-nav.is-open .lp-nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.lp-nav.is-open .lp-nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-nav.is-open .lp-nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile dropdown menu */
.lp-nav__mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 28px;
}

.lp-nav__mobile-link {
  font-family: var(--lp-font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lp-nav.is-open .lp-nav__mobile-link { opacity: 0.9; transform: translateY(0); }
.lp-nav.is-open .lp-nav__mobile-link:nth-child(1) { transition-delay: 0.35s; }
.lp-nav.is-open .lp-nav__mobile-link:nth-child(2) { transition-delay: 0.45s; }
.lp-nav.is-open .lp-nav__mobile-link:nth-child(3) { transition-delay: 0.55s; }
.lp-nav.is-open .lp-nav__mobile-link:nth-child(4) { transition-delay: 0.65s; }

.lp-nav__mobile-link:hover { opacity: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: var(--lp-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
}

.lp-btn--nav {
  background: var(--lp-white);
  color: #000;
  padding: 11px 20px;
  border-radius: 40px;
  margin-left: 2rem;
  flex-shrink: 0;
}

.lp-btn--nav:hover { opacity: 0.88; }

.lp-btn--pill {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 14px 24px;
  border-radius: 40px;
}

.lp-btn--pill:hover {
  border-color: var(--lp-white);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.lp-heading-1 {
  font-family: var(--lp-font-body);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lp-white);
}

.lp-heading-2 {
  font-family: var(--lp-font-body);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--lp-white);
}

.lp-body-large {
  font-family: var(--lp-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--lp-white-65);
}

.lp-tag {
  display: inline-block;
  font-family: var(--lp-font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lp-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 6px 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--lp-bg);
  padding-top: 0;
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: calc(var(--lp-nav-h) + 80px) var(--lp-pad) 300px;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.lp-hero__content { max-width: 800px; }

.lp-hero__title {
  font-family: var(--lp-font-display);
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lp-white);
}

.lp-hero__sub {
  font-family: var(--lp-font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--lp-muted);
  max-width: 300px;
  margin-top: 20px;
}

.lp-hero__label {
  font-family: var(--lp-font-display);
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lp-white);
  text-align: right;
  flex-shrink: 0;
  align-self: flex-end;
}

/* ============================================================
   HERO — GRID BACKGROUND
   5 faixas horizontais com matrix idêntica à referência
   ============================================================ */
.lp-hero__grid {
  position: absolute;
  top: -85px;
  left: -39px;
  width: 3500px;
  height: 624px;
  transform: matrix(1.06031, 0.198277, -0.68404, 0.815207, 0, 0);
  transform-origin: 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.lp-hero__row {
  flex: 0 0 150px;
  overflow: hidden;
}

.lp-hero__track {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: max-content;
  animation: lp-scroll-left var(--row-dur, 38s) linear infinite;
  animation-delay: var(--row-delay, 0s);
  animation-play-state: paused;
  will-change: transform;
}

.lp-hero__track--r {
  animation-direction: reverse;
}

.lp-hero__track img {
  height: 150px;
  width: auto;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
  filter: brightness(0.8);
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 38%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(0,0,0,0.92) 100%);
}

@keyframes lp-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TRANSFORM
   ============================================================ */
.lp-transform {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(100px, 12vh, 160px) 0 clamp(220px, 26vh, 320px);
  background: var(--lp-bg);
}

.lp-transform__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--lp-pad);
  gap: 28px;
  margin-bottom: clamp(48px, 6vh, 80px);
}

/* Card 3D — scroll reveal */
.lp-transform__reveal {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 var(--lp-pad);
}

.lp-reveal__perspective {
  perspective: 1200px;
  width: 100%;
  max-width: 980px;
}

.lp-reveal__card {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  will-change: transform, opacity;
  background: #000;
  border: 4px solid #1c1c1c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.35);
  -webkit-mask-image: linear-gradient(to bottom, black 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 68%, transparent 100%);
}

.lp-reveal__card img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-reveal__card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.14) 0%, transparent 16%, transparent 84%, rgba(0, 0, 0, 0.14) 100%);
}

@media (max-width: 768px) {
  .lp-reveal__card {
    border-radius: 18px;
  }
}

.lp-transform__title {
  font-family: var(--lp-font-body);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lp-white);
  max-width: 820px;
}

.lp-transform__desc {
  font-family: var(--lp-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--lp-white-65);
  max-width: 560px;
}

/* ============================================================
   CARDS — shared
   ============================================================ */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.lp-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-card-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-card__title {
  font-family: var(--lp-font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lp-white);
}

.lp-card__text {
  font-family: var(--lp-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--lp-white-65);
}

/* Step cards */
.lp-cards--steps { align-items: stretch; }

.lp-card--step {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.lp-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.lp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--lp-ease);
}

.lp-card--step:hover .lp-card__img img { transform: scale(1.04); }

.lp-step-badge {
  display: inline-block;
  font-family: var(--lp-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 12px;
  margin: 24px 28px 12px;
}

.lp-card--step .lp-card__title { padding: 0 28px; }
.lp-card--step .lp-card__text  { padding: 8px 28px 32px; }

/* ============================================================
   DIVIDER
   ============================================================ */
.lp-divider {
  display: block;
  border: none;
  height: 1px;
  background: rgba(170, 170, 170, 0.45);
  width: calc(100% - 2 * var(--lp-pad));
  max-width: var(--lp-max);
  margin: 0 auto;
}

/* ============================================================
   PAIN
   ============================================================ */
.lp-pain {
  padding: 173px 0 80px;
  background: var(--lp-bg);
}

.lp-pain__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lp-arrow-down {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  opacity: 0.5;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.lp-solution {
  padding: 80px 0 168px;
  background: var(--lp-bg);
}

/* ============================================================
   HOW
   ============================================================ */
.lp-how {
  padding: 57px 0;
  background: var(--lp-bg);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.lp-benefits {
  padding: 80px 0 100px;
  background: var(--lp-bg);
}

.lp-benefits__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 52px;
}

.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 390px 420px;
  gap: 14px;
}

.lp-benefit-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-card-border);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  padding: 10px 10px 0;
}

.lp-benefit-card--wide {
  grid-column: span 3;
}

.lp-benefit-card__img {
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  border-radius: calc(var(--lp-radius) - 5px);
}

.lp-benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--lp-ease);
}

.lp-benefit-card:hover .lp-benefit-card__img img { transform: scale(1.04); }

.lp-benefit-card__body {
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.lp-benefits__stats-col {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-benefits__stat-block {
  flex: 1;
  background: var(--lp-card);
  border: 1px solid var(--lp-card-border);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 28px;
}

.lp-benefits__stat-block--cta {
  justify-content: space-between;
}

.lp-benefits__text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.lp-benefits__text-link:hover { opacity: 0.65; }

.lp-benefits__partners {
  display: flex;
}

.lp-partner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--lp-card);
  object-fit: cover;
  flex-shrink: 0;
}

.lp-partner-avatar + .lp-partner-avatar {
  margin-left: -14px;
}

.lp-stat {
  font-family: var(--lp-font-body);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--lp-white);
  line-height: 1.2;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.lp-portfolio {
  padding: 200px 0;
  background: var(--lp-bg);
}

.lp-portfolio__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 160px;
}

@keyframes lp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lp-gallery {
  width: 100%;
  position: relative;
  padding: 20px 0;
  clip-path: inset(-20px 0);
}

.lp-gallery::before,
.lp-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.lp-gallery::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.lp-gallery::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.lp-gallery__track {
  display: flex;
  width: max-content;
  animation: lp-ticker 32s linear infinite;
  animation-play-state: paused;
}

.lp-gallery__track:hover {
  animation-play-state: paused;
}

.lp-gallery__item {
  flex-shrink: 0;
  border-radius: 10px;
  margin-right: 18px;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.lp-gallery__item:hover {
  transform: scale(1.1);
}

.lp-gallery__item img {
  height: clamp(260px, 36vh, 360px);
  width: auto;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.lp-cta {
  padding: 43px 0;
  background: var(--lp-bg);
}

.lp-cta__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px 10px 10px 10px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-card-border);
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
}

.lp-cta__img {
  overflow: hidden;
  min-height: 340px;
  border-radius: calc(var(--lp-radius) - 4px);
}

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

.lp-cta__content {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.lp-cta__content .lp-heading-2 {
  font-size: clamp(28px, 3.5vw, 52px);
}

.lp-cta__content .lp-btn {
  align-self: flex-start;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  padding: 60px 0 0;
  background: var(--lp-bg);
  overflow: hidden;
}

.lp-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 56px;
}

.lp-footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--lp-white);
  transition: border-color 0.2s, background 0.2s;
}

.lp-footer__icon:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.lp-footer__rule {
  width: calc(100% - 2 * var(--lp-pad));
  max-width: var(--lp-max);
  margin: 0 auto;
  height: 1px;
  background: rgba(170, 170, 170, 0.45);
}

.lp-footer__wordmark {
  font-family: var(--lp-font-display);
  font-size: clamp(80px, 17vw, 240px);
  font-weight: 400;
  line-height: 0.88;
  background: linear-gradient(to top, rgba(255,255,255,0.65), rgba(255,255,255,0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  text-align: center;
  padding: 16px 0 0;
  user-select: none;
  white-space: nowrap;
}

.lp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 24px var(--lp-pad) 40px;
  font-family: var(--lp-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   PROGRESSIVE BLUR OVERLAY — fixed bottom
   ============================================================ */
.lp-blur-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 100;
}

.lp-blur-overlay__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.lp-blur-overlay__inner > div {
  position: absolute;
  inset: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .lp-nav__links  { display: none; }
  .lp-btn--nav    { display: none; }
  .lp-nav__burger { display: flex; }

  .lp-pain__header,
  .lp-benefits__header { grid-template-columns: 1fr; gap: 28px; }

  .lp-cards             { grid-template-columns: 1fr; }
  .lp-benefits__grid    {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .lp-benefit-card--wide,
  .lp-benefit-card,
  .lp-benefits__stats-card,
  .lp-benefits__stats-col { grid-column: span 1; }

  .lp-hero__inner       { flex-direction: column; align-items: flex-start; min-height: auto; }
  .lp-hero__label       { text-align: left; align-self: auto; }

  .lp-cta__card         { grid-template-columns: 1fr; }
  .lp-cta__img          { min-height: 260px; max-height: 320px; }
  .lp-cta__content      { padding: 40px 36px; }



  .lp-footer__bottom    { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 540px) {
  .lp-benefits__grid { grid-template-columns: 1fr; }
  .lp-benefit-card--wide,
  .lp-benefit-card,
  .lp-benefits__stats-card { grid-column: span 1; }

  .lp-hero {
    padding: 0;
    padding-top: var(--lp-nav-h);
  }

  .lp-hero__inner {
    padding: calc(var(--lp-nav-h) + 60px) var(--lp-pad) 80px;
    min-height: calc(100svh - 200px);
    justify-content: flex-end;
    gap: 28px;
  }
}
