:root {
    --ink: #14212b;
    --muted: #60707c;
    --steel: #e8eef2;
    --panel: #f6f8f9;
    --dark: #17232c;
    --accent: #f2b705;
    --accent-dark: #b77700;
    --white: #fff;
    --line: #d8e0e5;
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
}
body::selection { background: var(--accent); color: #121212; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p, a, li, dd, dt, strong, span { overflow-wrap: anywhere; }

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px clamp(18px, 4vw, 56px);
    background: var(--dark);
    color: #d8e0e5;
    font-size: 14px;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #111;
    font-weight: 800;
    border-radius: 6px;
}
.brand small { display: block; color: var(--muted); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}
.nav-links > a,
.nav-item > a,
.location-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 11px;
    border-radius: 999px;
    color: #263640;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links > a::after,
.nav-item > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.nav-links > a:hover,
.nav-item:hover > a,
.nav-item > a:hover,
.location-picker:hover {
    background: var(--panel);
    color: var(--accent-dark);
    transform: translateY(-1px);
}
.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-item:hover > a::after,
.nav-item > a.active::after {
    transform: scaleX(1);
}
.nav-links a.active { color: var(--accent-dark); }
.nav-cta {
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white) !important;
    border-radius: 6px;
}
.nav-cta:hover {
    background: #0d171f !important;
    color: var(--white) !important;
}
.nav-item {
    position: relative;
}
.nav-item::before {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 18px;
}
.mega-menu,
.dropdown-menu,
.location-menu {
    position: absolute;
    top: 100%;
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item:hover .location-menu,
.nav-item:focus-within .location-menu,
.nav-item.open .location-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mega-menu {
    left: 50%;
    display: grid;
    grid-template-columns: 280px minmax(480px, 680px);
    gap: 22px;
    width: min(980px, calc(100vw - 48px));
    padding: 36px 24px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.98);
    box-shadow: 0 28px 90px rgba(20,33,43,.18);
    transform: translate(-50%, 10px);
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
    transform: translate(-50%, 0);
}
.compact-menu {
    grid-template-columns: 1fr;
    width: min(760px, calc(100vw - 48px));
}
.mega-intro {
    padding: 22px;
    border-radius: var(--radius);
    background: var(--dark);
    color: var(--white);
}
.mega-intro h3 {
    margin: 8px 0 10px;
    font-size: 28px;
    line-height: 1.05;
}
.mega-intro p {
    color: #dbe4e9;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.mega-grid a,
.dropdown-menu a,
.location-menu a {
    display: block;
    padding: 14px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    color: var(--ink);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.mega-grid a:hover,
.dropdown-menu a:hover,
.location-menu a:hover {
    transform: translateY(-2px);
    border-color: var(--line);
    background: var(--panel);
}
.mega-grid strong,
.location-menu strong {
    display: block;
    margin-bottom: 4px;
}
.mega-grid span,
.location-menu span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}
.dropdown-menu,
.location-menu {
    right: 0;
    min-width: 230px;
    padding: 22px 10px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(20,33,43,.16);
}
.location-picker {
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    background: var(--panel);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.location-picker span { font-size: 18px; line-height: 1; }
.location-picker strong { font-size: 13px; }
.location-nav {
    display: flex;
    align-items: center;
}
.nav-toggle { display: none; }

.hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}
.hero-slider {
    background: var(--dark);
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .7s ease, transform 1.2s ease;
    background:
        linear-gradient(90deg, rgba(18,30,39,.88), rgba(18,30,39,.42)),
        var(--bg) center/cover;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    padding: 0 clamp(18px, 5vw, 72px) 88px;
}
.hero-quote-panel {
    position: absolute;
    z-index: 3;
    right: clamp(18px, 5vw, 72px);
    bottom: 112px;
    width: min(410px, 36vw);
    padding: 24px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--radius);
    background: rgba(255,255,255,.94);
    color: var(--ink);
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
    opacity: 0;
    animation: heroPanelIn .85s ease .35s forwards, heroPanelFloat 5.8s ease-in-out 1.4s infinite;
}
.hero-quote-panel h2 {
    margin: 8px 0 18px;
    font-size: 30px;
    line-height: 1.05;
}
.hero-quote-panel form {
    display: grid;
    gap: 12px;
}
.hero-quote-panel label {
    font-size: 13px;
}
.hero-quote-panel input,
.hero-quote-panel select {
    margin-top: 6px;
    background: var(--white);
}
.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}
.hero-mini-stats div {
    padding: 12px;
    border-radius: 7px;
    background: var(--panel);
}
.hero-mini-stats strong {
    display: block;
    color: var(--accent-dark);
    font-size: 22px;
    line-height: 1;
}
.hero-mini-stats span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
}

