:root {
    --navy: #061b33;
    --navy-2: #021124;
    --navy-3: #0b2a4a;
    --blue: #4da3ff;
    --blue-2: #7cc8ff;
    --cyan: #b7e7ff;
    --white: #ffffff;
    --soft: #f4f8fc;
    --soft-2: #eaf4ff;
    --slate: #6f8195;
    --dark: #172536;
    --border: rgba(6, 27, 51, 0.12);
    --glass: rgba(255, 255, 255, 0.78);
    --shadow: 0 22px 70px rgba(6, 27, 51, 0.16);
    --shadow-blue: 0 18px 55px rgba(77, 163, 255, 0.28);
    --radius: 24px;
    --radius-lg: 36px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 8% 12%, rgba(77, 163, 255, 0.16), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(124, 200, 255, 0.22), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

img,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

a {
    color: var(--navy);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:hover,
a:focus {
    color: var(--blue);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    z-index: 1000;
    padding: 0.85rem 1rem;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

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

.narrow {
    width: min(900px, calc(100% - 32px));
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 5rem;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(2, 17, 36, 0.98), rgba(6, 27, 51, 0.94)),
        radial-gradient(circle at 72% 24%, rgba(77, 163, 255, 0.6), transparent 34%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -35% -10%;
    height: 48%;
    background: var(--white);
    transform: skewY(-3deg);
    transform-origin: left;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-glow-one {
    top: 10%;
    right: 8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(77, 163, 255, 0.62), transparent 68%);
}

.hero-glow-two {
    bottom: 8%;
    left: 4%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(183, 231, 255, 0.42), transparent 70%);
}

.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem 1.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(16px);
}

.topbar p {
    margin: 0;
}

.topbar strong {
    color: var(--white);
}

.topbar span {
    color: rgba(255, 255, 255, 0.72);
}

.topbar a,
.hero a {
    color: var(--white);
}

.breadcrumb {
    position: relative;
    z-index: 2;
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li + li::before {
    content: "›";
    margin-right: 0.45rem;
    color: var(--blue-2);
}

.hero-grid,
.split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    border-radius: 999px;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--navy);
    line-height: 1.12;
}

.hero h1,
.hero h2,
.hero h3 {
    color: var(--white);
}

h1 {
    max-width: 920px;
    margin-bottom: 1rem;
    font-size: clamp(2.55rem, 6vw, 5.45rem);
    letter-spacing: -0.065em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3.2vw, 2.85rem);
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
}

p {
    margin-top: 0;
}

.lead {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    color: rgba(255, 255, 255, 0.88);
}

.hero-copy > p:not(.eyebrow):not(.lead) {
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.7rem 0;
}

.btn {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-100%);
    transition: opacity 180ms ease, transform 480ms ease;
}

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

.btn:hover::after,
.btn:focus::after {
    opacity: 1;
    transform: translateX(100%);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #1976d2);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.btn-secondary {
    color: var(--navy);
    background: var(--white);
    border-color: rgba(6, 27, 51, 0.12);
    box-shadow: 0 12px 28px rgba(6, 27, 51, 0.1);
}

.btn-light {
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 14px 38px rgba(255, 255, 255, 0.22);
}

.btn-outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 1.2rem 0 0;
    list-style: none;
}

.trust-pills li {
    padding: 0.65rem 0.85rem;
    color: var(--white);
    font-weight: 850;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero-media,
.image-card {
    position: relative;
    margin: 0;
    padding: 0.75rem;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-media::before,
.image-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.75), rgba(255, 255, 255, 0.35), rgba(6, 27, 51, 0.25));
    border-radius: calc(var(--radius-lg) + 2px);
}

.hero-media img,
.image-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

figcaption {
    padding: 0.8rem 0.35rem 0.2rem;
    color: var(--slate);
    font-size: 0.92rem;
}

.hero-media figcaption {
    color: rgba(255, 255, 255, 0.78);
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 760px;
    margin: 3rem auto 0;
}

.hero-stats article {
    padding: 1.1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-stats strong {
    display: block;
    color: var(--navy);
    font-size: 2rem;
    line-height: 1;
}

.hero-stats span {
    color: var(--slate);
    font-weight: 800;
}

.section {
    padding: clamp(3.8rem, 7vw, 6rem) 0;
}

.section-intro-block {
    position: relative;
}

.section-intro-block::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: calc(50% - 70px);
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    border-radius: 999px;
}

