/* ============ TOKENS ============ */
:root {
    --green-900: #0f3a1f;
    --green-800: #1a472a;
    --green-700: #2d6a4f;
    --green-500: #52b788;
    --green-400: #7cc796;
    --green-50:  #eef7f0;
    --green-100: #dff0e3;
    --amber:     #c8922a;
    --amber-600: #b07820;
    --bg:        #ffffff;
    --bg-soft:   #f6f8f5;
    --bg-cream:  #faf7f0;
    --ink:       #1e1e1e;
    --ink-soft:  #3d4a40;
    --muted:     #6b7670;
    --line:      #e6ebe5;
    --shadow-sm: 0 1px 2px rgba(15,58,31,.04), 0 1px 1px rgba(15,58,31,.03);
    --shadow-md: 0 4px 16px rgba(15,58,31,.08), 0 1px 3px rgba(15,58,31,.04);
    --shadow-lg: 0 18px 50px rgba(15,58,31,.12), 0 4px 12px rgba(15,58,31,.06);
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --container: 1200px;
}

/* ============ SCOPED RESETS ============ */
.greenhouse-page *,
.greenhouse-page *::before,
.greenhouse-page *::after { box-sizing: border-box; }

.greenhouse-page a { text-decoration: none; }

.greenhouse-page button {
    font-family: inherit;
    cursor: pointer;
}

.greenhouse-page img {
    max-width: 100%;
    display: block;
}

.greenhouse-page ::selection {
    background: var(--green-500);
    color: #fff;
}

.greenhouse-page .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============ EYEBROW ============ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-700);
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--green-500);
}

.eyebrow.on-dark         { color: var(--green-400); }
.eyebrow.on-dark::before { background: var(--green-400); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 38px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .005em;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
    border: none;
}

.btn-amber {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 6px 20px rgba(200,146,42,.38), inset 0 -2px 0 rgba(0,0,0,.1);
}

.btn-amber:hover {
    background: var(--amber-600);
    transform: translateY(-1px);
}

.btn-amber:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: var(--green-800);
    border: 1.5px solid var(--green-700);
}

.btn-ghost:hover {
    background: var(--green-800);
    color: #fff;
}

.btn-dark {
    background: var(--green-800);
    color: #fff;
    box-shadow: 0 6px 20px rgba(26,71,42,.25);
}

.btn-dark:hover {
    background: var(--green-900);
    transform: translateY(-1px);
}

.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ SECTION SHELL ============ */
section {
    padding: 108px 0;
    position: relative;
}

section.dark {
    background: var(--green-900);
    color: #e7f1ea;
}

section.soft { background: var(--bg-soft); }

.section-head {
    max-width: 780px;
    margin: 0 0 56px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    color: var(--green-900);
    margin-top: 14px;
    letter-spacing: -.02em;
    font-family: 'Unbounded', sans-serif;
}

.section-head p {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 18px;
    max-width: 680px;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ============ BLOCK 1 — HERO ============ */
.gh-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gh-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 75% 40%, rgba(45,106,79,.35) 0%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(15,58,31,.4) 0%, transparent 55%),
        linear-gradient(135deg, #0a1f0a 0%, #0f3a1f 40%, #1a5c2a 70%, #0f2a14 100%);
}

/* subtle glass-pane grid pattern */
.gh-hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* warm glow from inside the greenhouse */
.gh-hero__bg::after {
    content: "";
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(82,183,136,.12) 0%, transparent 70%);
    border-radius: 50%;
}

.gh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(5,20,8,.82) 0%,
        rgba(8,25,12,.65) 50%,
        rgba(10,30,14,.4) 100%
    );
}

.gh-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.gh-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 1.06;
    letter-spacing: -.025em;
    color: #fff;
    margin-top: 20px;
}

.gh-hero h1 em {
    font-style: normal;
    color: var(--green-400);
}

.gh-hero__sub {
    margin-top: 28px;
    font-size: 18px;
    color: rgba(255,255,255,.78);
    max-width: 580px;
    line-height: 1.65;
}

.gh-hero__cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.gh-hero__anchor {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,.45);
    font-style: italic;
}

.gh-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    animation: bounce 2.4s ease-in-out infinite;
    z-index: 2;
}

