/* ==========================================================================
 ALG Landers - landing.css
 Shared styles for /web/landing1.html, landing2.html, landing3.html
 Builds on /web/assets/styles.css. NO rust accents - beige/ink only.
 Mobile-first. LCP target ≤1.5s on 4G. Page weight ≤150 KB.
 ========================================================================== */

/* ---------- Lander-only tokens ---------- */
:root {
 --lander-max: 1100px;
 --lander-narrow: 720px;
 --lander-cta-bg: #1a1614; /* ink */
 --lander-cta-fg: #fbfaf6; /* cream */
 --lander-cta-hover: #2a2421;
 --lander-stat: #7a5e4a; /* taupe - numerical highlight */
 --lander-trust-bg: #fbfaf6;
 --lander-band-bg: #1a1614;
 --lander-band-fg: #f1ece3;
 --lander-band-accent: #cba27a; /* beige, replaces rust for urgency */
}

/* ---------- Lander body wrapper ---------- */
.lander {
 background: var(--color-bg);
 color: var(--color-ink);
 font-family: var(--font-sans);
 line-height: 1.55;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}
.lander h1, .lander h2, .lander h3 {
 font-family: var(--font-serif);
 font-weight: 700;
 letter-spacing: -0.01em;
}
.lander .container {
 max-width: var(--lander-max);
 margin: 0 auto;
 padding: 0 24px;
}
.lander .narrow {
 max-width: var(--lander-narrow);
}
.lander img { max-width: 100%; height: auto; display: block; }

/* ---------- Sticky click-to-call header ---------- */
.lander-header {
 position: sticky;
 top: 0;
 z-index: 50;
 background: rgba(241, 236, 227, 0.97);
 backdrop-filter: saturate(140%) blur(8px);
 -webkit-backdrop-filter: saturate(140%) blur(8px);
 border-bottom: 1px solid var(--color-rule-soft);
}
.lander-header__inner {
 max-width: var(--lander-max);
 margin: 0 auto;
 padding: 12px 24px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
}
.lander-header__brand {
 display: flex; align-items: center;
 text-decoration: none; color: var(--color-ink);
}
.lander-header__brand img {
 width: auto;
 height: 38px;
 max-width: 200px;
 display: block;
}
@media (max-width: 540px) {
 .lander-header__brand img { height: 32px; max-width: 160px; }
}
.lander-header__call {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 10px 18px;
 background: var(--lander-cta-bg);
 color: var(--lander-cta-fg);
 border-radius: var(--r-button);
 font-weight: 600;
 font-size: 14px;
 text-decoration: none;
 letter-spacing: 0.01em;
 transition: background var(--t);
 min-height: 44px;
}
.lander-header__call:hover { background: var(--lander-cta-hover); }
.lander-header__call svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
 padding: 56px 0 64px;
 border-bottom: 1px solid var(--color-rule-soft);
}
.hero__eyebrow {
 display: inline-block;
 font-size: 11px;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--color-accent-deep);
 margin-bottom: 18px;
 padding: 4px 10px;
 border: 1px solid var(--color-rule);
 border-radius: var(--r-pill);
 background: var(--color-bg-cream);
}
.hero__h1 {
 font-size: clamp(28px, 5vw, 44px);
 line-height: 1.12;
 margin: 0 0 18px;
 max-width: 720px;
}
.hero__h1 em {
 font-style: italic;
 color: var(--color-accent-deep);
}
.hero__sub {
 font-size: clamp(15px, 2vw, 18px);
 color: var(--color-ink-soft);
 max-width: 640px;
 margin: 0 0 28px;
}
.hero__ctas {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-bottom: 24px;
}
.hero__trust {
 display: flex;
 flex-wrap: wrap;
 gap: 18px 28px;
 align-items: center;
 margin-top: 28px;
 padding-top: 24px;
 border-top: 1px solid var(--color-rule-soft);
}
.hero__trust-item {
 display: flex;
 align-items: center;
 gap: 8px;
 font-size: 13px;
 color: var(--color-ink-soft);
}
.hero__trust-item strong {
 font-family: var(--font-mono);
 color: var(--color-ink);
 font-size: 15px;
}

