/* ============================================
   /free-website landing page styles
   Designed to match the homepage component vocabulary.
   ============================================ */

/* ============================================
   NAV — landing-page version
   transparent at top, solid + shadow on scroll
   ============================================ */
.lp-nav {
  background: transparent;
  border-bottom-color: transparent;
  padding: var(--space-2) 0;
  transition: background var(--dur) var(--ease), box-shadow var(--dur), backdrop-filter var(--dur);
}
.lp-nav.is-scrolled {
  background: rgba(251, 251, 251, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--color-border);
}
.lp-nav .nav__logo img {
  height: 38px;
  transition: filter var(--dur), opacity var(--dur);
}

/* Over the dark hero (NOT scrolled): invert logo to white, lighten phone */
.lp-nav:not(.is-scrolled) .nav__logo img { filter: brightness(0) invert(1) !important; }
.lp-nav:not(.is-scrolled) .lp-nav__phone {
  color: rgba(255, 255, 255, 0.92);
}
.lp-nav:not(.is-scrolled) .lp-nav__phone:hover { color: #fff; }

/* Scrolled state (over white sections): logo back to its original navy color */
.lp-nav.is-scrolled .nav__logo img { filter: none !important; }
.lp-nav.is-scrolled .lp-nav__phone { color: var(--color-text); }
.lp-nav.is-scrolled .lp-nav__phone:hover { color: var(--color-navy); }

.lp-nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.lp-nav__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 40, 107, 0.06);
  border: 1px solid rgba(0, 40, 107, 0.12);
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.lp-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--dur);
}
.lp-nav__phone:hover { color: var(--color-navy); }
.lp-nav__phone svg { stroke: currentColor; flex-shrink: 0; }

@media (max-width: 720px) {
  .lp-nav__pill { display: none; }
  .lp-nav__phone span { display: none; }
  .lp-nav__phone {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .lp-nav.is-scrolled .lp-nav__phone {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
  }
  .lp-nav__right { gap: var(--space-2); }
}

/* hero: extend the homepage .hero--home with right amount of top padding for the fixed nav */
.lp body { background: var(--color-bg); }
.hero--home .hero__inner {
  align-items: center;
}

/* the offer cards */
.lp-offer-grid { gap: var(--space-4); margin-top: var(--space-4); }
.lp-offer-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
}
.lp-offer-card .badge { align-self: flex-start; }
.lp-offer-card__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin: var(--space-3) 0 var(--space-3);
}
.lp-offer-card__price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.lp-offer-card .feature-list { margin-top: var(--space-2); }

.lp-offer-card--dark {
  background: var(--color-dark);
  border-color: #2a2a2a;
  color: #fff;
}
.lp-offer-card--dark .lp-offer-card__price { color: var(--color-gold); }
.lp-offer-card--dark .lp-offer-card__price span { color: rgba(255,255,255,0.6); }
.lp-offer-card--dark .feature-list--dark li { color: rgba(255,255,255,0.85); }
.lp-offer-card--dark .feature-list--dark li::before { color: var(--color-gold); }

/* faq */
.lp-faq { display: grid; gap: var(--space-2); margin-top: var(--space-4); }
.lp-faq__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.lp-faq__item[open] {
  border-color: var(--color-navy);
  box-shadow: 0 4px 16px rgba(0,40,107,0.06);
}
.lp-faq__item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-navy);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.lp-faq__item[open] summary::after { transform: rotate(45deg); }
.lp-faq__item p {
  margin: var(--space-2) 0 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* form on dark navy background */
.lp-form { margin-top: var(--space-4); }
.lp-form .form__label {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  display: block;
}
.lp-form .form__input,
.lp-form .form__textarea,
.lp-form .form__select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: border-color var(--dur), background var(--dur);
}
.lp-form .form__textarea { min-height: 120px; resize: vertical; }
.lp-form .form__input::placeholder,
.lp-form .form__textarea::placeholder { color: rgba(255,255,255,0.4); }
.lp-form .form__input:focus,
.lp-form .form__textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.12);
}
.lp-form .form__group { display: flex; flex-direction: column; margin-bottom: var(--space-3); }
.lp-form .form__row { display: grid; gap: var(--space-3); margin-bottom: 0; }
.lp-form .form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .lp-form .form__row--2 { grid-template-columns: 1fr; } }
.lp-form .form__error { display: none; color: #ffb3b3; font-size: var(--fs-xs); margin-top: 0.3rem; }

.lp-form button[type="submit"] {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}
.lp-form__note {
  margin: var(--space-2) 0 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
}

/* footer (minimal) */
.lp-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  background: var(--color-white);
}
.lp-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.lp-footer a { color: var(--color-text-muted); }
.lp-footer a:hover { color: var(--color-navy); }

