/* ============================================================
   NYWD — L2 "Profitable Products to Sell Online" landing page
   Reference structure, NYWD brand. Self-contained.
   Palette: dark #2A2E33, green #32908F (sparingly), cream #F5F3F1.
   Type: EB Garamond (headlines) + Work Sans (UI/body).
   ============================================================ */

:root {
    --primary:      #2A2E33;
    --primary-soft: #3a4047;
    --ink:          hsl(210, 7%, 21%);
    --muted:        hsl(210, 7%, 40%);
    --muted-2:      hsl(210, 7%, 52%);
    --green:        #32908F;
    --green-deep:   #2a7a79;
    --cream:        #F5F3F1;
    --cream-warm:   #EFEBE5;
    --line:         #e3e0db;
    --card:         #ffffff;
    --font-serif:   'EB Garamond', Georgia, serif;
    --font-sans:    'Work Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0; background: #fff; color: var(--ink);
    font-family: var(--font-sans); font-weight: 400; line-height: 1.65;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

.l2-wide   { max-width: 80rem; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.l2-narrow { max-width: 60rem; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

/* Eyebrow */
.l2-eyebrow {
    font-family: var(--font-sans); font-weight: 600;
    font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green);
    display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
}
.l2-eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); flex-shrink: 0; opacity: 0.8; }
.l2-eyebrow--center { justify-content: center; }
.l2-eyebrow--lined { justify-content: center; }
.l2-eyebrow--lined::before, .l2-eyebrow--lined::after { content: ''; width: clamp(1.5rem,5vw,2.75rem); height: 1px; background: var(--green); opacity: 0.5; }

