:root {
    --navy: #030819;
    --navy-2: #071126;
    --panel: #061f3b;
    --panel-2: #082845;
    --blue: #00aeea;
    --blue-2: #087db4;
    --text: #f6fbff;
    --muted: #aeb9ca;
    --line: rgba(255,255,255,.14);
    --shadow: 0 24px 70px rgba(0,0,0,.28);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

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

button {
    color: inherit;
}

.container {
    width: min(var(--max), calc(100% - 42px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 14px;
    top: -100px;
    z-index: 1000;
    background: var(--blue);
    color: #001426;
    padding: 10px 14px;
    font-weight: 700;
}

.skip-link:focus {
    top: 14px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(3,8,25,.92), rgba(3,8,25,.28));
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(3,8,25,.96);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 82px;
    gap: 28px;
}

.brand {
    width: 142px;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 142px;
    height: auto;
}

.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    letter-spacing: .02em;
}

.site-nav > a,
.dropdown-toggle {
    position: relative;
    padding: 30px 0;
    color: rgba(255,255,255,.9);
    transition: color .2s ease;
}

.site-nav > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--blue);
    transition: transform .22s ease;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.dropdown-toggle:hover,
.nav-dropdown.is-active .dropdown-toggle {
    color: #fff;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown.is-open .dropdown-toggle::after,
.nav-dropdown.is-active .dropdown-toggle::after {
    transform: scaleX(1);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-phone span {
    color: var(--blue);
}

.nav-phone strong {
    font: inherit;
}

.nav-toggle {
    display: none;
    justify-self: end;
    width: 46px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 2px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

.nav-dropdown {
    position: relative;
}

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

.dropdown-menu {
    position: absolute;
    left: 50%;
    top: calc(100% - 7px);
    min-width: 282px;
    padding: 12px;
    background: rgba(4, 14, 35, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: rgba(255,255,255,.86);
    font-size: 14px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    color: #fff;
    background: rgba(0,174,234,.12);
}

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

/* Hero */
.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    background: var(--navy);
}

.hero-slides,
.hero-shade,
.bubble-layer {
    position: absolute;
    inset: 0;
}

.hero-slides {
    z-index: 0;
    overflow: hidden;
}

.hero-slide-track {
    display: flex;
    width: 300%;
    height: 100%;
    transform: translate3d(calc(var(--hero-index, 0) * -33.333333%), 0, 0);
    transition: transform .9s cubic-bezier(.72, 0, .24, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 33.333333%;
    height: 100%;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.025);
    filter: saturate(.94) contrast(1.04);
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3,8,25,.99) 0%, rgba(3,8,25,.9) 28%, rgba(3,8,25,.54) 61%, rgba(3,8,25,.22) 100%),
        linear-gradient(180deg, rgba(3,8,25,.08) 0%, rgba(3,8,25,.18) 58%, var(--navy) 100%);
}

.bubble-layer {
    z-index: 2;
    pointer-events: none;
}

.bubble {
    position: absolute;
    width: var(--size, 14px);
    height: var(--size, 14px);
    border-radius: 999px;
    background: rgba(0,174,234,.18);
    box-shadow: 0 0 20px rgba(0,174,234,.12);
    animation: bubbleFloat var(--speed, 6s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.bubble:nth-child(3n) { background: rgba(0,174,234,.26); }
.bubble:nth-child(4n) { background: rgba(255,255,255,.10); }
.bubble:nth-child(5n) { filter: blur(.2px); }

@keyframes bubbleFloat {
    0% { transform: translate3d(0, 44px, 0) scale(.78); opacity: 0; }
    10% { opacity: .86; }
    62% { opacity: .66; }
    100% { transform: translate3d(var(--drift, 20px), -132px, 0) scale(1.16); opacity: 0; }
}

.hero-inner {
    position: relative;
    z-index: 3;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 78px;
}


.hero-copy-window {
    width: min(690px, 100%);
    overflow: hidden;
}

.hero-copy-track {
    display: flex;
    width: 300%;
    transform: translate3d(calc(var(--hero-index, 0) * -33.333333%), 0, 0);
    transition: transform .9s cubic-bezier(.72, 0, .24, 1);
    will-change: transform;
}

.hero-copy {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding-right: 34px;
    opacity: .35;
    transform: translateX(18px);
    transition: opacity .45s ease, transform .45s ease;
}

.hero-copy.is-active {
    opacity: 1;
    transform: translateX(0);
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    margin: 0;
    max-width: 650px;
    color: #fff;
    font-size: clamp(45px, 7vw, 78px);
    line-height: .95;
    letter-spacing: -.05em;
    font-weight: 900;
}

.hero h1 span,
.hero h2 span {
    color: var(--blue);
}

.hero-text {
    width: min(560px, 100%);
    margin: 24px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-weight: 800;
    font-size: 14px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--blue);
    color: #001426;
}

.btn-outline {
    border-color: rgba(0,174,234,.75);
    color: #fff;
    background: rgba(0,20,38,.22);
}

.btn-outline:hover {
    background: rgba(0,174,234,.14);
}

.hero-controls {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 4px;
}

.hero-arrow {
    width: 52px;
    height: 52px;
    border: 0;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}

.hero-arrow:hover {
    background: var(--blue);
    color: #001426;
}

.hero-count {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255,255,255,.9);
    font-weight: 800;
    letter-spacing: .06em;
}

.hero-count i {
    display: block;
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,.35);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.hero-count i::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 33.333333%;
    background: var(--blue);
    transform: translateX(calc(var(--hero-index, 0) * 100%));
    transition: transform .9s cubic-bezier(.72, 0, .24, 1);
}