.gh-hero__scroll svg {
    animation: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============ BLOCK 2 — PAINS ============ */
.pains-list {
    display: grid;
    gap: 16px;
    max-width: 900px;
}

.pain-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.pain-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-100);
}

.pain-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-50);
    color: var(--green-800);
    display: grid;
    place-items: center;
    transition: transform .25s;
}

.pain-item:hover .pain-item__icon {
    transform: rotate(-6deg) scale(1.08);
}

.pain-item h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--green-900);
    margin: 0 0 6px;
    letter-spacing: 0;
}

.pain-item p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
}

.pains__conclusion {
    margin-top: 40px;
    background: #fff;
    border: 1px solid var(--green-100);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
}

.pains__conclusion p {
    font-size: 18px;
    color: var(--ink);
    margin: 0;
    line-height: 1.5;
}

.pains__conclusion b { color: var(--green-800); }

/* ============ BLOCK 3 — FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.05);
}

.feature {
    padding: 36px 32px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    transition: background .2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature:hover {
    background: rgba(255,255,255,.08);
}

.feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(82,183,136,.15);
    color: var(--green-400);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s;
}

.feature:hover .feature__icon {
    background: rgba(82,183,136,.25);
    transform: scale(1.06);
}

.feature h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0;
    margin: 0;
}

.feature p {
    font-size: 14.5px;
    color: #b8d2c2;
    line-height: 1.6;
    margin: 0;
}

/* ============ BLOCK 4 — GALLERY ============ */
.gh-gallery-section {
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-card--tall {
    grid-row: span 2;
}

.gallery-card--wide {
    grid-column: span 2;
}

.gallery-card__img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.gallery-card--tall .gallery-card__img {
    height: 100%;
    min-height: 496px;
}

.gallery-card--wide .gallery-card__img {
    height: 240px;
}

.gallery-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5,20,8,.88) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

.gallery-card__overlay p {
    color: #fff;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

.gallery-card__caption {
    background: #fff;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
    border-top: 1px solid var(--line);
}

.gallery-cta {
    text-align: center;
    margin-top: 44px;
}

/* ============ BLOCK 5 — PROCESS ============ */
.process {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--green-100) 50%, transparent 50%);
    background-size: 14px 2px;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
}

.step__num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--green-100);
    color: var(--green-800);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: grid;
    place-items: center;
    margin: 0 0 18px;
    transition: all .25s ease;
}

.step:hover .step__num {
    background: var(--green-800);
    color: #fff;
    border-color: var(--green-800);
    transform: translateY(-3px);
}

.step h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--green-900);
    margin: 0 0 8px;
    letter-spacing: 0;
}

.step p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
}

.process__note {
    margin-top: 52px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: .04em;
}

/* ============ BLOCK 6 — MYTHS ============ */
.gh-myths {
    background: #f0f7f0;
}

.myths-list {
    max-width: 860px;
    margin: 0 auto;
}

.myth {
    border-bottom: 1px solid rgba(45,106,79,.2);
}

.myth:first-child { border-top: 1px solid rgba(45,106,79,.2); }

.myth__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 22px 0;
    background: none;
    border: 0;
    cursor: pointer;
    transition: opacity .2s;
}

.myth__q:hover { opacity: .8; }

.myth__label {
    flex-shrink: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--line);
    padding: 4px 10px;
    border-radius: 20px;
}

.myth.open .myth__label {
    background: var(--green-50);
    color: var(--green-700);
}

.myth__text {
    flex: 1;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--green-900);
    line-height: 1.35;
}

.myth.open .myth__text {
    color: var(--green-700);
}

.myth__toggle {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--green-700);
    transition: transform .25s, background .2s;
}

.myth.open .myth__toggle {
    transform: rotate(45deg);
    background: var(--amber);
    color: #fff;
    border-color: var(--amber);
}

.myth__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.myth__a-inner {
    padding: 0 0 26px 90px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
}

.myth__reality {
    display: inline-block;
    font-weight: 700;
    color: var(--green-700);
    margin-right: 6px;
}