.section-soft {
    background:
        radial-gradient(circle at 85% 8%, rgba(77, 163, 255, 0.18), transparent 30%),
        var(--soft);
}

.section-dark {
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 8% 12%, rgba(77, 163, 255, 0.32), transparent 28%),
        linear-gradient(135deg, var(--navy-2), var(--navy));
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.78);
}

.section-blue {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(77, 163, 255, 0.92), rgba(6, 27, 51, 0.96)),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 32%);
}

.section-blue h2,
.section-blue p {
    color: var(--white);
}

.section-blue .section-kicker {
    color: var(--cyan);
}

.section-intro {
    max-width: 900px;
    margin-bottom: 2rem;
    color: var(--slate);
    font-size: 1.08rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-card,
.commitment-card,
.local-grid article,
.steps-grid article,
.faq-item,
.map-box,
.rating-box {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 14px 38px rgba(6, 27, 51, 0.08);
}

.section-dark .service-card,
.section-dark .commitment-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.service-card,
.commitment-card,
.local-grid article,
.steps-grid article {
    padding: 1.25rem;
}

.service-card::after,
.commitment-card::after,
.local-grid article::after,
.steps-grid article::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.service-card:hover::after,
.commitment-card:hover::after,
.local-grid article:hover::after,
.steps-grid article:hover::after {
    transform: scaleX(1);
}

.card-icon {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    background:
        radial-gradient(circle at 35% 35%, var(--cyan), transparent 34%),
        linear-gradient(135deg, var(--blue), #1d72d2);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(77, 163, 255, 0.36);
}

.service-card p,
.commitment-card p,
.local-grid p,
.steps-grid p {
    margin-bottom: 0;
    color: var(--slate);
}

.section-dark .service-card p,
.section-dark .commitment-card p {
    color: rgba(255, 255, 255, 0.76);
}

.check-list {
    padding-left: 0;
    margin: 1.2rem 0 1.8rem;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.7rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(77, 163, 255, 0.14);
}

.image-card-bright {
    background: rgba(255, 255, 255, 0.24);
}

.section-process {
    background:
        radial-gradient(circle at 12% 8%, rgba(77, 163, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff, #f6faff);
}

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

.steps-grid article {
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.steps-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 950;
    background: linear-gradient(135deg, var(--blue), var(--navy-3));
    border-radius: 16px;
    box-shadow: var(--shadow-blue);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.local-grid article {
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.map-box {
    padding: 1.25rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(77, 163, 255, 0.16), transparent 30%),
        #ffffff;
}

.map-box iframe {
    display: block;
    border: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px var(--border);
}

.review-area {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.rating-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, var(--blue), #0b5db8);
    border-color: rgba(255, 255, 255, 0.22);
}

.rating-box strong {
    display: block;
    font-size: 1.9rem;
    line-height: 1.1;
}

.rating-box span {
    color: rgba(255, 255, 255, 0.86);
}

.rating-box-pending {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
}

.faq-item {
    padding: 1rem 1.1rem;
    margin-bottom: 0.85rem;
    background: #ffffff;
}

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

.faq-item summary::marker {
    color: var(--blue);
}

.faq-item p {
    margin: 0.8rem 0 0;
    color: var(--slate);
}

.final-cta {
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(77, 163, 255, 0.42), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(124, 200, 255, 0.22), transparent 28%),
        linear-gradient(135deg, var(--navy-2), var(--navy));
}

.final-cta h2,
.final-cta p {
    color: var(--white);
}

.final-cta .section-kicker {
    justify-content: center;
    color: var(--cyan);
}

.final-cta .section-kicker::before {
    display: none;
}

.final-cta .hero-actions {
    justify-content: center;
}

.site-footer {
    padding: 3.5rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    background: #020f20;
}

.site-footer h2,
.site-footer strong {
    color: var(--white);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}

.footer-grid address {
    font-style: normal;
}

.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.92rem;
}

@media (max-width: 1060px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 840px) {
    .hero-grid,
    .split,
    .reverse,
    .local-grid,
    .footer-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 4rem;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        border-radius: var(--radius);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 580px) {
    .cards-grid,
    .review-area {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 3.2rem 0;
    }

    h1 {
        font-size: clamp(2.35rem, 13vw, 3.5rem);
    }
}

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

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