/* Sections */
.section {
    position: relative;
    padding: 104px 0;
}

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

.section-heading h2,
.content-copy h2,
.about-copy h2,
.why-grid h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.section-heading p,
.content-copy p,
.about-copy p,
.why-grid p,
.tip-body p,
.service-card p,
.feature-item p,
.why-item p,
.footer-main p {
    color: var(--muted);
}

.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.text-link {
    color: var(--blue);
    font-weight: 800;
    white-space: nowrap;
}

.text-link:hover {
    text-decoration: underline;
}

.services-section {
    background: linear-gradient(180deg, var(--navy) 0%, #040b1e 100%);
}

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

.service-card,
.tip-card,
.feature-item,
.why-item {
    background: rgba(6,31,59,.82);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 35px rgba(0,0,0,.14);
}

.service-card {
    min-height: 310px;
    padding: 30px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,174,234,.38);
    background: rgba(8,40,69,.92);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
}

.service-number {
    color: rgba(255,255,255,.25);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.service-card h3,
.tip-card h3,
.feature-item h3,
.why-item h3,
.content-copy h3 {
    margin: 0 0 10px;
    color: #fff;
    line-height: 1.15;
}

.service-card a,
.tip-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
}

.content-block {
    background: var(--navy);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: center;
}

.content-copy h3 {
    margin-top: 32px;
    font-size: 24px;
}

.content-image,
.about-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: var(--shadow);
}

.content-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-image::after,
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(3,8,25,.36));
}

.about-section {
    background: linear-gradient(180deg, #040b1e, var(--navy));
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    min-height: 520px;
}

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

.feature-item {
    padding: 22px;
}

.why-section {
    background:
        linear-gradient(90deg, rgba(3,8,25,.94), rgba(3,8,25,.8)),
        url('../images/pests/rat-trapped.webp') center/cover no-repeat;
}

.why-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: center;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 22px;
    padding: 26px;
}

.why-item span {
    color: var(--blue);
    font-size: 32px;
    font-weight: 900;
}

.tips-section {
    background: var(--navy);
}

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

.tip-card {
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,174,234,.38);
}

.tip-card img {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
}

.tip-body {
    padding: 26px;
}

.tip-kicker {
    margin: 0 0 8px;
    color: var(--blue) !important;
    font-size: 13px;
    font-weight: 800;
}


/* Scroll reveal */
.reveal-section,
.reveal-item {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal-section.is-visible,
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item:nth-child(2) { transition-delay: .08s; }
.reveal-item:nth-child(3) { transition-delay: .16s; }
.reveal-item:nth-child(4) { transition-delay: .24s; }
.reveal-item:nth-child(5) { transition-delay: .32s; }
.reveal-item:nth-child(6) { transition-delay: .4s; }

/* Direction hover wipe */
.direction-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.direction-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(0,174,234,.16), rgba(0,174,234,.08));
    transform: scaleX(0);
    transform-origin: var(--hover-origin, left) center;
    transition: transform .34s ease;
}

.direction-card:hover::before,
.direction-card:focus-within::before {
    transform: scaleX(1);
}

.direction-card:hover {
    border-color: rgba(0,174,234,.42);
}

.direction-card > * {
    position: relative;
    z-index: 1;
}

/* Footer */
.site-footer {
    background: #020616;
}