@keyframes heroPanelIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.96);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroPanelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero h1, .page-hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1;
    letter-spacing: 0;
}
.hero p, .page-hero p {
    max-width: 760px;
    font-size: 20px;
}
.eyebrow {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 800;
}
.btn-primary { background: var(--accent); color: #121212; }
.btn-secondary { border-color: var(--line); background: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.slider-controls {
    position: absolute;
    z-index: 4;
    right: clamp(18px, 4vw, 56px);
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(12,20,26,.58);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}
.slider-controls button {
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}
.slider-prev, .slider-next {
    width: 30px;
    height: 30px;
    font-size: 28px;
    line-height: 1;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.48) !important;
}
.slider-dot.active { background: var(--accent) !important; }

.band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}
.stats-band div {
    padding: 26px clamp(18px, 4vw, 48px);
    background: var(--panel);
}
.stats-band strong { display: block; font-size: 24px; }
.stats-band span { color: var(--muted); }

.section {
    padding: 76px clamp(18px, 4vw, 56px);
}
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    gap: 44px;
    align-items: center;
}
.section h2, .page-hero h1 {
    margin-top: 0;
}
.section h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}
.text-link {
    color: var(--accent-dark);
    font-weight: 800;
    border-bottom: 2px solid currentColor;
}
.check-panel, .identity-card, .quote-aside {
    background:
        linear-gradient(180deg, #fff, #f6f8f9);
    border: 1px solid rgba(216,224,229,.95);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 18px 50px rgba(20,33,43,.08);
}
.quote-aside {
    position: sticky;
    top: 106px;
    overflow: hidden;
}
.quote-aside::before {
    content: "";
    display: block;
    width: 54px;
    height: 5px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--accent);
}
.quote-aside h2,
.quote-aside h3 {
    margin-top: 0;
}
.quote-aside a {
    color: var(--accent-dark);
    font-weight: 900;
}
.check-panel li, .feature-list li { margin-bottom: 8px; }
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}
.section-head h2 { max-width: 760px; margin-bottom: 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.product-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 55px rgba(20,33,43,.08);
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242,183,5,.85);
    box-shadow: 0 34px 90px rgba(20,33,43,.2);
}
.product-image-link {
    position: relative;
    display: block;
    overflow: hidden;
}
.product-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(20,33,43,.78));
    transition: opacity .28s ease;
}
.product-image-link span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 900;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease;
}
.product-card:hover .product-image-link::after,
.product-card:hover .product-image-link span {
    opacity: 1;
}
.product-card:hover .product-image-link span {
    transform: translateY(0);
}
.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s ease, filter .35s ease;
}
.product-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}
.product-body { padding: 22px; }
.product-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}
.product-head h3 { margin: 0; font-size: 22px; }
.product-head strong { color: var(--accent-dark); white-space: nowrap; }
dl { display: grid; gap: 8px; margin: 18px 0; }
dt { color: var(--muted); font-size: 12px; text-transform: uppercase; font-weight: 800; }
dd { margin: 0; font-weight: 700; }
.feature-list { padding-left: 18px; color: var(--muted); }
.product-detail { color: #40515d; font-size: 15px; }

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.category-product-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,249,250,.96));
    box-shadow: 0 20px 55px rgba(20,33,43,.08);
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.category-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242,183,5,.85);
    background:
        linear-gradient(180deg, rgba(255,255,255,1), rgba(255,250,230,.96));
    box-shadow: 0 34px 90px rgba(20,33,43,.18);
}
.category-product-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
.category-product-top strong {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #121212;
    white-space: nowrap;
}
.category-product-card h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
}
.category-product-card:hover h2 {
    color: var(--accent-dark);
}
.category-product-card .btn {
    transition: transform .2s ease;
}
.category-product-card:hover .btn-primary,
.product-card:hover .btn-primary {
    transform: translateY(-2px);
}
.spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}
.spec-list div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.category-grid, .faq-grid, .hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.partners-preview { background: #ffffff; }
.category-grid article, .faq-grid article, .hub-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f8fafb);
}
.category-grid h3, .faq-grid h3, .hub-grid h3 { margin-top: 0; }
.tight-top { padding-top: 0; }

