:root {
    --paper: #f6f2ea;
    --paper-2: #fffaf1;
    --ink: #18201c;
    --muted: #677169;
    --line: rgba(24, 32, 28, 0.14);
    --green: #1f6b53;
    --green-2: #0e3f34;
    --teal: #1c8f8a;
    --sun: #f1b943;
    --clay: #b9664c;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(24, 32, 28, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 50;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    background: rgba(246, 242, 234, 0.84);
    box-shadow: 0 12px 40px rgba(24, 32, 28, 0.12);
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    background: rgba(255, 250, 241, 0.95);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: transparent;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.96rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    border-radius: 8px;
    padding: 10px 12px;
    color: rgba(24, 32, 28, 0.78);
    font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
    background: rgba(31, 107, 83, 0.1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: grid;
    align-items: end;
    padding: 136px max(24px, calc((100vw - 1180px) / 2)) 94px;
    overflow: hidden;
    color: var(--white);
    background: #14201b;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 25, 21, 0.92), rgba(13, 25, 21, 0.64) 42%, rgba(13, 25, 21, 0.2)),
        linear-gradient(180deg, rgba(13, 25, 21, 0.1), rgba(13, 25, 21, 0.86));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--sun);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    line-height: 1.02;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    max-width: 880px;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    line-height: 1.18;
}

.hero-lead,
.section-lead,
.page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 28px;
}

.hero-actions,
.pill-row,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    text-align: center;
}

.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.button:hover,
.service-card:hover,
.product-card:hover,
.case-card:hover {
    transform: translateY(-2px);
}

.button.primary {
    color: var(--green-2);
    background: var(--sun);
}

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

.hero-strip {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 24px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 640px;
}

.hero-strip span,
.pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-strip span {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.section,
.cta-band,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.section {
    padding: 86px 0;
}

.intro-grid,
.split,
.page-hero,
.contact-grid,
.comparison {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
}

.intro-grid .section-lead,
.split-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.12rem;
}

.intro-grid .eyebrow,
.split-copy .eyebrow,
.page-hero .eyebrow,
.comparison .eyebrow,
.cta-band .eyebrow {
    color: var(--green);
}

.service-grid,
.product-grid,
.case-grid,
.three-columns,
.proof-grid,
.feature-grid,
.package-grid,
.contact-steps,
.method-list,
.deliverable-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.product-card,
.case-card,
.proof-card,
.feature-grid article,
.package-grid article,
.contact-steps article,
.method-list article,
.deliverable-list article,
.three-columns article,
.table-card,
.variant-list article,
.info-card,
.contact-panel,
.lead-form,
.contact-copy,
.legal-summary,
.legal-content article,
.faq-list details,
.timeline article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.78);
    box-shadow: var(--shadow);
}

.service-card,
.case-card,
.proof-card,
.feature-grid article,
.package-grid article,
.contact-steps article,
.method-list article,
.deliverable-list article,
.variant-list article,
.info-card,
.three-columns article,
.contact-copy,
.legal-summary,
.legal-content article,
.faq-list details,
.timeline article {
    padding: 24px;
}

.service-card,
.product-card,
.case-card {
    transition: transform 180ms ease;
}

.service-card p,
.product-card p,
.case-card p,
.proof-card p,
.feature-grid p,
.package-grid p,
.contact-steps p,
.method-list p,
.deliverable-list p,
.variant-list p,
.variant-list small,
.info-card p,
.faq-list p,
.three-columns p,
.timeline p {
    color: var(--muted);
}

.proof-grid {
    padding-top: 0;
}

.proof-card {
    background: #fffaf1;
}

.proof-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    border-radius: 8px;
    color: var(--green-2);
    background: rgba(241, 185, 67, 0.34);
    font-weight: 900;
}

.insight-band,
.info-band,
.process-note,
.deliverables,
.realization-method,
.faq-section,
.decision-grid {
    border-top: 1px solid var(--line);
}

.insight-band,
.info-band,
.process-note {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
}

.insight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.insight-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(31, 107, 83, 0.18);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--green-2);
    background: rgba(31, 107, 83, 0.08);
    font-weight: 800;
}

.feature-grid,
.contact-steps {
    padding-top: 0;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid h2,
.package-grid h2,
.contact-steps h2,
.deliverable-list h3,
.method-list h3 {
    font-size: 1.35rem;
    line-height: 1.14;
}

.variant-list {
    display: grid;
    gap: 12px;
}

.variant-list article {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 8px 18px;
}

.variant-list strong {
    color: var(--green);
    font-size: 1.35rem;
}

.variant-list span {
    color: var(--ink);
    font-weight: 800;
}

.variant-list small {
    grid-column: 2;
}

.info-card {
    align-self: stretch;
    display: grid;
    align-content: center;
    background: linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(241, 185, 67, 0.18));
}