.footer-cta {
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 28px 0;
    background: #050b1f;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-cta p {
    margin: 0;
    color: #fff;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr .7fr 1.1fr;
    gap: 44px;
    padding: 58px 0;
}

.footer-about img {
    width: 145px;
    margin-bottom: 16px;
}

.footer-phone a {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.footer-col h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 17px;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--blue);
}

.footer-areas {
    columns: 2;
}

.footer-areas h2 {
    column-span: all;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .nav-wrap {
        grid-template-columns: auto 1fr auto auto;
        gap: 10px;
        min-height: 76px;
    }

    .brand {
        width: 126px;
        grid-column: 1;
    }

    .brand img {
        width: 126px;
    }

    .nav-phone {
        grid-column: 3;
        width: 44px;
        height: 42px;
        gap: 0;
        border: 1px solid var(--line);
        background: rgba(255,255,255,.06);
        border-radius: 2px;
        font-size: 0;
    }

    .nav-phone span {
        font-size: 19px;
        line-height: 1;
    }

    .nav-phone strong {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .nav-toggle {
        display: block;
        grid-column: 4;
    }

    .site-nav {
        position: fixed;
        left: 0;
        right: auto;
        top: 76px;
        width: min(84vw, 340px);
        height: calc(100vh - 76px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 20px 22px 28px;
        background: rgba(3,8,25,.985);
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
        box-shadow: 24px 0 55px rgba(0,0,0,.34);
        transform: translateX(-105%);
        opacity: .98;
        pointer-events: none;
        transition: transform .28s ease;
        overflow-y: auto;
        z-index: 95;
    }

    .site-nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .site-nav > a,
    .dropdown-toggle {
        padding: 14px 0;
        width: 100%;
        justify-content: space-between;
        text-align: left;
        font-size: 15px;
    }

    .site-nav > a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        margin: 0 0 10px;
        padding: 8px 0 8px 12px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: block;
        transform: none;
    }

    .hero,
    .hero-inner {
        min-height: 680px;
    }

    .hero-controls {
        display: none;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(42px, 11vw, 68px);
    }

    .hero-slide {
        background-position: center center;
    }

    .services-grid,
    .tips-grid,
    .two-col,
    .about-grid,
    .why-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .split-heading,
    .footer-cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-grid,
    .why-grid,
    .two-col {
        gap: 34px;
    }

    .footer-areas {
        columns: 1;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 30px, var(--max));
    }

    .hero,
    .hero-inner {
        min-height: 610px;
    }

    .hero-inner {
        align-items: flex-end;
        padding-bottom: 106px;
    }

    .hero-copy-window {
        min-height: 365px;
    }

    .hero h1,
    .hero h2 {
        font-size: 44px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-count {
        left: 15px;
        right: auto;
        transform: none;
        bottom: 34px;
    }

    .section {
        padding: 74px 0;
    }

    .services-grid,
    .tips-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .about-image {
        min-height: 360px;
    }

    .why-item {
        grid-template-columns: 1fr;
    }

    .footer-cta-actions,
    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

/* Inner service pages */
.inner-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--navy);
    padding-top: 86px;
}

.inner-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

.inner-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3,8,25,.94) 0%, rgba(3,8,25,.7) 48%, rgba(3,8,25,.78) 100%),
        linear-gradient(0deg, rgba(3,8,25,.58), rgba(3,8,25,.18));
}

.inner-hero-content {
    text-align: center;
    padding: 74px 0 82px;
}

.inner-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.service-page {
    background: linear-gradient(180deg, var(--navy) 0%, #040b1e 100%);
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.service-main {
    min-width: 0;
}

.service-feature-image,
.service-image-pair img {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: var(--shadow);
    background: rgba(255,255,255,.04);
}

.service-feature-image {
    margin: 0 0 34px;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1.68 / 1;
    object-fit: cover;
}

.service-part {
    margin-bottom: 46px;
}

.service-part h2,
.service-cta-card h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(29px, 3.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.service-part h3,
.service-cta-card h3,
.sidebar-box h2,
.process-card h3,
.mini-card h3 {
    color: #fff;
}

.service-part p,
.service-part li,
.service-cta-card p,
.process-card p,
.mini-card p {
    color: var(--muted);
}

.service-part strong {
    color: #fff;
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 24px;
}

.process-card,
.mini-card,
.sidebar-box,
.faq-item,
.service-cta-card {
    background: rgba(6,31,59,.82);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 35px rgba(0,0,0,.14);
}

.process-card {
    padding: 26px;
}

.process-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.process-card h3,
.mini-card h3 {
    margin: 0 0 9px;
    line-height: 1.14;
}

.process-card p,
.mini-card p {
    margin-bottom: 0;
}

.service-image-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 10px 0 48px;
}

.service-image-pair img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
}

.tick-list {
    margin: 22px 0 0;
    padding-left: 20px;
}

.tick-list li {
    margin: 7px 0;
}

.service-cta-card {
    margin: 0 0 46px;
    padding: 30px;
}

.service-cta-card h2 {
    font-size: clamp(28px, 3vw, 38px);
}

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

.mini-card {
    padding: 24px;
    min-height: 210px;
}

.mini-card a,
.sidebar-box a,
.faq-item a {
    color: var(--blue);
    font-weight: 800;
}

.mini-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
}