/* ============================================
   thank you page styles
   ============================================ */
.lp-thanks {
  padding: calc(var(--space-7) + 80px) 0 var(--space-6);
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}
.lp-thanks h1 {
  max-width: 18ch;
  margin: 0 auto var(--space-3);
}
.lp-thanks__sub {
  max-width: 58ch;
  margin: 0 auto var(--space-5);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.lp-thanks__embed {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-height: 720px;
  text-align: left;
}
.lp-thanks__embed iframe { width: 100% !important; min-height: 700px; border: 0; }

/* small adjustments to hero on this LP */
.lp .hero--home .hero__sub { max-width: 60ch; }
.lp-hero__h1-accent {
  display: inline-block;
  color: var(--color-gold);
  position: relative;
}
.lp-hero__h1-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 0;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 1s var(--ease) 400ms;
}
.lp .hero--home.is-revealed .lp-hero__h1-accent::after { width: 60%; }

/* ============================================
   HERO BULLETS — replaces the confusing stats grid
   ============================================ */
.lp-hero__bullets {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.lp-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.lp-hero__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: grid;
  place-items: center;
}

/* ============================================
   SERVICES MENU — the "what you can pick from" grid
   ============================================ */
.lp-services {
  position: relative;
  z-index: 1;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-services__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.lp-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
@media (max-width: 900px) { .lp-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-services__grid { grid-template-columns: 1fr; } }

.lp-service {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.lp-service:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}
.lp-service__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  display: grid;
  place-items: center;
}
.lp-services__note {
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 64ch;
}

/* commit price block: minimum-spend label */
.lp-commit__price-min-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
}

/* ============================================
   FREE WEBSITE — primary offer card
   ============================================ */
.lp-free-website {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 40, 107, 0.08);
}
.lp-free-website::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-gold) 0%, #e8c357 50%, var(--color-gold) 100%);
}
.lp-free-website__header {
  padding: var(--space-4) var(--space-5) var(--space-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, #fffefa 0%, var(--color-bg-card) 100%);
}
.lp-free-website__tag {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
}
.lp-free-website__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
  flex: 1 1 auto;
  letter-spacing: -0.01em;
}
.lp-free-website__value {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.lp-free-website__body {
  padding: var(--space-4) var(--space-5);
}
.lp-free-website__body .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
}
@media (max-width: 800px) {
  .lp-free-website__body .feature-list { grid-template-columns: 1fr; }
}
.lp-free-website__body .feature-list li strong { color: var(--color-navy); font-weight: 700; }

/* ============================================
   COMMIT — what you do in return
   ============================================ */
.lp-commit {
  margin-top: var(--space-3);
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}
.lp-commit::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,175,55,0.14), transparent 65%);
  pointer-events: none;
}
.lp-commit__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-4);
  align-items: center;
}
@media (max-width: 800px) { .lp-commit__step { grid-template-columns: 1fr; } }
.lp-commit__num {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-2);
}
.lp-commit h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin: 0 0 var(--space-2);
  line-height: 1.2;
}
.lp-commit p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}
.lp-commit__price {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
}
.lp-commit__price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: -0.01em;
}
.lp-commit__price-unit {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-left: 0.3em;
}
.lp-commit__price-min {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   MATH SECTION — visual invoice comparison
   ============================================ */
.lp-math { padding: var(--space-7) 0 var(--space-7); }
.lp-math__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-3);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .lp-math__grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