.service-strip, .service-grid, .team-grid, .process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-strip article, .service-grid article, .team-grid article, .process article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}
.service-strip { background: var(--panel); grid-template-columns: repeat(4, 1fr); }
.service-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: 6px;
    font-weight: 900;
}
.page-hero {
    min-height: 430px;
    padding: 96px clamp(18px, 4vw, 56px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(20,33,43,.9), rgba(20,33,43,.55)),
        url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.page-hero.compact { min-height: 360px; }
.service-hero { background-image: linear-gradient(90deg, rgba(20,33,43,.9), rgba(20,33,43,.55)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80'); }
.about-hero { background-image: linear-gradient(90deg, rgba(20,33,43,.9), rgba(20,33,43,.55)), url('https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1800&q=80'); }
.dark-panel {
    margin: 0 clamp(18px, 4vw, 56px) 76px;
    padding: 38px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius);
}
.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.location-list.expanded {
    grid-template-columns: repeat(4, 1fr);
}
.location-list span {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 800;
}
.process strong, .avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    font-weight: 900;
}
.process-journey {
    background: linear-gradient(180deg, #ffffff, #f4f7f9);
}
.process-journey .section-head p {
    max-width: 780px;
    color: var(--muted);
}
.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    counter-reset: journey;
}
.journey-grid article {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 20px 55px rgba(20,33,43,.08);
}
.journey-grid article::before {
    content: "";
    position: absolute;
    top: 46px;
    right: -30px;
    width: 110px;
    height: 2px;
    background: var(--accent);
    opacity: .55;
}
.journey-grid article:nth-child(3n)::before {
    display: none;
}
.journey-grid strong {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--accent);
    font-weight: 900;
}
.journey-grid h3 {
    margin: 22px 0 10px;
    font-size: 24px;
}
.journey-grid p {
    color: var(--muted);
}
.map-section { background: var(--panel); }
.calculator-preview {
    background:
        linear-gradient(135deg, rgba(23,35,44,.96), rgba(44,61,70,.94)),
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
}
.calculator-preview p { color: #dbe4e9; }
.calculator-mini {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
}
.calculator-mini strong {
    display: block;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
    color: var(--accent);
}
.calculator-mini span {
    display: block;
    margin: 12px 0 18px;
    font-weight: 900;
}
.mini-meter {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}
.mini-meter span {
    display: block;
    width: 68%;
    height: 100%;
    margin: 0;
    background: var(--accent);
}
.calculator-section {
    background: linear-gradient(180deg, #ffffff, #f4f7f9);
}
.calculator-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .7fr);
    gap: 28px;
    align-items: start;
}
.price-calculator,
.calculator-result {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 24px 75px rgba(20,33,43,.11);
}
.price-calculator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}
.calculator-group {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.calculator-group h2 {
    margin-bottom: 0;
    font-size: 34px;
}
.calculator-addons {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
}
.calculator-addons .eyebrow {
    grid-column: 1 / -1;
}
.calculator-addons label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--panel);
}
.calculator-addons input {
    width: auto;
    margin: 0;
}
.calculator-result {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,248,249,.96)),
        url('https://images.unsplash.com/photo-1605745341112-85968b19335b?auto=format&fit=crop&w=900&q=70') center/cover;
}
.estimate-range {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}
.estimate-range span {
    color: var(--accent-dark);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 900;
    line-height: 1;
}
.estimate-range small {
    color: var(--muted);
    font-weight: 900;
}
.estimate-breakdown {
    display: grid;
    gap: 10px;
}
.estimate-breakdown div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.estimate-breakdown span {
    color: var(--muted);
}
.map-card {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 25% 45%, rgba(242,183,5,.34) 0 4%, transparent 4.5%),
        radial-gradient(circle at 58% 52%, rgba(242,183,5,.26) 0 3.5%, transparent 4%),
        linear-gradient(135deg, #edf3f6, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 20px 55px rgba(20,33,43,.1);
}
.map-card.large { min-height: 430px; }
.map-card::before {
    content: "";
    position: absolute;
    inset: 34px 28px 84px;
    background:
        linear-gradient(90deg, transparent 48%, rgba(23,35,44,.12) 48% 52%, transparent 52%),
        linear-gradient(rgba(23,35,44,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,35,44,.10) 1px, transparent 1px);
    background-size: 100% 100%, 42px 42px, 42px 42px;
    border: 2px solid rgba(23,35,44,.16);
    border-radius: 42% 48% 38% 44%;
}
.map-card strong, .map-card span { position: relative; z-index: 2; }
.map-card strong { font-size: 28px; line-height: 1.1; }
.map-card span { color: var(--muted); }
.map-pin {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50% 50% 50% 6px;
    transform: rotate(-45deg);
    background: var(--accent);
    color: #121212;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(20,33,43,.22);
}
.map-pin::first-letter { transform: rotate(45deg); }
.map-pin { font-size: 12px; }
.pin-a { left: 54%; top: 57%; }
.pin-b { left: 39%; top: 62%; }
.pin-c { left: 61%; top: 58%; }
.pin-d { left: 56%; top: 48%; }
.pin-e { left: 69%; top: 50%; }
.pin-f { left: 15%; top: 47%; }

