:root {
    --dark: #111820;
    --ink: #25313c;
    --muted: #65717d;
    --line: #e7e2dc;
    --cream: #f6f1ea;
    --white: #ffffff;
    --accent: #9a6a3a;
    --accent-dark: #83582f;
    --green: #6a8f35;
    --shadow: 0 16px 40px rgba(17, 24, 32, .12);
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}

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

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

a:hover {
    text-decoration: none;
}

.container {
    width: min(var(--max-width), 92vw);
    margin: 0 auto;
}

.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
}

.topbar .container {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar a {
    color: rgba(255, 255, 255, .9);
}

.tb-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.site-header .container {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(22px, 3vw, 54px);
    position: relative;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
}

.site-logo img {
    width: auto;
    height: 92px;
    object-fit: contain;
}

.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(13px, 1.15vw, 22px);
    font-size: clamp(.86rem, .82vw, .98rem);
}

.site-nav a,
.nav-dropdown-toggle {
    color: #26313b;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--green);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 18px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 270px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 6px;
    white-space: normal;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: #f7f3ee;
}

.site-nav a[href$="/contact"] {
    background: var(--dark);
    color: var(--white);
    padding: 13px 20px;
    border-radius: 999px;
}

.site-nav a[href$="/contact"]:hover,
.site-nav a[href$="/contact"].active {
    color: var(--white);
    background: var(--green);
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

section {
    padding: 86px 0;
}

.lead {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 780px;
}

.eyebrow {
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 900;
}

.h2 {
    font-size: 3.25rem;
    line-height: 1.08;
    color: var(--dark);
    margin: 12px 0 18px;
}

.btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 21px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.btn:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(17, 24, 32, .12);
}

.btn.secondary,
.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn.secondary:hover,
.btn-light:hover {
    background: #f2f2f2;
    color: var(--dark);
}

.hero {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
    padding: 0;
}

.hero-video,
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .88;
}

.hero-video {
    z-index: 0;
    transform: translateX(3%) scale(1.22);
    transform-origin: center center;
}

.hero-fallback {
    z-index: 0;
}

.hero-video + .hero-fallback {
    display: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .18), rgba(0, 0, 0, .02));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 118px 0 78px;
}

.hero h1 {
    max-width: 560px;
    margin: 0 0 16px;
    font-size: 3.8rem;
    line-height: 1.02;
}

.hero p {
    max-width: 520px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .92);
    font-size: 1.12rem;
}

.page-hero {
    background: linear-gradient(135deg, #f7f3ee, #ffffff);
    padding: 76px 0;
}

.page-hero h1 {
    max-width: 920px;
    margin: 10px 0 14px;
    color: var(--dark);
    font-size: 4rem;
    line-height: 1;
}

.page-intro {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: .95fr 1.05fr;
}

.split p {
    font-size: 1.05rem;
    color: #44515d;
    margin: 0 0 18px;
}

.card-img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--cream);
}

.card-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.cream {
    background: var(--cream);
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.grid-blog {
    grid-template-columns: repeat(3, 1fr);
}

.solution,
.project,
.feature {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 24, 32, .06);
}

.solution {
    overflow: hidden;
}

.solution img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.solution div {
    padding: 22px;
}

.solution h3,
.project h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.34rem;
    line-height: 1.18;
}

.solution p,
.project p,
.feature p {
    color: var(--muted);
    margin: 0;
}

.solution a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--green);
    font-weight: 800;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    padding: 24px;
}

.feature strong {
    display: block;
    color: var(--dark);
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.trust-strip {
    padding: 26px 0;
    background: #f7f3ee;
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    padding: 18px;
    border: 1px solid rgba(154, 106, 58, .18);
    border-radius: 8px;
    background: var(--white);
}

.trust-item strong {
    display: block;
    color: var(--dark);
    line-height: 1.2;
}

.trust-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.45;
}

.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step {
    position: relative;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fdfaf6;
}

.process-step span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--dark);
    color: var(--white);
    font-weight: 900;
}

.process-step strong {
    display: block;
    color: var(--dark);
    font-size: 1.2rem;
}