.lp-invoice {
  position: relative;
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}
.lp-invoice--bad {
  background: #f3f5f7;
  color: var(--color-text-muted);
  border: 1px dashed var(--color-border);
  box-shadow: none;
  filter: grayscale(0.4);
  opacity: 0.92;
}
.lp-invoice--good {
  background: #fff;
  border: 2px solid var(--color-gold);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.28);
  transform: scale(1.02);
}
.lp-invoice__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3);
}
.lp-invoice__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.lp-invoice--bad .lp-invoice__label { color: var(--color-text-muted); }
.lp-invoice__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 40, 107, 0.07);
  color: var(--color-text-dim);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-invoice__chip--gold {
  background: var(--color-gold);
  color: var(--color-dark);
}
.lp-invoice__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
  flex: 1;
}
.lp-invoice__lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  font-size: 0.95rem;
}
.lp-invoice__item { color: var(--color-text); }
.lp-invoice--bad .lp-invoice__item { color: var(--color-text-muted); }
.lp-invoice__amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
}
.lp-invoice--bad .lp-invoice__amount { color: var(--color-text); }
.lp-invoice__amount--free {
  color: var(--color-gold);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  position: relative;
}
.lp-invoice__amount--free::after {
  content: "✓";
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.85em;
  color: var(--color-gold);
}
.lp-invoice__sep {
  border-bottom: 1px dashed var(--color-border);
  height: 1px;
  margin: var(--space-1) 0;
  padding: 0 !important;
}
.lp-invoice__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--space-2) !important;
  margin-top: auto;
}
.lp-invoice__total span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
}
.lp-invoice__total strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.lp-invoice__total--good strong {
  color: var(--color-navy);
}
.lp-invoice__stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(212,175,55,0.35);
}

/* VS divider */
.lp-math__vs {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  position: relative;
  min-width: 70px;
}
.lp-math__vs span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
  .lp-math__vs span { width: 48px; height: 48px; font-size: 1rem; margin: var(--space-1) auto; }
}

/* The "you save" callout */
.lp-math__save {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.4);
  text-align: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.lp-math__save-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.lp-math__save-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.lp-math__save-note {
  display: block;
  margin-top: var(--space-2);
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
}

/* ============================================
   THE DEAL — single offer block
   Big price + what's included + savings callout + what's NOT included
   ============================================ */
.lp-deal {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-5);
  align-items: stretch;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-4);
  box-shadow: 0 16px 48px rgba(0, 40, 107, 0.08);
}
@media (max-width: 800px) { .lp-deal { grid-template-columns: 1fr; } }

.lp-deal__price {
  background: linear-gradient(160deg, var(--color-navy) 0%, #001845 100%);
  color: #fff;
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.lp-deal__price::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  pointer-events: none;
}
.lp-deal__price-label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.lp-deal__price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.lp-deal__price-unit {
  font-size: 0.42em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0.3em;
  letter-spacing: 0;
}
.lp-deal__price-fine {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-width: 30ch;
}

.lp-deal__included {
  padding: var(--space-5) var(--space-4);
}
.lp-deal__included h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.lp-deal__included .feature-list { gap: var(--space-2); }
.lp-deal__included .feature-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}
.lp-deal__included .feature-list li strong { color: var(--color-navy); font-weight: 700; }

/* Savings callout */
.lp-deal-savings {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-top: var(--space-3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.lp-deal-savings__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: grid;
  place-items: center;
}
.lp-deal-savings__copy {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}
.lp-deal-savings__copy strong {
  color: var(--color-navy);
  font-weight: 700;
}

/* "What's NOT included" honesty list */
.lp-deal-not {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: transparent;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
}
.lp-deal-not h4 {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin: 0 0 var(--space-2);
}
.lp-deal-not ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--space-3);
}
.lp-deal-not li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1rem;
}
.lp-deal-not li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--color-text-dim);
  font-weight: 700;
}