/* ============ BLOCK 7 — REVIEWS + STATS ============ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

.review {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: background .2s;
}

.review:hover {
    background: rgba(255,255,255,.09);
}

.review__quote {
    font-family: 'Unbounded', sans-serif;
    font-size: 64px;
    line-height: .7;
    color: var(--amber);
    opacity: .6;
    margin-bottom: 16px;
    display: block;
}

.review__text {
    font-size: 15.5px;
    color: #cfe9d5;
    line-height: 1.7;
    margin: 0 0 24px;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-700);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review__author b {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.review__author span {
    color: #7ea18b;
    font-size: 13px;
}

/* trust stats strip */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.trust-stat {
    background: rgba(255,255,255,.03);
    padding: 36px 28px;
    text-align: center;
    transition: background .2s;
}

.trust-stat:hover { background: rgba(255,255,255,.07); }

.trust-stat__num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1;
    color: var(--amber);
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.trust-stat__label {
    color: #b8d2c2;
    font-size: 14px;
    line-height: 1.4;
}

/* ============ BLOCK 8 — FINAL CTA + FORM ============ */
.gh-final {
    background: linear-gradient(135deg, #1a3d1a 0%, #0f3a1f 50%, #1a472a 100%);
    position: relative;
    overflow: hidden;
}

.gh-final::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,183,136,.12), transparent 70%);
    pointer-events: none;
}

.gh-final::after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,146,42,.1), transparent 70%);
    pointer-events: none;
}

.final-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.final-side h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 14px 0 0;
}

.final-side p {
    margin-top: 20px;
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.6;
}

.trust-list {
    margin-top: 32px;
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,.75);
}

.trust-list .ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(82,183,136,.2);
    color: var(--green-400);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.final-messengers {
    margin-top: 28px !important;
    font-size: 15px;
    color: rgba(255,255,255,.55) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.messenger-link {
    color: var(--green-400);
    font-weight: 600;
    transition: color .2s;
}

.messenger-link:hover { color: #fff; }

.messenger-sep {
    color: rgba(255,255,255,.3);
}

/* form card */
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    color: var(--green-900);
    margin: 0 0 8px;
}

.form-card > .form-content > p {
    color: var(--ink-soft);
    margin: 0 0 26px;
    font-size: 15px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
}

.field__opt {
    font-weight: 400;
    color: var(--muted);
}

.field input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}

.field input:focus {
    outline: 0;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(82,183,136,.15);
}

.field.error input { border-color: #e7707d; }

.err-msg {
    color: #c84a59;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.field.error .err-msg { display: block; }

.privacy {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 12px;
}

.form-success.shown { display: block; }
.form-success svg   { margin-bottom: 14px; }

.form-success h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    color: var(--green-900);
    margin: 0 0 10px;
}

.form-ratelimit {
    display: none;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255,180,0,.1);
    border: 1px solid rgba(255,180,0,.35);
    color: #b8860b;
    font-size: 14px;
    text-align: center;
}

.form-ratelimit.shown { display: block; }

/* ============ FLOATING CTA ============ */
.floating-cta {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 40;
    background: var(--amber);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 20px 50px rgba(200,146,42,.45), 0 4px 12px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease, background .2s;
    text-decoration: none;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    background: var(--amber-600);
    transform: translateY(-2px);
}

.floating-cta .pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
    box-shadow: 0 0 0 0 rgba(255,255,255,.5);
    animation: ping 1.8s infinite;
}

@keyframes ping {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
    80%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE 1024px ============ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card--tall { grid-row: span 1; }
    .gallery-card--tall .gallery-card__img { min-height: 240px; }

    .gallery-card--wide { grid-column: span 2; }

    .process {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 14px;
    }

    .process::before { display: none; }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-stats { grid-template-columns: repeat(2, 1fr); }

    .final-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pains__conclusion {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============ RESPONSIVE 720px ============ */
@media (max-width: 720px) {
    section { padding: 72px 0; }

    .gh-hero h1 { font-size: 34px; }
    .gh-hero__sub { font-size: 16px; }

    .features-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card--wide { grid-column: span 1; }
    .gallery-card--tall .gallery-card__img { min-height: 240px; }

    .process {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .myth__a-inner { padding-left: 0; }
    .myth__text { font-size: 15px; }

    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .trust-stat__num { font-size: 38px; }

    .form-card { padding: 26px; }

    .floating-cta {
        right: 14px;
        bottom: 14px;
        padding: 12px 18px;
        font-size: 13px;
    }

    .section-head { margin-bottom: 36px; }
}