.process-step p {
    margin: 8px 0 0;
    color: var(--muted);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project {
    overflow: hidden;
}

.project img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.project div {
    padding: 22px;
}

.project-meta {
    display: grid;
    gap: 11px;
    margin: 14px 0 0;
}

.project-meta div {
    padding: 0;
}

.project-meta dt {
    color: var(--accent);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.project-meta dd {
    margin: 2px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.image-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.image-strip figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 24, 32, .06);
}

.image-strip img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.image-strip figcaption {
    padding: 14px 16px;
    color: var(--dark);
    font-weight: 800;
}

.list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.list span {
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.cta-note {
    margin: 14px 0 0 !important;
    color: var(--muted);
    font-size: .95rem !important;
}

.comparison {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(17, 24, 32, .06);
}

table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

th,
td {
    padding: 17px 15px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

th {
    background: #f7f3ee;
    color: var(--dark);
}

tr:last-child td {
    border-bottom: 0;
}

.comparison-note {
    max-width: 900px;
    margin: 22px auto 0;
    color: #44515d;
    font-size: 1.04rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 22px;
    box-shadow: 0 10px 28px rgba(17, 24, 32, .05);
}

.faq-item h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.08rem;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
}

.article {
    max-width: 900px;
}

.article h2 {
    color: var(--dark);
    font-size: 2.1rem;
    margin: 34px 0 18px;
}

.article h2:first-child {
    margin-top: 0;
}

.article h3 {
    margin: 28px 0 12px;
    color: var(--dark);
    font-size: 1.35rem;
}

.article p,
.article li {
    color: #44515d;
    font-size: 1.1rem;
}

.article .comparison {
    margin: 28px 0 36px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 18px 0 26px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.note {
    margin: 26px 0;
    padding: 20px;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: #f7f3ee;
}

.cta {
    background: #243b35;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin: 0 0 12px;
    font-size: 2.8rem;
    line-height: 1.1;
}

.cta .lead {
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, .75);
}

.contact-section {
    padding: 78px 0 88px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.contact-copy h1 {
    margin: 0 0 26px;
    color: var(--dark);
    font-size: 4.6rem;
    line-height: .95;
}

.contact-copy p {
    margin: 0 0 22px;
    font-size: 1.05rem;
}

.lead-form {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.lead-form label {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 800;
}

.lead-form label span {
    color: #d94a3a;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.form-input {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-size: 1rem;
}

.lead-form input,
.lead-form select {
    height: 56px;
}

.lead-form input[type="file"] {
    height: auto;
    padding: 14px 18px;
    cursor: pointer;
}

.lead-form textarea {
    min-height: 130px;
    padding: 16px 18px;
    resize: vertical;
    line-height: 1.5;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(154, 106, 58, .12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-row label {
    display: block;
    margin-bottom: 14px;
}

.form-hint {
    margin: -4px 0 0 !important;
    color: var(--muted);
    font-size: .92rem !important;
    line-height: 1.45;
}

.lead-form button {
    height: 56px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: var(--white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.lead-form button:hover {
    background: var(--accent-dark);
}

.lead-form button:disabled {
    opacity: .72;
    cursor: wait;
}

.turnstile-field {
    min-height: 65px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-msg {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: .95rem;
}

.form-msg.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-msg.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.privacy-note {
    color: var(--muted);
    font-size: .92rem !important;
    margin-top: 16px !important;
}

.contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-direct a {
    color: var(--green);
    font-weight: 800;
}

.contact-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(17, 24, 32, .14);
}

.contact-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.contact-panel {
    display: grid;
    gap: 22px;
}

.contact-benefits {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7f3ee;
}

.contact-benefits h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 1.45rem;
}

.contact-benefits ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: #44515d;
}

.contact-benefits p {
    margin: 16px 0 0;
    color: var(--dark);
    font-weight: 800;
}

.mobile-lead-bar {
    display: none;
}

.site-footer {
    background: #0c1117;
    color: #cdd5dd;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 30px;
}

.footer-brand img {
    width: 300px;
    max-width: 100%;
    height: auto;
    filter: none;
    border-radius: 4px;
}

.site-footer h4 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 8px 0;
    color: #cdd5dd;
    font-size: .95rem;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    margin: 0;
    color: #8e99a4;
    font-size: .84rem;
}

.footer-bottom p:last-child {
    white-space: nowrap;
}

.footer-bottom a {
    display: inline;
    margin: 0;
    color: inherit;
    font: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 1080px) {
    .site-header .container {
        min-height: 92px;
    }

    .site-logo {
        max-width: calc(100% - 58px);
    }

    .site-logo img {
        max-width: 100%;
        height: 74px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 4vw;
        right: 4vw;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }

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

    .site-nav a {
        padding: 12px;
        white-space: normal;
    }

    .nav-dropdown {
        display: block;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 12px;
        text-align: left;
        white-space: normal;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 0 8px 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        transition: none;
    }

    .site-nav .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .nav-dropdown-menu a {
        padding: 10px 12px;
    }

    .site-nav a[href$="/contact"] {
        margin-top: 8px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .split,
    .split.reverse,
    .grid4,
    .grid-blog,
    .image-strip,
    .faq-grid,
    .features,
    .process-steps,
    .project-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .split,
    .split.reverse,
    .contact-grid {
        gap: 38px;
    }

    .card-img img {
        height: 380px;
    }

    .contact-image img {
        height: 430px;
    }

    .image-strip img {
        height: 250px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(var(--max-width), calc(100vw - 32px));
    }

    .topbar {
        font-size: .76rem;
    }

    .topbar .container {
        min-height: 32px;
        justify-content: center;
        text-align: center;
    }

    .topbar .container > div:first-child,
    .tb-right span:first-child {
        display: none;
    }

    .tb-right {
        justify-content: center;
        gap: 0;
        min-width: 0;
    }

    .tb-email,
    .tb-email a {
        min-width: 0;
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: nowrap;
    }

    .tb-email {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .72rem;
    }

    .tb-email a {
        display: inline;
        max-width: none;
    }

    .site-header .container {
        min-height: 72px;
    }

    .site-logo img {
        width: auto;
        height: 54px;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        min-height: 540px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .78));
    }

    .hero-content {
        padding: 70px 0 48px;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.08;
    }

    .page-hero h1 {
        font-size: 2.25rem;
        line-height: 1.08;
    }

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

    .page-hero {
        padding: 48px 0;
    }

    .page-intro {
        margin-bottom: 34px;
    }

    .split,
    .split.reverse,
    .contact-grid {
        gap: 28px;
    }

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

    .btns {
        gap: 10px;
    }

    .btn {
        width: 100%;
        min-height: 46px;
        padding: 12px 18px;
    }

    .cta h2 {
        font-size: 1.9rem;
    }

    .solution div,
    .project div,
    .feature,
    .faq-item,
    .trust-item,
    .process-step,
    .contact-benefits {
        padding: 18px;
    }

    .trust-grid,
    .form-row,
    .check-list {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        padding: 18px 0;
    }

    .process-step {
        min-height: 0;
    }

    .solution img,
    .project img,
    .image-strip img {
        height: 210px;
    }

    .card-img img {
        height: 300px;
    }

    .comparison {
        margin-right: -16px;
        margin-left: -16px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    table {
        min-width: 720px;
        font-size: .92rem;
    }

    th,
    td {
        padding: 13px 12px;
    }

    .contact-section {
        padding: 54px 0 64px;
    }

    .contact-copy h1 {
        font-size: 2.55rem;
        line-height: 1;
    }

    .contact-direct {
        flex-direction: column;
        gap: 6px;
    }

    .contact-direct a,
    .site-footer a {
        overflow-wrap: anywhere;
    }

    .lead-form input,
    .lead-form select,
    .lead-form button {
        height: 54px;
    }

    .lead-form textarea {
        min-height: 120px;
    }

    .contact-image img {
        height: 320px;
    }

    .site-footer {
        padding: 44px 0 28px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-brand img {
        width: 260px;
    }

    .footer-bottom {
        gap: 8px;
    }

    .footer-bottom p:last-child {
        white-space: normal;
    }

    .mobile-lead-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: rgba(12, 17, 23, .96);
        box-shadow: 0 -10px 28px rgba(17, 24, 32, .18);
    }

    .mobile-lead-bar a {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: var(--white);
        font-weight: 900;
        text-align: center;
    }

    .mobile-lead-call {
        border: 1px solid rgba(255, 255, 255, .28);
        background: transparent;
    }

    .mobile-lead-quote {
        background: var(--accent);
    }
}

@media (max-width: 420px) {
    .site-logo img {
        height: 48px;
    }

    .hero {
        min-height: 520px;
    }

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

    .card-img img,
    .contact-image img {
        height: 260px;
    }

    .solution img,
    .project img,
    .image-strip img {
        height: 190px;
    }

    .footer-brand img {
        width: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .hero-video + .hero-fallback {
        display: block;
    }
}