/* ============================================
   BEFORE/AFTER SLIDER
   Uses a range input as the controller and CSS clip-path
   on the AFTER side to reveal the BEFORE underneath.
   ============================================ */
.ba-slider {
  --ba-pos: 50%;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: var(--space-4) auto 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  user-select: none;
}
.ba-slider__side {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-slider__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ba-slider__after {
  clip-path: inset(0 0 0 var(--ba-pos));
  z-index: 5;
}
.ba-slider__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  text-align: center;
  background: repeating-linear-gradient(45deg, #f3f5f7, #f3f5f7 12px, #ebeef1 12px, #ebeef1 24px);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  pointer-events: none;
}
.ba-slider__placeholder strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text);
}
.ba-slider__placeholder-icon {
  font-size: 2rem;
  color: var(--color-text-dim);
  line-height: 1;
}
.ba-slider__placeholder code {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  background: rgba(0,40,107,0.08);
  color: var(--color-navy);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
}
/* When an actual before image loads, hide the placeholder */
.ba-slider__before img { position: relative; z-index: 1; }
.ba-slider__before:not(.ba-slider__side--missing) .ba-slider__placeholder { display: none; }
.ba-slider__side--missing img { display: none; }

/* tags */
.ba-slider__tag {
  position: absolute;
  top: var(--space-3);
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 5;
  backdrop-filter: blur(8px);
}
.ba-slider__tag--before { left: var(--space-3); }
.ba-slider__tag--after  { right: var(--space-3); background: var(--color-navy); }

/* handle */
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.2);
}
.ba-slider__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25), inset 0 -2px 0 rgba(0,0,0,0.05);
  transition: transform var(--dur) var(--ease);
}
.ba-slider__handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-dark);
  z-index: 11;
}
.ba-slider:hover .ba-slider__handle::before { transform: translate(-50%, -50%) scale(1.1); }

/* range input — invisible, full-coverage, drives the position */
.ba-slider__range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  cursor: ew-resize;
  z-index: 20;
  opacity: 0;
}
.ba-slider__range::-webkit-slider-thumb { appearance: none; width: 48px; height: 48px; border-radius: 50%; }
.ba-slider__range::-moz-range-thumb { width: 48px; height: 48px; border-radius: 50%; border: 0; }

@media (max-width: 600px) {
  .ba-slider { aspect-ratio: 4 / 5; }
  .ba-slider__handle::before { width: 40px; height: 40px; }
  .ba-slider__tag { font-size: 10px; padding: 0.3rem 0.6rem; top: var(--space-2); }
  .ba-slider__tag--before { left: var(--space-2); }
  .ba-slider__tag--after { right: var(--space-2); }
  .ba-slider__placeholder strong { font-size: 0.95rem; }
  .ba-slider__placeholder { font-size: 0.8rem; }
}

/* ============================================
   SITE PREVIEW — browser-chrome frame with scrolling page
   Used in the hero + each case-feature image area to show
   the full client homepage scrolling into view.
   ============================================ */