/* ---------- Buttons ---------- */
.btn-primary {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 14px 22px;
 background: var(--lander-cta-bg);
 color: var(--lander-cta-fg);
 border-radius: var(--r-button);
 font-weight: 600;
 font-size: 15px;
 text-decoration: none;
 border: 1px solid var(--lander-cta-bg);
 cursor: pointer;
 transition: background var(--t), transform var(--t);
 min-height: 48px;
 font-family: var(--font-sans);
}
.btn-primary:hover { background: var(--lander-cta-hover); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 14px 22px;
 background: transparent;
 color: var(--color-ink);
 border-radius: var(--r-button);
 font-weight: 600;
 font-size: 15px;
 text-decoration: none;
 border: 1px solid var(--color-ink);
 cursor: pointer;
 transition: background var(--t), color var(--t);
 min-height: 48px;
}
.btn-secondary:hover { background: var(--color-ink); color: var(--lander-cta-fg); }

/* ---------- Hero layouts (variant-specific) ---------- */
/* Variant A - text + portrait */
.hero--ed {
 display: grid;
 grid-template-columns: 1.4fr 1fr;
 gap: 56px;
 align-items: center;
}
.hero--ed .hero__visual {
 position: relative;
 aspect-ratio: 4 / 5;
 background: var(--color-bg-cream);
 border-radius: var(--r-card);
 overflow: hidden;
 border: 1px solid var(--color-rule-soft);
}

/* Variant B - text + form side-by-side */
.hero--form {
 display: grid;
 grid-template-columns: 1.1fr 1fr;
 gap: 48px;
 align-items: start;
}

/* Variant C - text + dual portrait */
.hero--bilingual {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 48px;
 align-items: center;
}
.hero--bilingual .lang-strip {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin: 0 0 24px;
 padding: 12px 16px;
 background: var(--color-bg-cream);
 border: 1px solid var(--color-rule-soft);
 border-radius: var(--r-card);
}
.hero--bilingual .lang-strip span {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-size: 13px;
 color: var(--color-ink-soft);
}
.hero--bilingual .lang-strip span::before {
 content: "•";
 color: var(--color-accent-deep);
 font-weight: 700;
}

/* ---------- Silhouette portraits (placeholders) ---------- */
.silhouette {
 width: 100%;
 height: 100%;
 display: block;
}
.silhouette--single,
.silhouette--dual {
 background: linear-gradient(180deg, #e6dcc7 0%, #cba27a 100%);
}

/* Cutout hero: transparent-PNG headshot floating on page bg.
 Bottom of image sits FLUSH on the hero/stats divider line - not past it.
 Hero has padding-bottom: 64px, so we use margin-bottom: -64px to bring
 the image down to the section's bottom border exactly.
 Doubled selector raises specificity over `.hero--ed .hero__visual`. */
.hero__visual.hero__visual--cutout {
 background: transparent;
 border: 0;
 aspect-ratio: auto;
 border-radius: 0;
 overflow: visible;
 display: flex;
 align-items: flex-end;
 justify-content: center;
 overflow: visible;
 align-self: end;
 margin-bottom: -64px;
 position: relative;
 z-index: 2;
}
.hero__visual--cutout picture,
.hero__visual--cutout img {
 display: block;
 width: 100%;
 height: auto;
 max-height: 820px;
 object-fit: contain;
 object-position: bottom center;
}

/* On lander A (education-first hero with Alan cutout), give the image
 column more relative width so a 4:5 portrait reads at the same visual
 scale as Almara's square cutout on lander C. The selector targets only
 the .hero--ed when it contains a cutout, so it doesn't affect any
 future card-style hero usage. */
.hero--ed:has(.hero__visual--cutout) {
 grid-template-columns: 1.1fr 1fr;
}

/* Duo cutout: Alan + Almara side-by-side, both sitting on the divider.
 Alan slightly behind/left, Almara slightly forward/right. */
.hero__visual--duo {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: end;
 gap: 0;
 /* slight overlap so they share visual space without colliding */
}
.hero__visual--duo picture {
 height: 100%;
}
.hero__visual--duo picture:first-child {
 /* Alan, left side, slightly larger so he reads as the senior partner */
 margin-right: -8%;
 z-index: 1;
}
.hero__visual--duo picture:first-child img {
 max-height: 720px;
}
.hero__visual--duo picture:last-child {
 /* Almara, right side */
 margin-left: -8%;
 z-index: 2;
}
.hero__visual--duo picture:last-child img {
 max-height: 700px;
}
/* Make sure the hero section doesn't clip the overflowing cutout */
.hero { overflow: visible; }
/* Hero variant override: bilingual hero is end-aligned so cutout sits at floor */
.hero--bilingual {
 align-items: end;
 /* Tighten right-column allocation so Almara reads larger relative to copy */
 grid-template-columns: 1fr 1fr;
}

/* Team avatar - image overrides SVG default */
.team__avatar img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 30%;
 display: block;
}