.testimonials-section {
    background:
        linear-gradient(180deg, #ffffff, #f3f7f9);
    overflow: hidden;
}
.testimonial-controls {
    display: flex;
    gap: 10px;
}
.testimonial-controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(20,33,43,.08);
}
.testimonial-window {
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    gap: 22px;
    transition: transform .55s ease;
    will-change: transform;
}
.testimonial-card {
    position: relative;
    flex: 0 0 calc((100% - 44px) / 3);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,248,249,.96)),
        url('https://images.unsplash.com/photo-1605745341112-85968b19335b?auto=format&fit=crop&w=900&q=70') center/cover;
    box-shadow: 0 22px 65px rgba(20,33,43,.12);
    overflow: hidden;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
}
.testimonial-card > * {
    position: relative;
    z-index: 1;
}
.testimonial-rating {
    width: fit-content;
    padding: 8px 12px;
    background: var(--accent);
    border-radius: 999px;
    color: #121212;
    font-weight: 900;
    font-size: 14px;
}
.testimonial-card p {
    margin: 24px 0;
    color: #24333d;
    font-size: 18px;
    line-height: 1.55;
}
.testimonial-meta {
    display: flex;
    gap: 14px;
    align-items: center;
}
.testimonial-meta > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-weight: 900;
}
.testimonial-meta small,
.testimonial-meta em {
    display: block;
    color: var(--muted);
    font-style: normal;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}
.dimension-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(20,33,43,.08);
}
.dimension-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: var(--white);
}
.dimension-table th,
.dimension-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.dimension-table th {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
}
.dimension-table td:first-child {
    font-weight: 900;
    color: var(--accent-dark);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.blog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 20px 55px rgba(20,33,43,.08);
}
.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.blog-card div { padding: 24px; }
.blog-card h2 {
    margin: 8px 0 12px;
    font-size: 25px;
    line-height: 1.15;
}
.blog-detail p {
    font-size: 19px;
    line-height: 1.75;
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sitemap-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(20,33,43,.08);
}
.sitemap-grid h2 {
    margin-bottom: 16px;
    font-size: 28px;
}
.sitemap-grid a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
}
.sitemap-grid a:hover {
    color: var(--accent-dark);
}
.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
    position: relative;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(216,224,229,.95);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.97), rgba(246,248,249,.96)),
        radial-gradient(circle at top right, rgba(242,183,5,.14), transparent 34%);
    box-shadow: 0 24px 70px rgba(20,33,43,.11);
    overflow: hidden;
}
.quote-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), #f7d462, var(--dark));
}
.quote-form label,
.support-form label,
.newsletter-content label {
    display: grid;
    gap: 7px;
    align-content: start;
}
label {
    font-weight: 900;
    color: #24333d;
    letter-spacing: .01em;
}
input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    margin-top: 0;
    padding: 14px 15px;
    border: 1px solid #cbd6dd;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fbfcfd);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 1px 0 rgba(20,33,43,.03);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