.site-preview {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
  position: relative;
}
.site-preview__chrome {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  background: #ebebeb;
  border-bottom: 1px solid #d8d8d8;
}
.site-preview__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.site-preview__dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ccc;
}
.site-preview__dots span:nth-child(1) { background: #ff5f57; }
.site-preview__dots span:nth-child(2) { background: #febc2e; }
.site-preview__dots span:nth-child(3) { background: #28c840; }
.site-preview__url {
  flex: 1;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: #5b5b5b;
  letter-spacing: 0.01em;
  text-align: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-preview__viewport {
  position: relative;
  height: 380px;
  max-height: 380px;
  overflow: hidden !important;
  background: #fff;
}
.site-preview {
  --preview-h: 380px;
}
.site-preview--hero { --preview-h: 420px; }
.case-feature__image .site-preview { --preview-h: 340px; }
@media (max-width: 600px) {
  .site-preview { --preview-h: 240px; }
  .site-preview--hero { --preview-h: 280px; }
  .case-feature__image .site-preview { --preview-h: 220px; }
}

.site-preview__page {
  display: block;
  width: 100%;
  height: auto;
  animation: lp-site-scroll 26s linear infinite;
  will-change: transform;
}
@keyframes lp-site-scroll {
  0%      { transform: translateY(0); }
  6%      { transform: translateY(0); }
  46%     { transform: translateY(calc(-100% + var(--preview-h, 380px))); }
  54%     { transform: translateY(calc(-100% + var(--preview-h, 380px))); }
  94%     { transform: translateY(0); }
  100%    { transform: translateY(0); }
}
.site-preview:hover .site-preview__page {
  animation-play-state: paused;
}
/* If image is shorter than viewport, no scroll needed */
.site-preview__page[data-no-scroll] { animation: none; transform: none !important; }

/* hero variant: a touch larger viewport, deeper drop shadow */
.site-preview--hero .site-preview__viewport { height: 420px !important; max-height: 420px !important; }
.site-preview--hero { box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.08); }

/* Ensure hero grid items align to top, not center, to avoid massive grid height when image is tall */
.lp .hero--home .hero__inner { align-items: start !important; }
.lp .hero--home .hero__content { padding-top: var(--space-3); }
.lp .hero--home .hero__image { max-height: 520px; overflow: hidden; }

/* case-feature override: make the image area accommodate a fixed-height preview, not aspect-ratio */
.case-feature__image {
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-4);
}
.case-feature__image .site-preview { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18); border-color: rgba(0,0,0,0.05); }
.case-feature__image .site-preview__viewport { height: 340px; }
/* Override the global .case-feature__image img rule so the scroll image isn't forced to 100% height */
.case-feature__image .site-preview__page,
.case-feature__image .site-preview img {
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  position: relative !important;
  inset: auto !important;
}

/* alternate every other case-feature so the layout doesn't feel like a list */
.case-feature--reverse { grid-template-columns: 1fr 1.1fr !important; }
.case-feature--reverse .case-feature__image { order: 2; padding-left: 0; }
.case-feature--reverse .case-feature__content { order: 1; padding: var(--space-5) 0 var(--space-5) var(--space-5); }
@media (max-width: 900px) {
  .case-feature--reverse { grid-template-columns: 1fr !important; }
  .case-feature--reverse .case-feature__image,
  .case-feature--reverse .case-feature__content { order: initial; padding: var(--space-3) var(--space-4); }
}

/* mobile: shorter previews so they don't dominate the screen */
@media (max-width: 600px) {
  .site-preview__viewport { height: 240px; }
  .site-preview--hero .site-preview__viewport { height: 280px; }
  .case-feature__image .site-preview__viewport { height: 220px; }
  .site-preview__chrome { padding: 8px 10px; }
  .site-preview__url { font-size: 11px; padding: 3px 8px; }
  .case-feature__image { padding: var(--space-3); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .site-preview__page { animation: none !important; }
}

/* ============================================
   MOTION — graphics with movement
   ============================================ */

/* hero preview: gentle float, animated golden glow */
.lp .hero--home .site-preview--hero {
  animation: lp-float 7s ease-in-out infinite;
  transition: transform 600ms var(--ease);
}
.lp .hero--home .hero__image:hover .site-preview--hero {
  transform: translateY(-6px) scale(1.01);
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* hero image glow pulses */
.lp .hero--home .hero__image::before {
  animation: lp-glow 6s ease-in-out infinite;
}
@keyframes lp-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}

/* logo strip: subtle slide + fade in, then continue with grayscale hover */
.logo-strip img {
  animation: lp-fade-up 600ms var(--ease) backwards;
}
.logo-strip img:nth-child(1) { animation-delay: 0ms; }
.logo-strip img:nth-child(2) { animation-delay: 60ms; }
.logo-strip img:nth-child(3) { animation-delay: 120ms; }
.logo-strip img:nth-child(4) { animation-delay: 180ms; }
.logo-strip img:nth-child(5) { animation-delay: 240ms; }
.logo-strip img:nth-child(6) { animation-delay: 300ms; }
.logo-strip img:nth-child(7) { animation-delay: 360ms; }
.logo-strip img:nth-child(8) { animation-delay: 420ms; }
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 0.45; transform: none; }
}