/* ---------- Stat strip ---------- */
.stats {
 background: var(--color-bg-cream);
 border-top: 1px solid var(--color-rule-soft);
 border-bottom: 1px solid var(--color-rule-soft);
 padding: 36px 0;
}
.stats__grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 32px;
 text-align: center;
}
.stat__num {
 font-family: var(--font-mono);
 font-size: clamp(22px, 4vw, 30px);
 font-weight: 700;
 color: var(--lander-stat);
 display: block;
 line-height: 1.1;
}
.stat__label {
 font-size: 12px;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--color-ink-muted);
 margin-top: 8px;
}

/* ---------- Section ---------- */
.section {
 padding: 64px 0;
}
.section--soft { background: var(--color-bg-cream); }
.section--punch { background: var(--color-bg-taupe); }
.section__h2 {
 font-size: clamp(24px, 3.5vw, 32px);
 line-height: 1.2;
 margin: 0 0 12px;
}
.section__lead {
 font-size: 16px;
 color: var(--color-ink-soft);
 max-width: 600px;
 margin: 0 0 36px;
}

/* ---------- Steps (4-step "first 48h") ---------- */
.steps {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
 counter-reset: step;
}
.step {
 background: var(--color-bg-soft);
 border: 1px solid var(--color-rule-soft);
 border-radius: var(--r-card);
 padding: 24px;
 position: relative;
}
.step::before {
 counter-increment: step;
 content: counter(step);
 font-family: var(--font-mono);
 font-size: 13px;
 font-weight: 700;
 color: var(--color-accent-deep);
 letter-spacing: 0.1em;
 display: block;
 margin-bottom: 10px;
}
.step h3 {
 font-size: 17px;
 margin: 0 0 8px;
}
.step p {
 font-size: 14px;
 color: var(--color-ink-soft);
 margin: 0;
}

/* ---------- Result tiles ---------- */
.results {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}
.result {
 background: var(--color-bg-soft);
 border: 1px solid var(--color-rule-soft);
 border-radius: var(--r-card);
 padding: 28px 24px;
}
.result__amount {
 font-family: var(--font-mono);
 font-size: 28px;
 font-weight: 700;
 color: var(--color-ink);
 letter-spacing: -0.01em;
}
.result__type {
 font-size: 12px;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--color-accent-deep);
 margin-top: 4px;
 margin-bottom: 14px;
}
.result__summary {
 font-size: 14px;
 color: var(--color-ink-soft);
 line-height: 1.55;
}
.result__disclaimer {
 font-size: 11px;
 color: var(--color-ink-muted);
 margin-top: 14px;
 font-style: italic;
}