/* Buttons — brand: dark, sharp 4px, no green hover */
.l2-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1.05rem 1.9rem;
    font-family: var(--font-sans); font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
    line-height: 1; color: #fff; background: var(--primary);
    border: 1px solid var(--primary); border-radius: 4px;
    transition: background .18s, border-color .18s, transform .18s;
}
.l2-btn:hover { background: #1f2226; border-color: #1f2226; transform: translateY(-1px); }
.l2-btn .arr { font-size: 1.1em; }
.l2-btn--full { width: 100%; }
.l2-btn--light { background: #fff; color: var(--primary); border-color: #fff; }
.l2-btn--light:hover { background: var(--cream-warm); border-color: var(--cream-warm); color: var(--primary); }

/* ── TOP BAR ── */
.l2-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem clamp(1.25rem, 4vw, 3rem); background: #fff;
    border-bottom: 1px solid var(--line);
}
.l2-topbar__logo img { height: 28px; width: auto; }
.l2-topbar__phone {
    font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.04em; color: var(--primary);
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.l2-topbar__phone svg { width: 15px; height: 15px; }

/* ── HERO ── */
.l2-hero { background: linear-gradient(180deg, #fff, var(--cream)); padding: clamp(2rem,4vw,3.25rem) 0 clamp(3rem,6vw,4.5rem); overflow: hidden; }
.l2-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.l2-hero h1 {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(2.4rem, 4.4vw, 3.8rem); line-height: 1.12; letter-spacing: -0.01em;
    color: var(--primary); margin: 1.3rem 0 0; text-wrap: pretty;
}
.l2-hero h1 em { font-style: italic; color: var(--primary-soft); }
.l2-hero__rule { display: block; width: 76px; height: 3px; background: var(--green); margin: 1.5rem 0 1.4rem; }
.l2-hero__sub {
    font-family: var(--font-serif); font-weight: 500;
    font-size: clamp(1.35rem, 2.4vw, 1.95rem); line-height: 1.25; font-style: italic;
    color: var(--primary); margin: 0 0 1.25rem; text-wrap: balance;
}
.l2-hero__sub span { color: var(--green); font-style: normal; font-family: var(--font-sans); font-weight: 600; font-size: 0.92em; }
.l2-hero__lede { font-size: 1.05rem; line-height: 1.7; color: var(--muted); max-width: 34rem; margin: 0; }

/* Value cards */
.l2-values { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.l2-value { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 1.35rem 1.1rem; text-align: center; }
.l2-value__ico { width: 42px; height: 42px; margin: 0 auto 0.85rem; color: var(--green); }
.l2-value__ico svg { width: 100%; height: 100%; }
.l2-value h3 { font-family: var(--font-sans); font-weight: 600; font-size: 0.98rem; color: var(--primary); margin: 0 0 0.6rem; line-height: 1.2; }
.l2-value__line { width: 24px; height: 2px; background: var(--green); margin: 0 auto 0.6rem; opacity: 0.7; }
.l2-value p { font-size: 0.83rem; line-height: 1.5; color: var(--muted-2); margin: 0; }

/* Trust bar */
.l2-trustbar { margin-top: 1.4rem; background: var(--primary); border-radius: 8px; padding: 1.3rem 1.6rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.l2-tstats { display: flex; align-items: stretch; gap: 1.4rem; }
.l2-tstat { text-align: left; }
.l2-tstat b { display: block; font-family: var(--font-serif); font-weight: 500; font-size: 1.65rem; line-height: 1; color: #fff; }
.l2-tstat b em { font-style: normal; color: var(--green); }
.l2-tstat span { display: block; font-family: var(--font-sans); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.4rem; }
.l2-tstats .l2-tdiv { width: 1px; background: rgba(255,255,255,0.16); }
.l2-avatars { display: flex; }
.l2-gbadge { display: flex; align-items: center; gap: 0.7rem; }
.l2-gbadge svg { width: 30px; height: 30px; flex-shrink: 0; }
.l2-gbadge__lbl { color: rgba(255,255,255,0.72); font-size: 0.72rem; font-family: var(--font-sans); letter-spacing: 0.03em; margin-top: 2px; }
.l2-avatars img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); margin-left: -12px; background: var(--primary-soft); }
.l2-avatars img:first-child { margin-left: 0; }
.l2-trustbar__txt { flex: 1; min-width: 14rem; }
.l2-stars { color: var(--green); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.3rem; }
.l2-trustbar__txt p { color: rgba(255,255,255,0.82); font-size: 0.88rem; line-height: 1.5; margin: 0; }

/* Hero media + form card */
.l2-hero__media { display: flex; justify-content: center; align-items: center; }
.l2-form-card { position: relative; width: 100%; background: var(--card); border-radius: 10px; padding: 2.25rem 2.1rem; box-shadow: 0 40px 90px -45px rgba(42,46,51,0.5), 0 6px 20px -10px rgba(42,46,51,0.18); margin: 0; max-width: none; border: 1px solid var(--line); }
.l2-forbes { display: block; height: 112px; width: auto; margin: 0 auto; }
/* Full-width hero photo band */
.l2-herofig { line-height: 0; background: var(--cream); }
.l2-herofig img { width: 100%; height: auto; max-height: 560px; object-fit: cover; object-position: center 32%; display: block; }
.l2-herofig figcaption { max-width: 80rem; margin: 0 auto; padding: 0.85rem clamp(1.25rem,4vw,3rem); font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 0.7rem; background: var(--cream); }
.l2-herofig figcaption::before { content: ''; width: 1.4rem; height: 1px; background: var(--green); flex-shrink: 0; }
.l2-form-card__badge { display: flex; align-items: center; justify-content: flex-start; margin-bottom: 1.1rem; }
.l2-forbesbadge { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.45rem 0.95rem; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.l2-forbesbadge__mark { font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--primary); line-height: 1; }
.l2-forbesbadge__div { width: 1px; height: 22px; background: var(--line); }
.l2-forbesbadge__txt { display: flex; flex-direction: column; line-height: 1.2; }
.l2-forbesbadge__txt b { font-family: var(--font-sans); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); }
.l2-forbesbadge__txt span { font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.l2-form-card h2 { font-family: var(--font-serif); font-weight: 500; font-size: 1.85rem; line-height: 1.12; text-align: left; color: var(--primary); margin: 0 0 0.6rem; }
.l2-form-card h2 em { font-style: italic; color: var(--green); }
.l2-form-card__sub { text-align: left; font-size: 0.9rem; color: var(--muted); margin: 0 0 1.3rem; line-height: 1.55; }
.l2-form { display: grid; gap: 0.65rem; }
.l2-form input, .l2-form select { width: 100%; padding: 0.9rem 1rem; font-family: var(--font-sans); font-size: 0.92rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 4px; transition: border-color .15s, box-shadow .15s; }
.l2-form input::placeholder { color: #9aa0a6; }
.l2-form input:focus, .l2-form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(50,144,143,0.13); }
.l2-form select { color: #9aa0a6; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23667' stroke-width='1.6' d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.l2-form select:valid { color: var(--ink); }
.l2-form__captcha { border: 1px solid var(--line); border-radius: 4px; background: #f9f9f9; padding: 0.65rem 0.9rem; display: flex; align-items: center; gap: 0.7rem; margin-top: 0.15rem; }
.l2-form__captcha .chk { width: 24px; height: 24px; border: 2px solid #c3c6cc; border-radius: 3px; background: #fff; flex-shrink: 0; }
.l2-form__captcha .lab { font-size: 0.82rem; color: #3c4250; }
.l2-form__captcha .logo { margin-left: auto; text-align: center; color: #9aa0a6; font-size: 0.5rem; line-height: 1.3; }
.l2-form__captcha .logo strong { display: block; font-size: 0.62rem; color: #6b7280; font-weight: 600; }
.l2-form button { margin-top: 0.35rem; }
.l2-form__legal { font-size: 0.72rem; color: var(--muted-2); text-align: center; margin: 0.55rem 0 0; line-height: 1.5; }
.l2-form__legal a { color: var(--primary); text-decoration: underline; }

/* ── COMPARISON — light brand ── */
.l2-compare { background: var(--cream); color: var(--ink); padding: clamp(3.5rem,7vw,5.5rem) 0; }
.l2-compare__head { text-align: center; max-width: 50rem; margin: 0 auto clamp(2.25rem,5vw,3.25rem); }
.l2-compare h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.4rem,5vw,3.8rem); line-height: 1.05; color: var(--primary); margin: 1rem 0 0; }
.l2-compare h2 em { font-style: italic; color: var(--green); }
.l2-compare__rule { width: 84px; height: 3px; background: var(--green); margin: 1.2rem auto; }
.l2-compare__sub { color: var(--muted); font-size: 1.05rem; margin: 0.4rem auto 0; max-width: 38rem; }
.l2-compare__eyebrow { color: var(--green); }
.l2-compare__table { max-width: 62rem; margin: 0 auto; border: 1px solid var(--line); border-radius: 8px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: var(--card); box-shadow: 0 30px 70px -45px rgba(42,46,51,0.28); }
.l2-ccol { display: flex; flex-direction: column; }
.l2-ccol--lux { border-left: 1px solid var(--line); background: rgba(50,144,143,0.045); box-shadow: inset 0 3px 0 var(--green); }
.l2-ccol__h { padding: 1.3rem; text-align: center; font-family: var(--font-sans); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.l2-ccol--gen .l2-ccol__h { color: var(--muted-2); }
.l2-ccol--lux .l2-ccol__h { color: var(--green-deep); }
.l2-crow { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.5rem; min-height: 4.3rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
.l2-crow:last-child { border-bottom: none; }
.l2-crow__ic { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; border: 1.5px solid; }
.l2-crow__ic svg { width: 19px; height: 19px; }
.l2-ccol--gen .l2-crow { color: var(--muted); }
.l2-ccol--gen .l2-crow__ic { border-color: var(--line); color: var(--muted-2); }
.l2-ccol--lux .l2-crow { color: var(--ink); font-weight: 600; }
.l2-ccol--lux .l2-crow__ic { border-color: rgba(50,144,143,0.4); color: var(--green); background: #fff; }
.l2-compare__foot { text-align: center; max-width: 48rem; margin: clamp(2rem,4vw,2.6rem) auto 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.l2-compare__foot b { color: var(--green-deep); font-weight: 600; }

/* ── PROCESS — cream ── */
.l2-process { background: var(--cream); padding: clamp(3.5rem,7vw,5.5rem) 0; }
.l2-process__head { text-align: center; max-width: 52rem; margin: 0 auto clamp(2.25rem,5vw,3.25rem); }
.l2-process h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.6rem,5.5vw,4.4rem); line-height: 1.02; color: var(--primary); margin: 1.1rem 0 0; }
.l2-process h2 .pd { color: var(--green); }
.l2-process__rule { width: 66px; height: 3px; background: var(--green); margin: 1.1rem auto 1.3rem; }
.l2-process__sub { font-size: 1.1rem; color: var(--muted); max-width: 40rem; margin: 0 auto; line-height: 1.6; }
.l2-process__sub b { color: var(--green); font-weight: 600; }
.l2-howlabel { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto clamp(2rem,4vw,2.75rem); max-width: 60rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); font-size: 0.85rem; }
.l2-howlabel::before, .l2-howlabel::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.l2-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.l2-step { text-align: center; padding: 0 0.5rem; position: relative; }
.l2-step__n { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; display: grid; place-items: center; margin: 0 auto 1rem; }
.l2-step__ic { width: 56px; height: 56px; margin: 0 auto 1rem; color: var(--primary); }
.l2-step__ic svg { width: 100%; height: 100%; }
.l2-step h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.02rem; color: var(--primary); margin: 0 0 0.5rem; line-height: 1.2; }
.l2-step p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.55; }
.l2-step__arrow { position: absolute; top: 90px; right: -0.5rem; color: var(--green); font-size: 1.25rem; transform: translateX(50%); }
.l2-step:last-child .l2-step__arrow { display: none; }
.l2-quickrow { margin-top: clamp(2.25rem,5vw,3.25rem); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem clamp(1rem,3vw,2rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.l2-quick { display: flex; align-items: center; gap: 0.8rem; justify-content: center; }
.l2-quick__ic { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.l2-quick__ic svg { width: 21px; height: 21px; }
.l2-quick span { font-family: var(--font-sans); font-weight: 600; font-size: 0.92rem; color: var(--primary); line-height: 1.2; }

/* ── GOOGLE REVIEWS SECTION ── */
.l2-reviewsec { background: var(--cream); padding: clamp(3rem,6vw,4.5rem) 0; border-top: 1px solid var(--line); }
.l2-reviewsec__head { text-align: center; max-width: 46rem; margin: 0 auto clamp(1.75rem,4vw,2.5rem); padding: 0 clamp(1.25rem,4vw,2rem); }
.l2-reviewsec__g { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.l2-reviewsec__g svg { width: 20px; height: 20px; }
.l2-reviewsec h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem,4vw,3rem); line-height: 1.08; color: var(--primary); margin: 0; }
.l2-reviewsec h2 em { font-style: italic; color: var(--green); }
.l2-reviewsec__widget { max-width: 74rem; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2rem); min-height: 90px; }

/* ── BENEFITS ── */
.l2-benefits { background: #fff; padding: clamp(3.5rem,7vw,5.5rem) 0 0; }
.l2-benefits__head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; margin-bottom: clamp(2.25rem,5vw,3.25rem); }
.l2-benefits__head h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.2rem,4vw,3.3rem); line-height: 1.08; color: var(--primary); margin: 0.9rem 0 0.85rem; }
.l2-benefits__head p { font-size: 1.05rem; color: var(--muted); margin: 0; line-height: 1.65; max-width: 34rem; }
.l2-benefits__photo { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: var(--primary-soft); }
.l2-benefits__photo img { width: 100%; height: 100%; object-fit: cover; }
.l2-bgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.l2-benefit { background: var(--card); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 1fr 0.85fr; align-items: stretch; }
.l2-benefit__body { padding: 1.7rem; }
.l2-benefit__ic { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--green); display: grid; place-items: center; margin-bottom: 1rem; }
.l2-benefit__ic svg { width: 23px; height: 23px; }
.l2-benefit h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; color: var(--primary); margin: 0 0 0.55rem; line-height: 1.15; }
.l2-benefit p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.6; }
.l2-benefit__photo { background: var(--primary-soft); position: relative; min-height: 100%; }
.l2-benefit__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.l2-photo-ph { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--primary-soft)); display: grid; place-items: center; text-align: center; padding: 1.4rem; }
.l2-photo-ph__in { color: rgba(255,255,255,0.6); }
.l2-photo-ph svg { width: 40px; height: 40px; color: var(--green); margin: 0 auto 0.65rem; }
.l2-photo-ph small { font-family: var(--font-sans); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; line-height: 1.5; }

/* Final CTA */
.l2-finalcta { background: #fff; padding: clamp(2.5rem,5vw,4rem) 0 clamp(3.5rem,7vw,5rem); }
.l2-finalcta__inner { background: var(--primary); border-radius: 10px; padding: clamp(2rem,4vw,3rem) clamp(1.5rem,4vw,3rem); display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.l2-finalcta__ic { width: 60px; height: 60px; color: var(--green); flex-shrink: 0; }
.l2-finalcta__ic svg { width: 100%; height: 100%; }
.l2-finalcta__copy { flex: 1; min-width: 16rem; color: #fff; }
.l2-finalcta__copy h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.7rem,3vw,2.5rem); margin: 0 0 0.45rem; line-height: 1.1; }
.l2-finalcta__copy h2 em { font-style: italic; color: var(--green); }
.l2-finalcta__copy p { color: rgba(255,255,255,0.74); font-size: 1rem; margin: 0; line-height: 1.6; max-width: 32rem; }

/* Footer */
.l2-footer { background: var(--cream); color: var(--muted); padding: 2.25rem 0; border-top: 1px solid var(--line); }
.l2-footer__inner { max-width: 80rem; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,3rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.l2-footer__logo img { height: 24px; }
.l2-footer__legal { font-size: 0.8rem; line-height: 1.6; }
.l2-footer__legal a { color: var(--primary); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (min-width: 1081px) {
    .l2-hero__grid { align-items: stretch; }
    .l2-hero__copy { display: flex; flex-direction: column; }
    .l2-hero__copy .l2-trustbar { margin-top: auto; }
    .l2-form-card { align-self: start; }
}
@media (max-width: 1080px) {
    .l2-hero__grid { grid-template-columns: 1fr; }
    .l2-hero__media { margin-top: 1rem; }
    .l2-form-card { margin: 0 auto; }
}
@media (max-width: 900px) {
    .l2-values { grid-template-columns: repeat(2, 1fr); }
    .l2-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
    .l2-step__arrow { display: none; }
    .l2-quickrow { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
    .l2-benefits__head { grid-template-columns: 1fr; }
    .l2-benefits__photo { aspect-ratio: 16/8; }
    .l2-bgrid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .l2-values { grid-template-columns: 1fr; }
    .l2-compare__table { grid-template-columns: 1fr; }
    .l2-ccol--lux { border-left: none; border-top: 1px solid var(--line); box-shadow: inset 0 3px 0 var(--green); }
    .l2-quickrow { grid-template-columns: 1fr; }
    .l2-benefit { grid-template-columns: 1fr; }
    .l2-benefit__photo { min-height: 12rem; }
    .l2-finalcta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    html, body { overflow-x: hidden; }
    .l2-wide,
    .l2-footer__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .l2-topbar {
        gap: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .l2-topbar__phone {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.76rem;
    }
    .l2-values,
    .l2-value,
    .l2-form-card,
    .l2-trustbar,
    .l2-compare__table,
    .l2-quickrow,
    .l2-benefit,
    .l2-finalcta__inner {
        max-width: 100%;
        min-width: 0;
    }
    .l2-form-card {
        overflow: hidden;
        padding: 1.35rem 0.75rem;
    }
    .l2-form-card h2 {
        font-size: 1.6rem;
    }
    .l2-form__captcha {
        height: 78px;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
        border: 0;
        background: transparent;
    }
    #grecaptcha-l2 {
        max-width: 100%;
    }
    .l2-finalcta__copy {
        min-width: 0;
        width: 100%;
    }
    .l2-finalcta .l2-btn {
        width: 100%;
        min-width: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 340px) {
    .l2-form__captcha {
        height: 67px;
    }
    #grecaptcha-l2 {
        width: 304px;
        transform: scale(0.86);
        transform-origin: top left;
    }
}

@media (min-width: 341px) and (max-width: 370px) {
    .l2-form__captcha {
        height: 74px;
    }
    #grecaptcha-l2 {
        width: 304px;
        transform: scale(0.94);
        transform-origin: top left;
    }
}
