:root {
    --color-bg: #2c4066;
    --color-brand: #fa991a;

    --color-accent: #38bdf8;

    --color-text: #1e2f4d;
    --color-muted: #c9c9c9;
    --color-subtle: #64748b;

    --color-error: #fb7185;
    --color-success: #29ff58;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

#services {
    scroll-margin-top: 10rem;
}

#quote,
#about {
    scroll-margin-top: 3rem;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}

.nav-title:focus-visible,
.nav-button:focus-visible,
.nav-quote-button:focus-visible,
.nav-menu-toggle:focus-visible,
.hero-button:focus-visible,
.quote-submit-button:focus-visible,
.footer-logo-link:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 0.3rem;
}

body {
    position: relative;
    isolation: isolate;

    background-color: #30486f;
    color: var(--color-text);

    overflow-x: hidden;
}

.page-background {
    position: fixed;
    inset: 0;
    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(255, 153, 24, 0.12),
            transparent 28rem
        ),
        radial-gradient(
            circle at 82% 70%,
            rgba(91, 143, 214, 0.10),
            transparent 32rem
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size:
        auto,
        auto,
        4rem 4rem,
        4rem 4rem;
}

.nav-bar {
    width: 100%;

    position: sticky;
    top: 0;
    z-index: 100;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(44, 64, 102, 0.8);


    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
}

.nav-content {
    width: min(92rem, calc(100% - 2rem));
    min-height: 5rem;
    margin-inline: auto;

    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: block;
    height: 5.75rem;
    width: auto;
}

.nav-title,
.nav-button,
.nav-quote-button {
    text-decoration: none;
}