select {
    appearance: none;
    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%),
        linear-gradient(180deg, #fff, #fbfcfd);
    background-position:
        calc(100% - 21px) 50%,
        calc(100% - 15px) 50%,
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
}
textarea {
    min-height: 148px;
    resize: vertical;
    line-height: 1.55;
}
input::placeholder,
textarea::placeholder {
    color: #7b8993;
    font-weight: 700;
}
input:hover,
select:hover,
textarea:hover {
    border-color: #aab9c3;
    box-shadow: 0 8px 22px rgba(20,33,43,.06);
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(242,183,5,.22), 0 12px 28px rgba(20,33,43,.08);
}
input[type="file"] {
    min-height: auto;
    padding: 10px;
    background: var(--white);
}
input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 10px 14px;
    border: 0;
    border-radius: 6px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}
.quote-form .btn,
.support-form .btn,
.newsletter-content .btn {
    min-height: 54px;
    font-size: 16px;
    box-shadow: 0 12px 26px rgba(183,119,0,.18);
}
.full, .quote-form button { grid-column: 1 / -1; }
.captcha-placeholder {
    margin: 2px 0 4px;
    overflow-x: auto;
}
.captcha-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px dashed #a9b8c2;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f4f7f9);
}
.captcha-box p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 14px;
}
.captcha-check {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 2px solid var(--line);
    border-radius: 5px;
    background: var(--white);
}
.captcha-check::after {
    content: "";
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--accent-dark);
    border-bottom: 3px solid var(--accent-dark);
    transform: rotate(-45deg);
    opacity: .35;
}

.footer {
    background: var(--dark);
    color: #dbe4e9;
}
.footer-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 54px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta h2 { max-width: 760px; margin: 8px 0 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(5, 1fr);
    gap: 28px;
    padding: 48px clamp(18px, 4vw, 56px);
}
.social-links {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.social-links a {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    flex: 0 0 34px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: normal;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(242,183,5,.7);
    background: rgba(242,183,5,.16);
}
.social-links-top {
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 0;
}
.social-links-top a {
    width: 28px;
    height: 28px;
    font-size: 10px;
}
.contact-social {
    margin: 10px 0 22px;
}
.contact-social a {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.footer .social-links {
    display: flex;
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.footer .social-links a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex-basis: 38px;
    border-radius: 50%;
    font-size: 11px;
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.08);
}
.payment-methods {
    margin-top: 18px;
}
.payment-methods span {
    display: block;
    margin-bottom: 8px;
    color: #aebbc3;
    font-weight: 800;
}
.payment-methods img {
    max-width: 230px;
    border-radius: 4px;
    background: var(--white);
}
.footer h3 { color: var(--white); }
.footer a { display: block; margin: 9px 0; }
.footer .social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: auto;
    max-width: 100%;
    margin-top: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.footer .social-links a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex: 0 0 38px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}