.service-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 22px;
}

.sidebar-box {
    padding: 24px;
}

.sidebar-box h2 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.1;
    text-transform: capitalize;
}

.sidebar-box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 9px 0;
    padding: 12px 14px;
    color: rgba(255,255,255,.84);
    background: rgba(3,8,25,.62);
    font-size: 14px;
    font-weight: 700;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.sidebar-box a::after {
    content: "→";
    color: var(--blue);
}

.sidebar-box a:hover,
.sidebar-box a.is-active {
    color: #fff;
    background: rgba(0,174,234,.18);
    transform: translateX(3px);
}

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

.faq-item {
    padding: 0;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    color: var(--blue);
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: rgba(255,255,255,.8);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
}

.dropdown-menu a.is-active {
    color: #fff;
    background: rgba(0,174,234,.16);
}

@media (max-width: 980px) {
    .inner-hero {
        min-height: 380px;
        padding-top: 76px;
    }

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

    .service-sidebar {
        position: static;
        grid-row: auto;
    }

    .mini-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .inner-hero h1 {
        font-size: 42px;
    }

    .inner-hero-content {
        padding: 64px 0 58px;
    }

    .process-grid,
    .service-image-pair,
    .mini-card-grid {
        grid-template-columns: 1fr;
    }

    .button-row,
    .button-row .btn {
        width: 100%;
    }

    .service-feature-image img {
        aspect-ratio: 1.15 / 1;
    }
}


/* Service rebuild additions */
.services-grid-images .service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}
.comparison-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: left;
    vertical-align: top;
}
.comparison-table th {
    color: var(--white);
    font-size: .95rem;
    background: rgba(0, 151, 214, .16);
}
.comparison-table td {
    color: rgba(255,255,255,.72);
}
.inner-hero-content > p {
    max-width: 680px;
    margin-top: 14px;
    color: rgba(255,255,255,.76);
}


/* Area pages */
.area-hero .hero-copy h1,
.area-hero .hero-copy h2 {
    max-width: 850px;
}
.area-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.area-chip-list li {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(6,31,59,.82);
    color: var(--muted);
}
.postcode-checker {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
    margin-top: 18px;
}
.postcode-checker label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.postcode-checker input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font: inherit;
}
.postcode-result {
    margin-top: 14px;
    color: var(--muted);
}
.postcode-result a {
    color: var(--blue);
    font-weight: 800;
}
@media (max-width: 680px) {
    .postcode-checker {
        grid-template-columns: 1fr;
    }
}

/* About, contact and 404 page additions */
.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.badge-card {
    padding: 24px;
    min-height: 190px;
    text-align: center;
    background: rgba(6,31,59,.82);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 35px rgba(0,0,0,.14);
}
.badge-card img {
    width: min(120px, 70%);
    margin: 0 auto 18px;
    max-height: 82px;
    object-fit: contain;
}
.badge-card h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}
.timeline-list {
    display: grid;
    gap: 14px;
}
.timeline-card {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    background: rgba(6,31,59,.82);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 35px rgba(0,0,0,.14);
}
.timeline-card span {
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
}
.timeline-card h3 {
    margin: 0;
    color: #fff;
    line-height: 1.15;
}
.timeline-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}
.profile-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,.1);
}
.profile-box p,
.sidebar-box p {
    color: var(--muted);
}
.narrow-container {
    width: min(860px, calc(100% - 42px));
    margin-inline: auto;
}
.error-card {
    text-align: center;
}
.error-card .button-row {
    justify-content: center;
}
@media (max-width: 760px) {
    .badge-grid {
        grid-template-columns: 1fr;
    }
    .timeline-card {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .timeline-card p {
        font-weight: 400;
    }
}