.nav-title {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-menu-toggle {
    display: none;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.nav-button {
    color: var(--color-muted);
    font-weight: 600;

    transition: color 150ms ease;
}

.nav-button:hover {
    color: white;
}

.nav-quote-button {
    padding: 0.75rem 1.1rem;

    border-radius: 2rem;
    color: var(--color-text);
    background-color: var(--color-brand);
    font-weight: 700;
    transition: 150ms ease;
}

.hero {
    width: min(92rem, calc(100% - 4rem));
    min-height: 42rem;
    margin-inline: auto;
    padding-block: 5rem;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    align-items: center;
    gap: 5rem;
}

.hero-content {
    padding: 0;
}

.hero-eyebrow::before {
    content: "";

    width: 2.5rem;
    height: 2px;

    background-color: var(--color-brand);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    margin-bottom: 1.25rem;

    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 34rem;

    color: var(--color-brand);
    font-size: 3.875rem;
    line-height: 1.05;
}

.hero-description {
    max-width: 34rem;
    margin-top: 1.5rem;

    color: var(--color-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

.hero-text-highlight {
    color: var(--color-accent);
}

.hero-buttons {
    margin-top: 4rem;
}

.hero-button {
    display: inline-block;

    padding: 1rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 2rem;

    color: var(--color-text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;

    transition:
        transform 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.hero-button-primary {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
}

.hero-button-secondary {
    margin-left: 0.75rem;

    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-button:hover, .nav-quote-button:hover {
    background-color: #ffca85;
    border-color: #ffca85;
    transform: translateY(-5px);
    transition: 150ms ease;
    box-shadow: 0 0 10px 1px #ffca85;
}

.hero-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.hero-visual {
    min-width: 0;
    min-height: 30rem;

    display: grid;
    place-items: center;

    position: relative;
    isolation: isolate;
}

.hero-visual::before {
    content: "";

    position: absolute;
    width: 82%;
    height: 58%;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.04) 20%,
            rgba(255, 255, 255, 0.04) 80%,
            transparent
        );

    z-index: 0;
}

.hero-visual::after {
    content: "";

    position: absolute;
    width: 70%;
    aspect-ratio: 1;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(250, 153, 26, 0.2),
        rgba(56, 189, 248, 0.07) 45%,
        transparent 72%
    );

    filter: blur(1.5rem);

    z-index: 0;
}

.hero-visual-image {
    display: block;
    width: 115%;
    max-width: 58rem;
    
    position: relative;
    z-index: 1;

    -webkit-user-drag: none;

    filter:
        brightness(0.5)
        saturate(0.8)
        contrast(1.08)
        drop-shadow(0 1.5rem 2rem rgba(0, 0, 0, 0.85));
}

.drone-hotspot {
    position: absolute;
    z-index: 4;

    width: 1rem;
    aspect-ratio: 1;

    border: 2px solid var(--color-brand);
    border-radius: 50%;

    background-color: rgba(25, 42, 72, 0.9);

    box-shadow:
        0 0 0 0.35rem rgba(250, 153, 26, 0.14);

    cursor: pointer;

    transform: translate(-50%, -50%);

    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        background-color 150ms ease;
}

.drone-hotspot:hover,
.drone-hotspot:focus-visible {
    outline: none;

    background-color: var(--color-brand);

    transform:
        translate(-50%, -50%)
        scale(1.2);

    box-shadow:
        0 0 0 0.45rem rgba(250, 153, 26, 0.18),
        0 0 1.25rem rgba(250, 153, 26, 0.5);
}

.drone-hotspot-thermal {
    left: 50%;
    top: 55%;
}

.drone-hotspot-zoom {
    left: 49%;
    top: 43%;
}

.drone-hotspot-wide {
    left: 56%;
    top: 43%;
}

.drone-hotspot-platform {
    left: 32%;
    top: 43%;
}


.hero-visual.is-callout-visible
.drone-hotspot:not(.is-active) {
    opacity: 0.45;
}

.drone-callout {
    position: absolute;
    left: 60%;
    top: 66%;
    z-index: 3;

    width: min(17rem, 42%);
    padding: 1rem 1.1rem;

    border: 1px solid var(--color-brand);
    border-radius: 0.8rem;

    background-color: rgba(25, 42, 72, 0.9);

    box-shadow:
        0 1rem 2.5rem rgba(10, 24, 49, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateY(0.6rem)
        scale(0.98);

    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 0s linear 180ms;
}

.drone-callout-label {
    color: var(--color-brand);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.drone-callout h3 {
    margin-top: 0.45rem;

    color: white;
    font-size: 1.15rem;
    line-height: 1.2;
}

.drone-callout-description {
    margin-top: 0.65rem;

    color: var(--color-muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

.hero-visual.is-callout-visible .drone-callout {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);

    transition-delay: 0s;
}

.hero-visual.is-callout-visible .drone-connector-line {
    opacity: 1;
    stroke-dashoffset: 0;
}

.drone-hotspot.is-active {
    background-color: var(--color-brand);

    box-shadow:
        0 0 0 0.45rem rgba(250, 153, 26, 0.18),
        0 0 1.25rem rgba(250, 153, 26, 0.5);
}

.drone-connector {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 100%;

    overflow: visible;
    pointer-events: none;
}

.drone-connector-line {
    fill: none;

    stroke: rgba(250, 153, 26, 0.7);
    stroke-width: 1;

    stroke-linecap: round;
    stroke-linejoin: round;

    vector-effect: non-scaling-stroke;

    opacity: 0;

    stroke-dasharray: 1;
    stroke-dashoffset: 1;

    transition:
        stroke-dashoffset 300ms ease,
        opacity 120ms ease;
}

.trust-strip {
    width: 100%;

    border-block:
        1px solid rgba(255, 255, 255, 0.08);

    background-color:
        rgba(25, 42, 72, 0.58);
}

.trust-strip-content {
    width: min(92rem, calc(100% - 4rem));
    margin-inline: auto;

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

.trust-item {
    min-width: 0;

    display: flex;
    align-items: flex-start;
    gap: 1rem;

    padding: 2rem 1.5rem;
}

.trust-item + .trust-item {
    border-left:
        1px solid rgba(255, 255, 255, 0.08);
}

.trust-marker {
    flex: 0 0 auto;

    width: 0.7rem;
    height: 0.7rem;
    margin-top: 0.35rem;

    border: 2px solid var(--color-brand);
    border-radius: 50%;

    box-shadow:
        0 0 0 0.25rem rgba(250, 153, 26, 0.12);
}

.trust-title {
    color: white;
    font-size: 1rem;
    font-weight: 750;
}

.trust-description {
    margin-top: 0.4rem;

    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.services {
    margin: 7rem auto 12rem;
    width: min(92rem, calc(100% - 2rem));
}

.services-header {
    max-width: 52rem;
    margin: 0 auto 4rem;
    
    text-align: center;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;

    margin-bottom: 1.25rem;

    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.services-eyebrow::before,
.services-eyebrow::after {
    content: "";

    width: 2.5rem;
    height: 2px;

    background-color: var(--color-brand);
}

.services-title {
    margin-top: 1rem;

    color: white;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.services-description {
    max-width: 46rem;
    margin: 1.25rem auto 0;

    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-cards {
    width: min(70rem, 100%);
    margin-inline: auto;
    display: flex;
    gap: 2rem;
    
    overflow-x: auto;

    padding-block: 1.5rem;
    padding-inline: calc(50% - 11rem);

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    anchor-name: --carousel;
    scroll-marker-group: after;
}

.service-cards::-webkit-scrollbar {
    display: none;
}

.service-cards::scroll-marker-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;

    margin-top: 1.5rem;
}

.service-cards::scroll-button(right), .service-cards::scroll-button(left) {
    content: '→';
    border: none;
    background-color: var(--color-brand);
    font-family: Consolas;
    font-size: 3rem;
    color: white;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    padding-bottom: .1rem;
    cursor: pointer;

    position: fixed;
    position-anchor: --carousel;
    position-area: right center;
    transition: opacity 150ms ease;
    translate: 10%;
}
.service-cards::scroll-button(left) {
    content: '←';
    position-area: left center;
    translate: -10%;
}

.service-cards::scroll-button(left):disabled, .service-cards::scroll-button(right):disabled {
    opacity: 0.5;
    cursor: auto;
    background-color: var(--color-subtle);
}
.service-card {
    flex: 0 0 22rem;
    opacity: 0.65;

    background-color: var(--color-brand);
    padding: 1rem;
    border-radius: 0.55rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 18rem;

    overflow: hidden;
    scroll-snap-align: center;
    cursor: pointer;

    user-select: none;
    -webkit-user-select: none;

    transition: 
        transform 300ms ease,
        opacity 300ms ease;
}

.service-card h3 {
    color: var(--color-text);
    font-size: 1.35rem;
    line-height: 1.2;
}

.service-card p {
    color: rgba(30, 47, 77, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card:hover {
    opacity: 1;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    border-radius: 0.4rem;
}

.service-card.is-center {
    opacity: 1;
    transform: scale(1.08);
    z-index: 2;
}
.service-card::scroll-marker {
    content: "";

    display: block;
    height: 1rem;
    width: 1rem;
    background-color: #949596;
    border-radius: 50%;

    cursor: pointer;
}

.service-card::scroll-marker:target-current {
    background-color: var(--color-brand);
}

.inspection-benefits {
    width: 100%;
    padding-block: 8rem;

    border-block: 1px solid rgba(255, 255, 255, 0.08);

    background-color: rgba(25, 42, 72, 0.42);
}

.inspection-benefits-content {
    width: min(92rem, calc(100% - 4rem));
    margin-inline: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    align-items: start;
    gap: 6rem;
}

.benefits-intro {
    max-width: 32rem;
}

.benefits-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    margin-bottom: 1.25rem;

    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.benefits-eyebrow::before {
    content: "";

    width: 2.5rem;
    height: 2px;

    background-color: var(--color-brand);
}

.benefits-title {
    max-width: 30rem;
    margin-top: 1.25rem;

    color: white;
    font-size: clamp(2.4rem, 4vw, 3.75rem);
    line-height: 1.08;
}

.benefits-description {
    max-width: 31rem;
    margin-top: 1.5rem;

    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-list {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 1.5rem 3rem rgba(10, 24, 49, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.benefit-item {
    min-width: 0;
    padding: 1.6rem 1.75rem;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

.benefit-item + .benefit-item {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.benefit-marker {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.35rem;

    border: 2px solid var(--color-brand);
    border-radius: 50%;

    box-shadow:
        0 0 0 0.25rem rgba(250, 153, 26, 0.1);
}

.benefit-item h3 {
    color: white;
    font-size: 1.2rem;
    line-height: 1.25;
}

.benefit-item p {
    max-width: 34rem;
    margin-top: 0.55rem;

    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.process {
    width: 100%;
    padding-block: 8rem;
}

.process-content {
    width: min(92rem, calc(100% - 4rem));
    margin-inline: auto;
}

.process-header {
    max-width: 52rem;
    margin-inline: auto;

    text-align: center;
}

.process-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.process-eyebrow::before,
.process-eyebrow::after {
    content: "";

    width: 2.5rem;
    height: 2px;

    background-color: var(--color-brand);
}

.process-title {
    margin-top: 1.25rem;

    color: white;
    font-size: clamp(2.4rem, 4vw, 3.75rem);
    line-height: 1.08;
}

.process-description {
    max-width: 42rem;
    margin: 1.25rem auto 0;

    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-list {
    position: relative;

    margin-top: 5rem;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 2rem;
}

.process-list::before {
    content: "";

    position: absolute;
    top: 1.5rem;
    left: 12.5%;
    right: 12.5%;

    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(250, 153, 26, 0.65) 12%,
            rgba(250, 153, 26, 0.65) 88%,
            transparent
        );
}

.process-step {
    position: relative;

    text-align: center;
}

.process-marker {
    position: relative;
    z-index: 1;

    width: 3rem;
    aspect-ratio: 1;
    margin-inline: auto;

    display: grid;
    place-items: center;

    border: 1px solid rgba(250, 153, 26, 0.7);
    border-radius: 50%;

    background-color: #30486f;
    color: var(--color-brand);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;

    box-shadow:
        0 0 0 0.5rem rgba(48, 72, 111, 0.9),
        0 0 1.5rem rgba(250, 153, 26, 0.12);
}

.process-step-content {
    margin-top: 2rem;
}

.process-step h3 {
    color: white;
    font-size: 1.25rem;
    line-height: 1.25;
}

.process-step p {
    max-width: 18rem;
    margin: 0.8rem auto 0;

    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-section {
    width: 100%;
    padding-block: 8rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.about-content {
    width: min(92rem, calc(100% - 4rem));
    margin-inline: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;
    gap: 6rem;
}

.about-visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 34rem;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 1.5rem 3rem rgba(10, 24, 49, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-visual::before {
    content: "";

    position: absolute;

    width: 28rem;
    max-width: 80%;
    aspect-ratio: 1;

    border:
        1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(250, 153, 26, 0.09),
            transparent 67%
        );

    z-index: -1;
}

.about-logo-wrapper {
    width: min(30rem, 76%);

    position: relative;
    z-index: 1;
}

.about-logo {
    display: block;
    width: 100%;
    height: auto;

    -webkit-user-drag: none;

    filter:
        drop-shadow(
            0 1.25rem 1.5rem
            rgba(10, 24, 49, 0.32)
        );
}

.about-visual-label {
    position: absolute;
    left: 2rem;
    bottom: 1.75rem;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-copy {
    max-width: 38rem;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";

    width: 2.5rem;
    height: 2px;

    background-color: var(--color-brand);
}

.about-title {
    margin-top: 1.25rem;

    color: white;

    font-size:
        clamp(2.4rem, 4vw, 3.75rem);

    line-height: 1.08;
}

.about-description {
    margin-top: 1.35rem;

    color: var(--color-muted);

    font-size: 1.05rem;
    line-height: 1.7;
}

.about-points {
    margin-top: 2.5rem;

    display: grid;
    gap: 0;

    list-style: none;
}

.about-point {
    padding-block: 1.35rem;

    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 1rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.09);
}

.about-point-marker {
    width: 0.75rem;
    aspect-ratio: 1;
    margin-top: 0.35rem;

    border: 2px solid var(--color-brand);
    border-radius: 50%;

    box-shadow:
        0 0 0 0.25rem
        rgba(250, 153, 26, 0.1);
}

.about-point h3 {
    color: white;

    font-size: 1.05rem;
    line-height: 1.3;
}

.about-point p {
    margin-top: 0.4rem;

    color: var(--color-muted);

    font-size: 0.92rem;
    line-height: 1.6;
}

.quote-section {
    width: 100%;
    padding-block: 8rem;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background-color: rgba(25, 42, 72, 0.42);
}

.quote-content {
    width: min(92rem, calc(100% - 4rem));
    margin-inline: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    align-items: start;
    gap: 6rem;
}

.quote-intro {
    max-width: 34rem;
}

.quote-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;

    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quote-eyebrow::before {
    content: "";

    width: 2.5rem;
    height: 2px;

    background-color: var(--color-brand);
}

.quote-title {
    margin-top: 1.25rem;

    color: white;
    font-size: clamp(2.4rem, 4vw, 3.75rem);
    line-height: 1.08;
}

.quote-description {
    margin-top: 1.5rem;

    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.quote-expectations {
    margin-top: 3rem;

    display: grid;
    gap: 1.5rem;
}

.quote-expectation {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
}

.quote-expectation > span {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.35rem;

    border: 2px solid var(--color-brand);
    border-radius: 50%;

    box-shadow:
        0 0 0 0.25rem rgba(250, 153, 26, 0.1);
}

.quote-expectation h3 {
    color: white;
    font-size: 1.05rem;
    line-height: 1.3;
}

.quote-expectation p {
    margin-top: 0.4rem;

    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.quote-form {
    padding: 2rem;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 1.5rem 3rem rgba(10, 24, 49, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1.25rem;
}

.form-field {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label,
.form-fieldset legend {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.optional-label {
    margin-left: 0.35rem;

    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

.form-field input:not([type="radio"]),
.form-field select,
.form-field textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.65rem;

    background-color: rgba(18, 31, 54, 0.55);
    color: white;

    padding: 0.9rem 1rem;

    font: inherit;

    outline: none;

    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background-color 150ms ease;
}

.form-field input:not([type="radio"])::placeholder,
.form-field textarea::placeholder {
    color: rgba(201, 201, 201, 0.6);
}

.form-field input:not([type="radio"]):focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-brand);

    background-color: rgba(18, 31, 54, 0.75);

    box-shadow:
        0 0 0 0.2rem rgba(250, 153, 26, 0.12);
}

.form-field input:not([type="radio"]):-webkit-autofill,
.form-field input:not([type="radio"]):-webkit-autofill:hover,
.form-field input:not([type="radio"]):-webkit-autofill:active {
    -webkit-text-fill-color: white;
    caret-color: white;

    border-color: rgba(255, 255, 255, 0.14);

    -webkit-box-shadow:
        0 0 0 1000px #203453 inset;

    box-shadow:
        0 0 0 1000px #203453 inset;
}

.form-field input:not([type="radio"]):-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    caret-color: white;

    border-color: var(--color-brand);

    -webkit-box-shadow:
        0 0 0 1000px #203453 inset,
        0 0 0 0.2rem rgba(250, 153, 26, 0.12);

    box-shadow:
        0 0 0 1000px #203453 inset,
        0 0 0 0.2rem rgba(250, 153, 26, 0.12);
}

.form-field select {
    color-scheme: dark;
}

.form-field textarea {
    min-height: 11rem;
    resize: vertical;
}

.form-fieldset {
    padding: 0;
    border: 0;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-top: 0.5rem;
}

.contact-option {
    position: relative;

    display: flex;
    align-items: center;
    gap: 0.55rem;

    padding: 0.75rem 1rem;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;

    background-color: rgba(18, 31, 54, 0.45);
    color: var(--color-muted);

    cursor: pointer;

    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        color 150ms ease,
        box-shadow 150ms ease;
}

.contact-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-option::before {
    content: "";

    width: 0.75rem;
    aspect-ratio: 1;

    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
}

.contact-option:has(input:checked) {
    border-color: rgba(250, 153, 26, 0.65);

    background-color: rgba(250, 153, 26, 0.12);
    color: white;
}

.contact-option:has(input:checked)::before {
    border-color: var(--color-brand);
    background-color: var(--color-brand);

    box-shadow:
        inset 0 0 0 2px rgba(18, 31, 54, 0.9),
        0 0 0 0.2rem rgba(250, 153, 26, 0.12);
}

.contact-option:has(input:focus-visible) {
    box-shadow:
        0 0 0 0.2rem rgba(250, 153, 26, 0.18);
}

.form-submit-row {
    grid-column: 1 / -1;

    margin-top: 0.5rem;

    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-submit-button {
    flex: 0 0 auto;

    padding: 1rem 1.35rem;

    border: 1px solid var(--color-brand);
    border-radius: 999px;

    background-color: var(--color-brand);
    color: var(--color-text);

    font-size: 1rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.quote-submit-button:hover {
    transform: translateY(-3px);

    background-color: #ffca85;
    border-color: #ffca85;

    box-shadow:
        0 0.75rem 1.5rem rgba(250, 153, 26, 0.18);
}

.form-note {
    color: var(--color-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.field-error {
    min-height: 1.1rem;

    color: var(--color-error);
    font-size: 0.8rem;
    line-height: 1.4;
}

.form-field.has-error input:not([type="radio"]),
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--color-error);

    box-shadow:
        0 0 0 0.2rem rgba(251, 113, 133, 0.12);
}

.form-status {
    flex-basis: 100%;
    min-height: 1.25rem;

    font-size: 0.9rem;
    line-height: 1.4;
}

.form-status.is-sending {
    color: var(--color-muted);
}

.form-status.is-success {
    color: var(--color-success);
}

.form-status.is-error {
    color: var(--color-error);
}

.site-footer {
    width: 100%;

    border-top:
        1px solid rgba(250, 153, 26, 0.3);

    background-color:
        rgba(15, 28, 50, 0.88);
}

.footer-content {
    width: min(92rem, calc(100% - 4rem));
    margin-inline: auto;
    padding-block: 4.5rem;

    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(10rem, 0.6fr)
        minmax(0, 0.9fr);

    align-items: start;
    gap: 5rem;
}

.footer-brand {
    max-width: 29rem;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    display: block;

    width: min(18rem, 100%);
    height: auto;

    -webkit-user-drag: none;
}

.footer-summary {
    max-width: 27rem;
    margin-top: 1.5rem;

    color: var(--color-muted);

    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--color-brand);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links {
    margin-top: 1.4rem;

    display: grid;
    gap: 0.9rem;

    list-style: none;
}

.footer-links a {
    color: var(--color-muted);

    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;

    transition:
        color 150ms ease,
        transform 150ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: white;
}

.footer-links a:focus-visible {
    outline:
        2px solid var(--color-brand);

    outline-offset: 0.3rem;
}

.footer-action-title {
    max-width: 22rem;
    margin-top: 1.25rem;

    color: white;

    font-size: 1.65rem;
    line-height: 1.2;
}

.footer-action-description {
    max-width: 25rem;
    margin-top: 1rem;

    color: var(--color-muted);

    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-quote-link {
    display: inline-block;

    margin-top: 1.75rem;
    padding: 0.9rem 1.2rem;

    border:
        1px solid var(--color-brand);
    border-radius: 999px;

    background-color: transparent;
    color: white;

    text-decoration: none;
    font-weight: 750;

    transition:
        color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease,
        box-shadow 150ms ease;
}

.footer-quote-link:hover,
.footer-quote-link:focus-visible {
    transform: translateY(-3px);

    background-color: var(--color-brand);
    color: var(--color-text);

    box-shadow:
        0 0.75rem 1.5rem
        rgba(250, 153, 26, 0.16);
}

.footer-quote-link:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 0.3rem;
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    width: min(92rem, calc(100% - 4rem));
    min-height: 4.5rem;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    color: rgba(201, 201, 201, 0.72);

    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    flex: 0 0 auto;

    color: var(--color-muted);
    text-decoration: none;
    font-weight: 700;

    transition:
        color 150ms ease,
        transform 150ms ease;
}

.footer-top-link:hover,
.footer-top-link:focus-visible {
    color: white;
    transform: translateY(-2px);
}

.footer-top-link:focus-visible {
    outline:
        2px solid var(--color-brand);

    outline-offset: 0.3rem;
}

@media (max-width: 70rem) {
    html {
        scroll-padding-top: 6rem;
    }
    #quote {
        scroll-margin-top: -1rem;
    }
    .nav-content {
        position: relative;

        width: calc(100% - 2rem);
        min-height: 5rem;
    }

    .nav-logo {
        height: 5rem;
    }

    .nav-menu-toggle {
        width: 3rem;
        aspect-ratio: 1;
        margin-left: auto;

        display: grid;
        place-content: center;
        gap: 0.3rem;

        border:
            1px solid rgba(255, 255, 255, 0.18);
        border-radius: 0.65rem;

        background-color:
            rgba(18, 31, 54, 0.45);

        cursor: pointer;
    }

    .nav-menu-line {
        width: 1.35rem;
        height: 2px;

        display: block;

        border-radius: 999px;
        background-color: white;

        transition:
            transform 180ms ease,
            opacity 180ms ease;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        z-index: 20;

        margin-left: 0;
        padding: 1rem;

        display: grid;
        gap: 1rem;

        border:
            1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0.85rem;

        background-color:
            rgba(20, 35, 61, 0.98);

        box-shadow:
            0 1.25rem 3rem
            rgba(10, 24, 49, 0.38);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-0.5rem);

        transition:
            opacity 180ms ease,
            transform 180ms ease,
            visibility 0s linear 180ms;
    }

    .nav-buttons {
        display: grid;
        gap: 0;
    }

    .nav-button {
        display: block;

        padding: 0.9rem 0.75rem;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-quote-button {
        justify-self: start;

        padding: 0.85rem 1.1rem;
    }

    .nav-bar.is-menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);

    transition-delay: 0s;
    }

    .nav-bar.is-menu-open
    .nav-menu-line:nth-child(1) {
        transform:
            translateY(0.4rem)
            rotate(45deg);
    }
    
    .nav-bar.is-menu-open
    .nav-menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-bar.is-menu-open
    .nav-menu-line:nth-child(3) {
        transform:
            translateY(-0.4rem)
            rotate(-45deg);
    }

    .hero {
        width: min(46rem, calc(100% - 3rem));
        min-height: auto;
        padding-block: 4rem 5rem;

        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 40rem;
        margin-inline: auto;

        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-title,
    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        margin-top: 2.5rem;
    }

    .hero-visual {
        width: 100%;
        max-width: 46rem;
        min-height: 28rem;
        margin-inline: auto;
    }
    .trust-strip-content {
        width: min(46rem, calc(100% - 3rem));

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

    .trust-item {
        padding: 1.75rem 1.5rem;
    }
    
    .trust-item + .trust-item {
        border-left: 0;
    }

    .trust-item:nth-child(even) {
        border-left:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .trust-item:nth-child(n + 3) {
        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }
    .services {
        width: min(46rem, calc(100% - 2rem));
        margin-block: 6rem 9rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .service-cards {
        width: 100%;

        gap: 1.5rem;

        padding-inline: calc(50% - 10rem);
    }

    .service-card {
        flex-basis: 20rem;
    }

    .service-card.is-center {
        transform: scale(1.04);
    }
    .service-cards::scroll-button(left),
    .service-cards::scroll-button(right) {
        width: 4rem;
        height: 4rem;

        font-size: 2.25rem;
    }

    .inspection-benefits {
        padding-block: 6rem;
    }

    .inspection-benefits-content {
        width: min(46rem, calc(100% - 3rem));

        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-intro {
        max-width: 40rem;
    }

    .benefits-title {
        max-width: 36rem;
    }

    .benefits-description {
        max-width: 40rem;
    }

    .benefits-list {
        width: 100%;
    }
    .process {
        padding-block: 6rem;
    }

    .process-content {
        width: min(46rem, calc(100% - 3rem));
    }

    .process-list {
        --process-marker-size: 3rem;

        max-width: 40rem;
        margin: 4rem auto 0;

        grid-template-columns: 1fr;
        gap: 0;
    }
    .process-list::before {
        top: 3rem;
        bottom: 6rem;

        left:
            calc(
                var(--process-marker-size) / 2
            );

        right: auto;

        width: 1px;
        height: auto;

        transform: translateX(-50%);

        background:
            linear-gradient(
                to bottom,
                transparent,
                rgba(250, 153, 26, 0.65) 8%,
                rgba(250, 153, 26, 0.65) 92%,
                transparent
            );
    }
    .process-step {
        display: grid;
        grid-template-columns:
            var(--process-marker-size)
            minmax(0, 1fr);

        align-items: start;
        gap: 1.25rem;

        text-align: left;
    }

    .process-step + .process-step {
        margin-top: 2.25rem;
    }

    .process-marker {
        width: var(--process-marker-size);
        margin-inline: 0;
    }

    .process-step-content {
        margin-top: 0.15rem;
    }

    .process-step p {
        max-width: none;
        margin: 0.7rem 0 0;
    }

    .about-section {
        padding-block: 6rem;
    }

    .about-content {
        width: min(46rem, calc(100% - 3rem));

        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-copy {
        order: 1;

        max-width: 40rem;
    }

    .about-visual {
        order: 2;

        width: 100%;
        min-height: 27rem;
    }

    .about-logo-wrapper {
        width: min(27rem, 72%);
    }
    .quote-section {
        padding-block: 6rem;
    }

    .quote-content {
        width: min(46rem, calc(100% - 3rem));

        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .quote-intro {
        max-width: 40rem;
    }

    .quote-description {
        max-width: 38rem;
    }

    .quote-expectations {
        max-width: 38rem;
    }

    .quote-form {
        width: 100%;
    }

    .footer-content {
        width: min(46rem, calc(100% - 3rem));
        padding-block: 4rem;

        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(10rem, 0.6fr);

        gap: 3rem;
    }

    .footer-action {
        grid-column: 1 / -1;

        padding-top: 2.5rem;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-action-title,
    .footer-action-description {
        max-width: 34rem;
    }

    .footer-bottom-content {
        width: min(46rem, calc(100% - 3rem));
    }
}

@media (max-width: 42rem) {
    .trust-strip-content {
        width: calc(100% - 2rem);

        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 1.5rem 0.75rem;
    }

    .trust-item:nth-child(even) {
        border-left: 0;
    }

    .trust-item:nth-child(n + 3) {
        border-top: 0;
    }

    .trust-item + .trust-item {
        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }
    .services {
        width: 100%;
        margin-block: 5rem 7rem;
    }

    .services-header {
        width: calc(100% - 2rem);
        margin-inline: auto;
        margin-bottom: 2.5rem;
    }

    .services-eyebrow {
        font-size: 0.78rem;
        gap: 0.6rem;
    }

    .services-eyebrow::before,
    .services-eyebrow::after {
        width: 1.5rem;
    }

    .services-description {
        font-size: 0.95rem;
    }

    .service-cards {
        --mobile-card-width: calc(100vw - 2rem);

        gap: 1rem;

        padding-inline:
            calc(
                (100% - var(--mobile-card-width)) / 2
            );
    }

    .service-card {
        flex-basis: var(--mobile-card-width);

        min-height: auto;
    }

    .service-card.is-center {
        transform: scale(0.97);
    }
    .service-cards::scroll-button(left),
    .service-cards::scroll-button(right) {
        display: none;
    }
    .inspection-benefits {
        padding-block: 5rem;
    }

    .inspection-benefits-content {
        width: calc(100% - 2rem);
        gap: 2.25rem;
    }

    .benefits-eyebrow {
        gap: 0.65rem;

        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }

    .benefits-eyebrow::before {
        width: 1.75rem;
    }

    .benefits-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .benefits-description {
        margin-top: 1.25rem;

        font-size: 0.95rem;
        line-height: 1.65;
    }

    .benefit-item {
        padding: 1.35rem 1rem;
        gap: 0.8rem;
    }

    .benefit-marker {
        width: 0.7rem;
        height: 0.7rem;
    }

    .benefit-item h3 {
        font-size: 1.05rem;
    }

    .benefit-item p {
        margin-top: 0.45rem;

        font-size: 0.88rem;
        line-height: 1.55;
    }
    .process {
        padding-block: 5rem;
    }

    .process-content {
        width: calc(100% - 2rem);
    }

    .process-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .process-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .process-list {
        margin-top: 3rem;
    }

    .process-step {
        grid-template-columns:
            3rem minmax(0, 1fr);

        gap: 1rem;
    }

    .process-step + .process-step {
        margin-top: 2rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .about-section {
        padding-block: 5rem;
    }

    .about-content {
        width: calc(100% - 2rem);
        gap: 2.5rem;
    }

    .about-eyebrow {
        gap: 0.65rem;

        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }

    .about-eyebrow::before {
        width: 1.75rem;
    }

    .about-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .about-description {
        margin-top: 1.15rem;

        font-size: 0.95rem;
        line-height: 1.65;
    }

    .about-points {
        margin-top: 2rem;
    }

    .about-point {
        padding-block: 1.2rem;
        gap: 0.8rem;
    }

    .about-point h3 {
        font-size: 1rem;
    }

    .about-point p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .about-visual {
        min-height: 20rem;
    }

    .about-logo-wrapper {
        width: min(22rem, 78%);
    }

    .about-visual-label {
        left: 1.25rem;
        bottom: 1.25rem;

        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
    .quote-section {
        padding-block: 5rem;
    }

    .quote-content {
        width: calc(100% - 2rem);
        gap: 2.5rem;
    }

    .quote-eyebrow {
        gap: 0.65rem;

        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }

    .quote-eyebrow::before {
        width: 1.75rem;
    }

    .quote-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .quote-description {
        margin-top: 1.25rem;

        font-size: 0.95rem;
        line-height: 1.65;
    }

    .quote-expectations {
        margin-top: 2.25rem;
        gap: 1.25rem;
    }

    .quote-form {
        padding: 1.25rem;
        border-radius: 0.85rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .form-field input:not([type="radio"]),
    .form-field select,
    .form-field textarea {
        padding: 0.85rem 0.9rem;
    }

    .form-field textarea {
        min-height: 9rem;
    }

    .contact-options {
        gap: 0.6rem;
    }

    .contact-option {
        padding: 0.7rem 0.85rem;
    }
    .form-submit-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .quote-submit-button {
        width: 100%;
        text-align: center;
    }

    .form-note {
        max-width: none;
    }
    .field-error {
        min-height: 0.9rem;
        font-size: 0.75rem;
    }
    .footer-content {
        width: calc(100% - 2rem);
        padding-block: 3.5rem;

        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .footer-brand {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .footer-logo {
        width: min(17rem, 72%);
    }
    .footer-logo-link {
        width: 100%;
        
        display: flex;
        justify-content: center;
    }

    .footer-summary {
        margin-top: 1.25rem;

        font-size: 0.9rem;
        line-height: 1.65;
    }

    .footer-navigation {
        padding-top: 2rem;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 1.5rem;
        row-gap: 1rem;
    }

    .footer-action {
        grid-column: auto;

        padding-top: 2rem;
    }

    .footer-action-title {
        font-size: 1.5rem;
    }

    .footer-quote-link {
        width: 100%;

        text-align: center;
    }
    .footer-bottom-content {
        width: calc(100% - 2rem);
        min-height: auto;
        padding-block: 1.5rem;

        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.85rem;
    }
}


@media (prefers-reduced-motion: reduce) {
    html,
    .service-cards {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}