.footer-brand { margin-bottom: 16px; }
.muted { color: #aebbc3; }
.copyright {
    padding: 18px clamp(18px, 4vw, 56px);
    border-top: 1px solid rgba(255,255,255,.12);
    color: #aebbc3;
}

.legal-page {
    max-width: 980px;
    margin: 0 auto;
}
.legal-page h2 {
    margin-top: 34px;
    font-size: 28px;
}
.legal-page p { color: #354753; }
.notice {
    padding: 18px 20px;
    border-left: 5px solid var(--accent);
    background: var(--panel);
    color: var(--ink) !important;
    font-weight: 700;
}
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0;
}
.cookie-banner {
    position: fixed;
    z-index: 30;
    left: clamp(14px, 3vw, 32px);
    right: clamp(14px, 3vw, 32px);
    bottom: 18px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 25px 80px rgba(20,33,43,.2);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

.support-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
}
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 44;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: var(--accent);
    color: #111;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    box-shadow: 0 18px 55px rgba(20,33,43,.22);
    transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
}
.support-launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 16px 10px 10px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: var(--white);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(20,33,43,.26);
}
.support-launcher span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #111;
}
.support-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: min(430px, calc(100vw - 32px));
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 30px 95px rgba(20,33,43,.28);
}
.support-widget.open .support-panel {
    display: block;
    animation: modalIn .25s ease both;
}
.support-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(20,33,43,.94), rgba(20,33,43,.72)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=900&q=70') center/cover;
}
.support-head h2 {
    margin: 6px 0 0;
    font-size: 30px;
    line-height: 1.05;
}
.support-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}
.support-suggestions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 18px 18px 0;
}
.support-suggestions button {
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--panel);
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}
.support-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
}
.support-full {
    grid-column: 1 / -1;
}
.support-upload {
    padding: 14px;
    border: 1px dashed #a9b8c2;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, var(--panel));
}
.support-upload span,
.support-upload small {
    display: block;
}
.support-upload small {
    margin-top: 6px;
    color: var(--muted);
}

.newsletter-modal {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: none;
    place-items: center;
    padding: 18px;
    background: rgba(10,17,22,.56);
    backdrop-filter: blur(8px);
}
.newsletter-modal.show { display: grid; }
.newsletter-dialog {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    width: min(920px, 100%);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 34px 100px rgba(0,0,0,.34);
    animation: modalIn .35s ease both;
}
.newsletter-image {
    min-height: 460px;
    background:
        linear-gradient(180deg, rgba(20,33,43,.05), rgba(20,33,43,.66)),
        url('https://images.unsplash.com/photo-1566041510394-cf7c8fe21800?auto=format&fit=crop&w=1000&q=80') center/cover;
}
.newsletter-content {
    display: grid;
    gap: 16px;
    padding: clamp(28px, 5vw, 52px);
}
.newsletter-content h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}
.newsletter-content p,
.newsletter-content small {
    margin: 0;
    color: var(--muted);
}
.newsletter-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: rgba(20,33,43,.78);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 8;
        background: rgba(10,17,22,.42);
        backdrop-filter: blur(3px);
    }
    .navbar {
        z-index: 30;
    }
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        background: var(--white);
        border-radius: 6px;
        font-size: 22px;
        color: var(--ink);
        cursor: pointer;
        position: relative;
        z-index: 32;
    }
    body.menu-open .nav-toggle {
        background: var(--ink);
        color: var(--white);
        border-color: var(--ink);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 50%;
        width: 100vw;
        max-height: calc(100dvh - 82px);
        transform: translateX(-50%);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px clamp(18px, 4vw, 56px) 18px;
        background: var(--white);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 26px 60px rgba(20,33,43,.22);
        z-index: 31;
    }
    .nav-links.open { display: flex; }
    .nav-links > a,
    .nav-item > a,
    .location-picker,
    .nav-cta {
        justify-content: center;
        width: 100%;
        border-radius: 7px;
        padding: 13px 12px;
        background: var(--panel);
        text-align: center;
    }
    .nav-item {
        width: 100%;
    }
    .mega-menu,
    .dropdown-menu,
    .location-menu {
        display: none !important;
    }
    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu,
    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu,
    .nav-item:hover .location-menu,
    .nav-item:focus-within .location-menu,
    .nav-item.open .location-menu {
        display: none;
    }
    .nav-item::before { display: none; }
    .nav-item > a::after,
    .nav-links > a::after { display: none; }
    .product-grid, .service-strip, .service-grid, .team-grid, .process, .footer-grid, .category-grid, .faq-grid, .hub-grid, .location-list.expanded, .blog-grid, .category-product-grid, .sitemap-grid, .journey-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band div {
        text-align: center;
    }
    .journey-grid article:nth-child(3n)::before { display: block; }
    .journey-grid article:nth-child(2n)::before { display: none; }
    .split, .form-layout, .calculator-shell { grid-template-columns: 1fr; }
    .quote-aside { position: static; }
    .calculator-result { position: static; }
    .testimonial-card { flex-basis: calc((100% - 22px) / 2); }
    .newsletter-modal {
        align-items: end;
        padding: 12px;
    }
    .newsletter-dialog {
        grid-template-columns: 1fr;
        width: min(560px, 100%);
        max-height: calc(100dvh - 24px);
        border-radius: 14px;
        overflow-y: auto;
    }
    .newsletter-image { min-height: 150px; }
    .hero-quote-panel {
        display: none !important;
    }
    .hero-content {
        width: min(760px, 100%);
        padding-bottom: 118px;
    }
}