/* problem cards: hover lift + icon bump */
.problem-card {
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-navy);
  box-shadow: 0 12px 32px rgba(0, 40, 107, 0.08);
}
.problem-card__icon {
  transition: transform var(--dur) var(--ease);
}
.problem-card:hover .problem-card__icon {
  transform: scale(1.1) rotate(-4deg);
}

/* offer cards: hover lift, the dark one glows gold */
.lp-offer-card {
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.lp-offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-navy);
  box-shadow: 0 16px 40px rgba(0, 40, 107, 0.1);
}
.lp-offer-card--dark:hover {
  border-color: var(--color-gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18);
}

/* case-feature cards: image zooms on hover, content sits over a clean reveal */
.case-feature {
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
  overflow: hidden;
}
.case-feature:hover {
  transform: translateY(-3px);
  border-color: var(--color-navy);
  box-shadow: 0 16px 40px rgba(0, 40, 107, 0.1);
}
.case-feature__image .site-preview {
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}
.case-feature:hover .case-feature__image .site-preview {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

/* metric values lighten up subtly on hover */
.case-feature__metric-value {
  transition: color var(--dur), transform var(--dur) var(--ease);
}
.case-feature:hover .case-feature__metric-value {
  color: var(--color-gold);
}

/* results banner numbers: pulsing scale */
.results-banner__item h3 {
  transition: transform var(--dur) var(--ease);
}
.results-banner__item:hover h3 {
  transform: scale(1.06);
}

/* hero stats: gold underline animates in */
.lp .hero__stat-value {
  position: relative;
  display: inline-block;
}
.lp .hero__stat-value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--color-gold);
  transition: width 700ms var(--ease) 200ms;
}
.lp .hero.is-revealed .hero__stat-value::after { width: 28px; }