.info-card span,
.contact-steps span {
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.decision-grid,
.deliverables,
.realization-method,
.faq-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
}

.decision-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.decision-list article {
    border-left: 3px solid var(--sun);
    padding: 0 0 0 16px;
}

.decision-list h3 {
    font-size: 1.1rem;
}

.decision-list p,
.info-band p,
.process-note p {
    color: var(--muted);
    font-size: 1.08rem;
}

.process-note {
    color: var(--white);
    border: 0;
    border-radius: 8px;
    padding: 34px;
    background: linear-gradient(135deg, var(--green-2), #27624d);
}

.process-note .button {
    width: max-content;
}

.process-note p {
    color: rgba(255, 255, 255, 0.78);
}

.case-detail {
    display: grid;
    gap: 6px;
    margin: 18px 0;
    padding: 14px;
    border-radius: 8px;
    background: rgba(31, 107, 83, 0.08);
}

.case-detail strong {
    color: var(--green);
}

.case-detail small {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    box-shadow: none;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.faq-list p {
    margin: 14px 0 0;
}

.icon-badge {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    border-radius: 8px;
    color: var(--green-2);
    background: rgba(241, 185, 67, 0.32);
}

.icon-badge svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 800;
}

.split {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.split-media {
    overflow: hidden;
    border-radius: 8px;
    background: #e8efe6;
}

.split-media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-weight: 700;
}

.check-list svg {
    width: 20px;
    min-width: 20px;
    margin-top: 2px;
    fill: var(--teal);
}

.product-card {
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e7eee8;
}

.product-card div,
.product-card h3,
.product-card p {
    padding-inline: 20px;
}

.product-card div {
    padding-top: 20px;
    padding-bottom: 22px;
}

.product-card > h3,
.product-card > p {
    padding-top: 0;
}

.pill-row span {
    color: var(--green-2);
    background: rgba(31, 107, 83, 0.1);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 86px;
    padding: 34px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-2), #28664f 54%, #8d643b);
}

.cta-band h2 {
    max-width: 780px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3.3vw, 3.2rem);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    min-height: 72vh;
    margin: 0 auto;
    padding: 146px 0 70px;
}

.page-hero.compact {
    display: block;
    min-height: 48vh;
    max-width: 960px;
}

.page-hero h1 {
    color: var(--ink);
    font-size: clamp(2.65rem, 5.6vw, 5.6rem);
}

.page-hero p {
    color: var(--muted);
}

.page-hero img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.three-columns {
    padding-top: 0;
}

.comparison {
    padding-top: 20px;
}

.table-card {
    overflow: hidden;
}

.table-card div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
}

.table-card div:last-child {
    border-bottom: 0;
}

.table-card strong {
    color: var(--green);
    font-size: 1.2rem;
}

.table-card span {
    color: var(--muted);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
}

.timeline span,
.case-card > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--clay);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.timeline h2,
.case-card h2,
.three-columns h2 {
    font-size: 1.55rem;
}

.contact-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 26px;
}