@media (max-width: 640px) {
    .topbar { display: none; }
    .nav-links {
        max-height: calc(100dvh - 74px);
        padding: 12px 18px 16px;
    }
    .hero { min-height: 560px; }
    .hero h1, .page-hero h1 { font-size: 38px; }
    .hero-content {
        padding-bottom: 106px;
    }
    .hero p {
        font-size: 17px;
    }
    .navbar { gap: 12px; }
    .brand strong { font-size: 15px; }
    .brand small { font-size: 12px; }
    .band, .product-grid, .service-strip, .service-grid, .team-grid, .process, .footer-grid, .quote-form, .category-grid, .faq-grid, .hub-grid, .location-list.expanded, .blog-grid, .category-product-grid, .spec-list, .price-calculator, .calculator-addons, .sitemap-grid, .journey-grid { grid-template-columns: 1fr; }
    .stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
    }
    .stats-band div {
        display: grid;
        place-items: center;
        min-height: 104px;
        padding: 20px 10px;
        text-align: center;
    }
    .stats-band strong {
        font-size: 20px;
        line-height: 1.12;
    }
    .stats-band span {
        display: block;
        max-width: 130px;
        margin-top: 5px;
        font-size: 13px;
        line-height: 1.35;
    }
    .journey-grid article::before { display: none !important; }
    .section-head, .footer-cta { align-items: start; flex-direction: column; }
    .form-layout { gap: 22px; }
    .location-list { grid-template-columns: 1fr; }
    .slider-controls {
        left: 18px;
        right: auto;
        bottom: 24px;
    }
    .cookie-banner, .cookie-banner-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .support-widget {
        right: 14px;
        bottom: 14px;
    }
    .back-to-top {
        right: 14px;
        bottom: 82px;
    }
    .support-panel {
        width: calc(100vw - 28px);
    }
    .support-form,
    .support-suggestions {
        grid-template-columns: 1fr;
    }
    .testimonial-card { flex-basis: 100%; min-height: 330px; }
    .newsletter-modal {
        padding: 10px;
    }
    .newsletter-dialog {
        max-height: calc(100dvh - 20px);
        border-radius: 12px;
    }
    .newsletter-image {
        min-height: 104px;
        background-position: center 42%;
    }
    .newsletter-content {
        gap: 10px;
        padding: 18px;
    }
    .newsletter-content .eyebrow {
        font-size: 11px;
    }
    .newsletter-content h2 {
        font-size: 24px;
        line-height: 1.1;
    }
    .newsletter-content p,
    .newsletter-content small {
        font-size: 13px;
        line-height: 1.45;
    }
    .newsletter-content label {
        font-size: 13px;
    }
    .newsletter-content input {
        min-height: 46px;
    }
    .newsletter-content .g-recaptcha {
        transform: scale(.82);
        transform-origin: left top;
        min-height: 64px;
    }
    .newsletter-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }
    .hero-quote-panel { display: none !important; }
    .hero-mini-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
    .hero-quote-panel {
        opacity: 1;
        animation: none;
    }
}