/* process cards: gold border on hover */
.process-card {
  transition: transform var(--dur) var(--ease), border-color var(--dur), background var(--dur);
}
.process-card:hover {
  transform: translateY(-4px);
}
.process-card__num {
  transition: transform var(--dur) var(--ease), text-shadow var(--dur);
}
.process-card:hover .process-card__num {
  transform: scale(1.12);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* reveal-on-scroll (scoped + improved) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* slight stagger: when a parent has reveal, children with reveal-child get delayed */
.reveal.is-visible .reveal-child:nth-child(1) { transition-delay: 80ms; }
.reveal.is-visible .reveal-child:nth-child(2) { transition-delay: 160ms; }
.reveal.is-visible .reveal-child:nth-child(3) { transition-delay: 240ms; }
.reveal.is-visible .reveal-child:nth-child(4) { transition-delay: 320ms; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp .hero--home .hero__image img,
  .lp .hero--home .hero__image::before,
  .logo-strip img {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition: none !important; }
}

/* mobile tightening */
@media (max-width: 600px) {
  .lp .hero--home {
    padding-top: calc(var(--space-6) + 70px);
    padding-bottom: var(--space-6);
  }
  .lp .hero--home h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .lp .hero--home .hero__sub {
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
  .lp .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: var(--space-3);
    margin-top: var(--space-4);
  }
  .lp .hero__stat-value { font-size: 1.5rem; }
  .lp-section h2,
  .lp .section--dark h2,
  .lp .section--navy h2,
  .lp .section-header h2,
  .lp section h2,
  .lp h2 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }
  .section-header p,
  .lead {
    font-size: 0.95rem;
  }
  .lp-offer-card { padding: var(--space-3); }
  .lp-offer-card__price { font-size: 2rem; }
  .results-banner { gap: var(--space-2); }
  .results-banner__item h3 { font-size: 1.6rem; }
  .lp-footer__inner { justify-content: center; text-align: center; flex-direction: column; gap: var(--space-2); }
  .lp-nav .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  /* hero CTAs stack on the smallest screens for breathing room */
  .lp .hero__ctas { gap: var(--space-2); }
  .lp .hero__ctas .btn { width: 100%; justify-content: center; }

  /* problem-card content needs to wrap cleanly */
  .problem-card h3 { font-size: 0.98rem; line-height: 1.3; }
  .problem-card p { font-size: 0.88rem; }

  /* feature lists slightly tighter */
  .feature-list li { font-size: 0.93rem; line-height: 1.55; }

  /* faq titles */
  .lp-faq__item summary { font-size: 0.95rem; }

  /* ============================================
     MOBILE OVERFLOW NUKE — final fix for content extending past viewport.
     The root cause was the .hero__inner grid items defaulting to min-width: auto
     (the intrinsic size of their content). Force min-width: 0 + box-sizing on all
     grid/flex containers so they collapse to actual viewport width.
     ============================================ */
  html, body {
    overflow-x: clip !important;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  .lp main { overflow-x: clip; max-width: 100vw; }
  .lp section { max-width: 100vw; overflow-x: clip; }
  .lp .container,
  .lp .container-narrow {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 var(--space-3);
  }
  .lp .hero__inner,
  .lp .hero__content,
  .lp .hero__image,
  .lp .grid,
  .lp .problem-grid,
  .lp .case-feature,
  .lp .process-timeline,
  .lp .process,
  .lp .results-banner,
  .lp .lp-offer-grid {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .lp .hero__inner > *,
  .lp .hero__content > *,
  .lp .grid > *,
  .lp .problem-grid > *,
  .lp .case-feature > *,
  .lp .process-timeline > *,
  .lp .results-banner > *,
  .lp .lp-offer-grid > * {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .lp h1, .lp h2, .lp h3, .lp p {
    max-width: 100% !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .lp .hero__image img { max-width: 100% !important; margin-left: 0 !important; height: auto; }

  /* Show hero preview on mobile but tighter so it doesn't dominate. */
  .lp .hero--home .hero__inner { grid-template-columns: 1fr !important; gap: var(--space-4) !important; }
  .lp .hero--home .hero__image { margin-top: var(--space-2); }

  /* H1 word-break — the gold underlined "We Run the Marketing." was the widest grid-content.
     Force break-word so the grid track collapses to viewport width. */
  .lp .hero--home h1,
  .lp .hero--home .lp-hero__h1-accent {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: auto;
  }
  .lp .hero--home h1 { font-size: 1.65rem !important; line-height: 1.15 !important; }
  .lp-hero__h1-accent { display: block !important; margin-top: 0.2rem; }
  .lp .hero__sub { padding-right: 4px; }

  /* uppercase labels (stat labels, trust line, eyebrows) get cramped at mobile widths.
     Shrink letter-spacing + font size so they fit. */
  .lp .hero__stat-label,
  .lp .results-banner__item p,
  .lp .case-feature__metric-label,
  .lp .testimonial__author,
  .lp .blog-card__meta {
    letter-spacing: 0.04em !important;
    font-size: 0.7rem !important;
  }
  .lp .eyebrow {
    letter-spacing: 0.07em !important;
    font-size: 0.7rem !important;
  }
  .lp [style*="text-transform: uppercase"],
  .lp .logo-strip ~ p,
  .lp section.tight p {
    letter-spacing: 0.05em !important;
    font-size: 0.65rem !important;
  }

  /* ============================================
     FINAL OVERFLOW FIX: tighter container padding + per-section size caps
     ============================================ */
  .lp .container { padding: 0 16px !important; }
  .lp .container-narrow { padding: 0 16px !important; }

  /* Force every direct text element inside content sections to wrap at viewport */
  .lp .section-header h2,
  .lp .case-feature__content h3,
  .lp .problem-card h3,
  .lp .lp-offer-card h3,
  .lp .process-card h3,
  .lp .testimonial__quote,
  .lp .lp-faq__item summary,
  .lp .feature-list li,
  .lp p,
  .lp .lead {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  /* problem card heading: smaller font so each headline wraps cleanly inside the card */
  .lp .problem-card h3 { font-size: 0.92rem !important; line-height: 1.3 !important; }
  .lp .problem-card p { font-size: 0.82rem !important; line-height: 1.5 !important; }
  .lp .case-feature__content h3 { font-size: 1rem !important; line-height: 1.25 !important; }
  .lp .case-feature__content p { font-size: 0.88rem !important; }
  .lp .case-feature__metric-value { font-size: 1.1rem !important; }
  .lp .case-feature__metric-label { font-size: 0.62rem !important; line-height: 1.3; }
  .lp .lp-faq__item summary { font-size: 0.92rem !important; }
  .lp .lp-faq__item p { font-size: 0.85rem !important; }
  .lp .testimonial__quote { font-size: 0.88rem !important; line-height: 1.6 !important; }
  .lp .testimonial__author { font-size: 0.62rem !important; letter-spacing: 0.04em !important; }

  /* Logo strip: tighter gap so 8 logos can fit on mobile via wrap */
  .lp .logo-strip { gap: var(--space-3); padding: var(--space-2) 0; }
  .lp .logo-strip img { height: 22px; }

  /* Problem grid: more compact card padding so the icon + text can co-exist */
  .lp .problem-card { padding: var(--space-3); gap: var(--space-2); }
  .lp .problem-card__icon { width: 32px; height: 32px; font-size: 1.1rem; }

  /* Section eyebrow text wraps */
  .lp .section-header { padding: 0; max-width: 100%; }
  .lp .section-header p,
  .lp .lead {
    padding: 0;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .lp .section-header p[class*="lead"],
  .lp p.lead { padding: 0 8px; }

  /* Case-feature: drop the padding on the image so the preview fits the card width */
  .lp .case-feature__image { padding: var(--space-3) !important; }
  .lp .case-feature__content { padding: 0 var(--space-3) var(--space-3) !important; }

  /* nav CTA on mobile: shorter label so it doesn't get clipped */
  .lp-nav .lp-nav__right .btn span.long { display: none; }
  .lp-nav .lp-nav__right .btn span.short { display: inline; }
}
@media (min-width: 601px) {
  .lp-nav .lp-nav__right .btn span.long { display: inline; }
  .lp-nav .lp-nav__right .btn span.short { display: none; }
}

/* ============================================
   FINAL MOBILE OVERFLOW PROTECTION
   Hard guarantee that nothing extends past viewport on small screens.
   Applied at every relevant breakpoint with maximum specificity.
   ============================================ */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  body * {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .lp .container,
  .lp .container-narrow {
    max-width: 100vw !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
  .lp h1, .lp h2, .lp h3, .lp h4, .lp h5, .lp h6,
  .lp p, .lp li, .lp span, .lp blockquote,
  .lp summary, .lp strong, .lp em, .lp a, .lp label {
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: auto;
  }
  /* prevent any flex/grid item from forcing wider than parent */
  .lp .grid > *,
  .lp .hero__inner > *,
  .lp .hero__content > *,
  .lp .lp-deal > *,
  .lp .lp-commit > *,
  .lp .lp-math__grid > *,
  .lp .case-feature > *,
  .lp .ba-slider > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* keep images from breaking layout */
  .lp img:not(.site-preview__page) {
    max-width: 100% !important;
    height: auto !important;
  }
  /* logo strip: tighter wrap, smaller logos so 8 of them fit on small screens */
  .lp .logo-strip { gap: 14px !important; }
  .lp .logo-strip img { height: 20px !important; }
}