.contact-panel a,
.contact-panel span {
    display: block;
    border-radius: 8px;
    padding: 16px;
    color: var(--green-2);
    background: rgba(31, 107, 83, 0.08);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-grid {
    align-items: start;
    padding-top: 0;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.lead-form .full,
.lead-form button,
.form-note {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    min-width: 0;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(28, 143, 138, 0.16);
    border-color: var(--teal);
}

.lead-form button {
    width: max-content;
}

.form-note {
    margin: 0;
    color: var(--muted);
}

.form-note a {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-hero {
    max-width: 1040px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding-top: 0;
}

.legal-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
}

.legal-summary strong {
    font-size: 1.2rem;
}

.legal-summary span,
.legal-summary small,
.legal-content p {
    color: var(--muted);
}

.legal-summary a {
    color: var(--green);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.legal-content {
    display: grid;
    gap: 14px;
}

.legal-content h2 {
    font-size: 1.45rem;
    line-height: 1.18;
}

.legal-content p {
    margin-bottom: 0;
}

.site-footer {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 250, 241, 0.72);
    box-shadow: 0 16px 44px rgba(24, 32, 28, 0.08);
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px 0;
}

.footer-brand strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.site-footer p {
    margin: 6px 0 0;
    color: var(--muted);
    max-width: 520px;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 16px;
}

.footer-contact a {
    color: var(--green);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px 20px;
    color: var(--muted);
    font-size: 0.92rem;
    border-top: 1px solid rgba(24, 32, 28, 0.08);
}

.footer-legal a {
    color: var(--green);
    font-weight: 800;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 76px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--paper-2);
        box-shadow: var(--shadow);
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    body.menu-open .site-nav {
        display: flex;
    }

    .site-nav a {
        padding: 14px;
    }

    .intro-grid,
    .split,
    .split.reverse,
    .page-hero,
    .contact-hero,
    .contact-grid,
    .comparison,
    .insight-band,
    .info-band,
    .process-note,
    .decision-grid,
    .deliverables,
    .realization-method,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .product-grid,
    .case-grid,
    .three-columns,
    .proof-grid,
    .feature-grid,
    .package-grid,
    .contact-steps,
    .method-list,
    .deliverable-list,
    .timeline {
        grid-template-columns: 1fr 1fr;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }

    .hero-strip {
        left: 24px;
        right: 24px;
        justify-content: flex-start;
    }

    .page-hero img,
    .split-media img {
        max-height: 520px;
    }
}

@media (max-width: 680px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 8px;
    }

    .brand {
        min-width: 0;
        max-width: calc(100% - 54px);
    }

    .brand small {
        display: none;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 0.88rem;
    }

    .brand strong {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
        flex: 0 0 auto;
    }

    .site-nav {
        inset: 66px 10px auto;
    }

    .hero {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 20px;
        padding: 106px 18px 28px;
    }

    .hero-media {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(13, 25, 21, 0.9), rgba(13, 25, 21, 0.62)),
            linear-gradient(180deg, rgba(13, 25, 21, 0.1), rgba(13, 25, 21, 0.94));
    }

    .hero-content {
        max-width: none;
    }

    h1 {
        font-size: 3rem;
        line-height: 0.98;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.06;
    }

    h3 {
        font-size: 1.22rem;
    }

    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .hero-lead,
    .section-lead,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-strip {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 2;
        max-width: none;
        margin: 0;
    }

    .hero-strip span,
    .pill-row span {
        min-height: 30px;
        font-size: 0.78rem;
    }

    .section {
        padding: 52px 0;
    }

    .section,
    .cta-band,
    .site-footer,
    .page-hero {
        width: min(100% - 24px, 1180px);
    }

    .intro-grid,
    .split,
    .page-hero,
    .contact-grid,
    .comparison {
        gap: 24px;
    }

    .service-grid,
    .product-grid,
    .case-grid,
    .three-columns,
    .proof-grid,
    .feature-grid,
    .package-grid,
    .contact-steps,
    .method-list,
    .deliverable-list,
    .decision-list,
    .timeline,
    .lead-form {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 44px;
    }

    .page-hero h1 {
        font-size: 2.42rem;
        line-height: 1.02;
    }

    .page-hero img,
    .split-media img {
        width: 100%;
        min-height: 0;
        height: auto;
        max-height: none;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .split {
        padding-block: 52px;
    }

    .service-card,
    .case-card,
    .proof-card,
    .feature-grid article,
    .package-grid article,
    .contact-steps article,
    .method-list article,
    .deliverable-list article,
    .variant-list article,
    .info-card,
    .faq-list details,
    .three-columns article,
    .contact-copy,
    .legal-summary,
    .legal-content article,
    .timeline article {
        padding: 20px;
    }

    .product-card img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .product-card div {
        padding: 18px;
    }

    .icon-badge,
    .proof-card span {
        margin-bottom: 18px;
    }

    .table-card div {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px;
    }

    .variant-list article {
        grid-template-columns: 1fr;
    }

    .variant-list small {
        grid-column: auto;
    }

    .process-note {
        padding: 24px;
    }

    .process-note .button {
        width: 100%;
    }

    .lead-form,
    .contact-panel {
        padding: 20px;
    }

    .contact-panel a,
    .contact-panel span {
        padding: 14px;
    }

    .cta-band {
        margin-bottom: 52px;
        padding: 24px;
    }

    .cta-band h2 {
        font-size: 1.85rem;
    }

    .cta-band .button {
        width: 100%;
    }

    .cta-band,
    .footer-legal {
        align-items: flex-start;
    }

    .cta-band {
        flex-direction: column;
    }

    .site-footer {
        margin-bottom: 16px;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        padding: 22px;
    }

    .footer-contact {
        justify-content: flex-start;
    }

    .footer-legal {
        display: grid;
        gap: 6px;
        padding: 14px 22px;
    }

    .lead-form button {
        width: 100%;
    }
}

@media (max-width: 390px) {
    h1 {
        font-size: 2.62rem;
    }

    .page-hero h1 {
        font-size: 2.18rem;
    }

    .hero {
        padding-inline: 14px;
    }

    .button {
        padding-inline: 12px;
    }

    .hero-strip {
        gap: 6px;
    }

    .hero-strip span,
    .pill-row span {
        font-size: 0.74rem;
        padding-inline: 8px;
    }
}