/* ---------- Featured results (lander A): bigger tiles, bigger amounts ---------- */
.section--results .section__h2--center {
 text-align: center;
 margin-bottom: 32px;
}
.results--featured {
 gap: 24px;
}
.results--featured .result {
 padding: 36px 30px;
 border-color: var(--color-rule);
 box-shadow: 0 1px 0 rgba(26, 22, 20, 0.04),
 0 14px 32px -22px rgba(26, 22, 20, 0.18);
 transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.results--featured .result:hover {
 transform: translateY(-3px);
 box-shadow: 0 1px 0 rgba(26, 22, 20, 0.06),
 0 22px 44px -22px rgba(26, 22, 20, 0.28);
}
.results--featured .result__amount {
 font-size: clamp(32px, 4vw, 42px);
 line-height: 1.1;
 letter-spacing: -0.02em;
}
.results--featured .result__type {
 font-size: 12.5px;
 letter-spacing: 0.12em;
 margin-top: 8px;
 margin-bottom: 18px;
 font-weight: 700;
}
.results--featured .result__summary {
 font-size: 14.5px;
 line-height: 1.6;
}

/* CTA button under featured results */
.results__cta {
 margin-top: 36px;
 display: flex;
 justify-content: center;
}
.results__cta .btn-primary {
 min-width: 260px;
 padding: 16px 32px;
 font-size: 15px;
}

/* ---------- Tagline band (lander A: "Because YOU matter") ---------- */
.tagline-band {
 background: var(--color-accent-deep);
 color: var(--color-bg-cream);
 padding: 38px 0;
 text-align: center;
 border-top: 1px solid rgba(26, 22, 20, 0.08);
 border-bottom: 1px solid rgba(26, 22, 20, 0.08);
}
.tagline-band__text {
 font-family: var(--font-serif);
 font-size: clamp(26px, 4vw, 38px);
 line-height: 1.2;
 letter-spacing: -0.01em;
 margin: 0;
 color: inherit;
}
.tagline-band__text em {
 font-style: italic;
 color: #fff;
 position: relative;
 padding: 0 0.05em;
}
.tagline-band__text em::after {
 content: "";
 position: absolute;
 left: 0.05em;
 right: 0.05em;
 bottom: 0.06em;
 height: 2px;
 background: rgba(255, 255, 255, 0.45);
}

/* ---------- Why ALG (icon list) ---------- */
.why {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px 36px;
}
.why__item {
 display: flex;
 gap: 14px;
 align-items: flex-start;
}
.why__icon {
 flex: 0 0 36px;
 height: 36px;
 border-radius: 50%;
 background: var(--color-bg-taupe);
 color: var(--color-ink);
 display: grid;
 place-items: center;
 font-family: var(--font-serif);
 font-weight: 700;
}
.why__item h3 {
 font-family: var(--font-sans);
 font-size: 15px;
 margin: 4px 0 4px;
}
.why__item p {
 font-size: 14px;
 color: var(--color-ink-soft);
 margin: 0;
}

/* ---------- Form card ---------- */
.lead-form {
 background: var(--color-bg-soft);
 border: 1px solid var(--color-rule);
 border-radius: var(--r-card);
 padding: 28px;
 box-shadow: var(--shadow-card);
}
.lead-form__h {
 font-size: 22px;
 margin: 0 0 6px;
}
.lead-form__sub {
 font-size: 13px;
 color: var(--color-ink-muted);
 margin: 0 0 20px;
}
.lead-form .row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
 margin-bottom: 12px;
}
.lead-form label {
 display: block;
 font-size: 12px;
 font-weight: 600;
 color: var(--color-ink-soft);
 letter-spacing: 0.04em;
 margin-bottom: 6px;
 text-transform: uppercase;
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form select {
 width: 100%;
 padding: 12px 14px;
 font-size: 16px; /* iOS no-zoom */
 font-family: var(--font-sans);
 color: var(--color-ink);
 background: var(--color-bg-soft);
 border: 1px solid var(--color-rule);
 border-radius: var(--r-input);
 transition: border-color var(--t), box-shadow var(--t);
 min-height: 44px;
 -webkit-appearance: none;
 appearance: none;
}
.lead-form select {
 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%231a1614' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
 background-repeat: no-repeat;
 background-position: right 14px center;
 padding-right: 36px;
}
.lead-form input:focus,
.lead-form select:focus {
 outline: none;
 border-color: var(--color-ink);
 box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.lead-form .field { margin-bottom: 12px; }
.lead-form .submit-row { margin-top: 18px; }
.lead-form button[type="submit"] {
 width: 100%;
 padding: 16px;
 font-size: 16px;
 font-weight: 700;
 background: var(--lander-cta-bg);
 color: var(--lander-cta-fg);
 border: none;
 border-radius: var(--r-button);
 cursor: pointer;
 letter-spacing: 0.01em;
 transition: background var(--t);
 min-height: 52px;
 font-family: var(--font-sans);
}
.lead-form button[type="submit"]:hover { background: var(--lander-cta-hover); }
.lead-form button[type="submit"]:disabled {
 opacity: 0.6;
 cursor: not-allowed;
}
.lead-form .tcpa {
 font-size: 11px;
 color: var(--color-ink-muted);
 line-height: 1.5;
 margin-top: 12px;
}
.lead-form .tcpa a { color: var(--color-ink); }
.lead-form .form-error {
 background: #f4d4d0;
 color: #a32d2d;
 border: 1px solid rgba(163, 45, 45, 0.3);
 border-radius: var(--r-input);
 padding: 10px 14px;
 font-size: 13px;
 margin-bottom: 12px;
 display: none;
}
.lead-form .form-error.is-visible { display: block; }
.lead-form .form-success {
 background: var(--color-bg-cream);
 border: 1px solid var(--color-rule);
 border-radius: var(--r-card);
 padding: 28px;
 text-align: center;
}
.lead-form .form-success h3 {
 font-family: var(--font-serif);
 font-size: 22px;
 margin: 0 0 10px;
}
.lead-form .form-success p {
 font-size: 14px;
 color: var(--color-ink-soft);
 margin: 0 0 6px;
}

/* honeypot - visually hidden but in flow */
.lead-form .hp {
 position: absolute;
 left: -9999px;
 top: -9999px;
 width: 1px;
 height: 1px;
 opacity: 0;
}

/* ---------- Urgency band (no rust) ---------- */
.urgency-band {
 background: var(--lander-band-bg);
 color: var(--lander-band-fg);
 padding: 36px 0;
 border-top: 4px solid var(--lander-band-accent);
}
.urgency-band__inner {
 max-width: var(--lander-max);
 margin: 0 auto;
 padding: 0 24px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 flex-wrap: wrap;
}
.urgency-band h3 {
 font-size: clamp(18px, 2.5vw, 22px);
 margin: 0;
 color: var(--lander-band-fg);
}
.urgency-band p {
 font-size: 14px;
 color: rgba(241, 236, 227, 0.78);
 margin: 6px 0 0;
}
.urgency-band .btn-primary {
 background: var(--lander-band-accent);
 color: var(--color-ink);
 border-color: var(--lander-band-accent);
 font-weight: 700;
}
.urgency-band .btn-primary:hover {
 background: #d8b288;
 color: var(--color-ink);
}

/* ---------- Testimonial ---------- */
.testimonial {
 background: var(--color-bg-cream);
 border-left: 4px solid var(--color-accent-deep);
 padding: 24px 28px;
 border-radius: 0 var(--r-card) var(--r-card) 0;
 font-family: var(--font-serif);
 font-size: 17px;
 line-height: 1.5;
 color: var(--color-ink);
}
.testimonial cite {
 display: block;
 margin-top: 14px;
 font-style: normal;
 font-family: var(--font-sans);
 font-size: 13px;
 color: var(--color-ink-muted);
 letter-spacing: 0.04em;
}

/* ---------- Team mini-cards (variant C) ---------- */
.team {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
}
.team__card {
 background: var(--color-bg-soft);
 border: 1px solid var(--color-rule-soft);
 border-radius: var(--r-card);
 padding: 24px;
 display: flex;
 gap: 18px;
 align-items: flex-start;
}
.team__avatar {
 flex: 0 0 72px;
 width: 72px;
 height: 72px;
 border-radius: 50%;
 background: linear-gradient(180deg, #e6dcc7 0%, #cba27a 100%);
 position: relative;
 overflow: hidden;
}
.team__avatar svg { width: 100%; height: 100%; }
.team__name {
 font-family: var(--font-serif);
 font-size: 18px;
 font-weight: 700;
 margin: 0 0 4px;
}
.team__role {
 font-size: 12px;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--color-accent-deep);
 margin: 0 0 8px;
}
.team__lang {
 font-size: 13px;
 color: var(--color-ink-soft);
 margin: 0;
}

/* ---------- Footer ---------- */
.lander-footer {
 background: var(--color-bg);
 border-top: 1px solid var(--color-rule-soft);
 padding: 36px 0 24px;
 font-size: 13px;
 color: var(--color-ink-soft);
}
.lander-footer__top {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr;
 gap: 36px;
 margin-bottom: 28px;
}
.lander-footer__brand strong {
 font-family: var(--font-serif);
 font-size: 16px;
 display: block;
 color: var(--color-ink);
 margin-bottom: 6px;
}
.lander-footer__brand .footer-phone,
.lander-footer__brand a[href^="tel:"] {
 display: inline-block;
 margin-top: 6px;
 font-weight: 700;
 font-size: 15px;
 color: var(--color-ink);
 letter-spacing: -0.005em;
}
.lander-footer__brand .footer-phone:hover,
.lander-footer__brand a[href^="tel:"]:hover {
 color: var(--color-accent-deep);
}
.lander-footer__bar {
 font-size: 11px;
 line-height: 1.55;
 color: var(--color-ink-muted);
 padding-top: 18px;
 border-top: 1px solid var(--color-rule-soft);
}
.lander-footer h4 {
 font-family: var(--font-sans);
 font-size: 11px;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--color-ink-muted);
 margin: 0 0 10px;
}
.lander-footer ul { list-style: none; padding: 0; margin: 0; }
.lander-footer li { margin-bottom: 6px; }
.lander-footer a {
 color: var(--color-ink-soft);
 text-decoration: none;
 border-bottom: 1px solid transparent;
}
.lander-footer a:hover { border-bottom-color: var(--color-ink-muted); }
.lander-footer .disclaimer {
 margin-top: 8px;
 font-style: italic;
}

/* ---------- Global mobile guards ---------- */
html, body { max-width: 100%; overflow-x: hidden; }
img, picture, svg, video { max-width: 100%; height: auto; }

/* ============================================================
 RESPONSIVE - mobile-first refinements at 4 breakpoints
 ============================================================ */

/* ---------- Tablet & below (≤900px) ---------- */
@media (max-width: 900px) {
 .hero--ed,
 .hero--form,
 .hero--bilingual {
 grid-template-columns: 1fr;
 gap: 28px;
 }
 .hero--ed .hero__visual {
 aspect-ratio: 16 / 11;
 max-width: 480px;
 margin: 0 auto;
 }

 /* Cutout: center under copy, sit on divider, no horizontal bleed */
 .hero__visual--cutout {
 max-width: 420px;
 margin: 0 auto;
 margin-bottom: -44px;
 }
 .hero__visual--cutout picture,
 .hero__visual--cutout img { max-height: 480px; }

 /* Form-first variant: form ABOVE text on mobile (better conversion) */
 .hero--form { grid-template-columns: 1fr; }
 .hero--form > div:first-child { order: 2; }
 .hero--form > form { order: 1; }

 .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
 .steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
 .results { grid-template-columns: 1fr; }
 .why { grid-template-columns: 1fr; gap: 18px; }
 .team { grid-template-columns: 1fr; }
 .lander-footer__top { grid-template-columns: 1fr; gap: 24px; }

 /* Slightly tighter section padding to reduce scroll fatigue */
 .section { padding: 52px 0; }
}

/* ---------- Phone (≤540px) ---------- */
@media (max-width: 540px) {
 /* Layout */
 .hero { padding: 32px 0 44px; }
 .section { padding: 40px 0; }
 .lander .container { padding: 0 18px; }

 /* Header */
 .lander-header__inner { padding: 10px 16px; gap: 10px; }
 .lander-header__call {
 padding: 9px 14px;
 font-size: 13px;
 min-height: 40px;
 }
 .lander-header__call svg { width: 14px; height: 14px; }

 /* Hero copy */
 .hero__eyebrow { font-size: 10px; padding: 3px 9px; margin-bottom: 14px; }
 .hero__h1 { font-size: 28px; line-height: 1.15; }
 .hero__sub { font-size: 15px; margin-bottom: 22px; }
 .hero__trust { gap: 12px 22px; padding-top: 18px; margin-top: 22px; }
 .hero__trust-item { font-size: 12px; }
 .hero__trust-item strong { font-size: 14px; }

 /* CTA stacking - full width tap targets */
 .hero__ctas { flex-direction: column; gap: 10px; width: 100%; }
 .hero__ctas .btn-primary,
 .hero__ctas .btn-secondary { width: 100%; }
 .btn-primary, .btn-secondary { min-height: 50px; padding: 14px 18px; }

 /* Stats */
 .stats { padding: 26px 0; }
 .stats__grid { gap: 14px; }
 .stat__num { font-size: 22px; }
 .stat__label { font-size: 10px; letter-spacing: 0.06em; }

 /* Section headings */
 .section__h2 { font-size: 24px; line-height: 1.22; }
 .section__lead { font-size: 15px; margin-bottom: 26px; }

 /* Steps - go to single column for readability */
 .steps { grid-template-columns: 1fr; gap: 12px; }
 .step { padding: 20px; }
 .step h3 { font-size: 16px; }
 .step p { font-size: 14px; }

 /* Result tiles - tighter padding */
 .result { padding: 22px 20px; }
 .result__amount { font-size: 26px; }

 /* Featured results scale-down on phone */
 .results--featured .result { padding: 26px 22px; }
 .results--featured .result__amount { font-size: 30px; }
 .results__cta { margin-top: 26px; }
 .results__cta .btn-primary { width: 100%; min-width: 0; }

 /* Tagline band tighter on phone */
 .tagline-band { padding: 28px 0; }
 .tagline-band__text { font-size: 24px; }

 /* Form */
 .lead-form { padding: 20px; }
 .lead-form__h { font-size: 20px; }
 .lead-form .row { grid-template-columns: 1fr; gap: 10px; }
 .lead-form .field { margin-bottom: 10px; }
 .lead-form button[type="submit"] { padding: 15px; font-size: 15px; min-height: 50px; }
 .lead-form .tcpa { font-size: 10.5px; line-height: 1.55; }

 /* Bilingual lang strip - tighter wrap */
 .hero--bilingual .lang-strip {
 gap: 8px 14px;
 padding: 10px 14px;
 margin-bottom: 18px;
 }
 .hero--bilingual .lang-strip span { font-size: 12px; }

 /* Team mini-cards */
 .team__card { padding: 18px; gap: 14px; }
 .team__avatar { flex: 0 0 60px; width: 60px; height: 60px; }
 .team__name { font-size: 16px; }
 .team__role { font-size: 11px; }
 .team__lang { font-size: 13px; }

 /* Testimonial */
 .testimonial { padding: 20px 22px; font-size: 15px; }
 .testimonial cite { font-size: 12px; margin-top: 12px; }

 /* Urgency band */
 .urgency-band { padding: 28px 0; }
 .urgency-band__inner { flex-direction: column; align-items: stretch; gap: 18px; }
 .urgency-band h3 { font-size: 18px; }
 .urgency-band p { font-size: 13px; }
 .urgency-band .btn-primary { width: 100%; }

 /* Footer */
 .lander-footer { padding: 28px 0 18px; }
 .lander-footer__top { gap: 18px; }
 .lander-footer h4 { font-size: 10px; margin-bottom: 8px; }
 .lander-footer__bar { font-size: 10.5px; padding-top: 14px; }
}

/* ---------- Small phone (≤380px) ---------- */
@media (max-width: 380px) {
 .lander .container { padding: 0 14px; }
 .lander-header__inner { padding: 8px 14px; }
 .lander-header__call { padding: 8px 12px; font-size: 12px; }
 .lander-header__call svg { display: none; }
 .hero__h1 { font-size: 24px; }
 .hero__sub { font-size: 14px; }
 .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
 .stat__num { font-size: 20px; }
 .lead-form { padding: 16px; }
 .urgency-band h3 { font-size: 16px; }
 .section__h2 { font-size: 22px; }
}

/* ---------- Landscape phone - very short viewport ---------- */
@media (max-width: 900px) and (max-height: 500px) {
 .hero { padding: 24px 0 32px; }
 .hero__visual--cutout { display: none; } /* hide cutout - too tall for landscape phones */
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
 *, *::before, *::after { transition: none !important; animation: none !important; }
}
