:root {
    --ink: #0a1f35;
    --ink-soft: #4a5b6e;
    --ink-mute: #7a8795;
    --brand: #4db3d4;
    --brand-deep: #1f668f;
    --brand-light: #e0f1f7;
    --mist: #f5f7fa;
}

* {
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
    color: var(--ink);
    overflow-x: clip;
}

::selection {
    background: var(--ink);
    color: #fff;
}

.text-ink-mute {
    color: var(--ink-soft);
}

footer .text-ink-mute {
    color: var(--ink-soft);
}

.container-x {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.container-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-reco-badge {
    position: absolute;
    right: max(1rem, calc((100vw - 1280px) / 2 + 1rem));
    bottom: clamp(0.75rem, 1.2vw, 1rem);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-reco-badge > div,
.hero-mobile-reco-badge > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-reco-badge a,
.hero-mobile-reco-badge a {
    border-radius: 9999px;
    line-height: 0;
    box-shadow: 0 24px 60px -26px rgba(0, 0, 0, 0.55), 0 12px 30px -18px rgba(10, 31, 53, 0.7);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-reco-badge a:hover,
.hero-mobile-reco-badge a:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.65), 0 16px 36px -20px rgba(10, 31, 53, 0.8);
}

.hero-mobile-image {
    display: none;
    position: relative;
}

.hero-mobile-reco-badge {
    display: none;
}

.hero-section > .absolute > img {
    object-fit: cover;
    object-position: center center;
}

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

.hero-gradient {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(10, 31, 53, 0.58) 0%, rgba(10, 31, 53, 0.34) 35%, rgba(10, 31, 53, 0.12) 65%, rgba(10, 31, 53, 0.03) 100%),
        linear-gradient(180deg, rgba(10, 31, 53, 0.06) 0%, rgba(10, 31, 53, 0.22) 100%);
}

@media (max-width: 1023px) {
    .hero-section {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section > .absolute > img {
        object-position: 54% center;
    }

    .hero-gradient {
        background: linear-gradient(180deg, rgba(10, 31, 53, 0.44) 0%, rgba(10, 31, 53, 0.36) 45%, rgba(10, 31, 53, 0.2) 100%);
    }

    .hero-reco-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -0.75rem clamp(1rem, 4vw, 2rem) 2rem auto;
    }
}

@media (max-width: 767px) {
    html,
    body {
        width: 100%;
        overflow-x: clip;
    }

    #hdr .header-inner,
    .hero-section .container-x,
    .hero-section .grid,
    .hero-section .grid > *,
    .hero-copy,
    .hero-copy h1,
    .hero-copy > p,
    .hero-copy ul {
        min-width: 0;
        max-width: 100%;
    }

    .hero-section {
        min-height: auto;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section .container-x {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .hero-section .grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy h1 {
        font-size: 1.85rem;
        line-height: 1.16;
        overflow-wrap: normal;
    }

    .hero-copy > p,
    .hero-copy ul li {
        overflow-wrap: break-word;
    }

    .hero-section > .absolute > img {
        display: none;
    }

    .hero-mobile-image {
        display: block;
        width: 100%;
        margin-top: 96px;
        background: var(--ink);
    }

    .hero-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-reco-badge {
        display: none;
    }

    .hero-mobile-reco-badge {
        position: absolute;
        right: 0.85rem;
        bottom: 0.85rem;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-gradient {
        background:
            linear-gradient(180deg, rgba(10, 31, 53, 0.08) 0%, rgba(10, 31, 53, 0.46) 45%, rgba(10, 31, 53, 0.94) 100%),
            linear-gradient(90deg, rgba(10, 31, 53, 0.28), rgba(10, 31, 53, 0.12));
    }

    .hero-copy .reveal.text-brand {
        margin-bottom: 0.85rem;
    }

    .hero-copy > p {
        margin-bottom: 1rem;
    }

    .hero-copy ul {
        margin-bottom: 1.25rem;
    }

    .hero-copy .btn {
        min-height: 46px;
        padding-inline: 1.05rem;
    }
}

.hero-copy h1,
.hero-copy > p,
.hero-copy ul li {
    text-shadow: 0 2px 18px rgba(10, 31, 53, 0.55);
}

.hero-copy .check::before {
    text-shadow: none;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 9999px;
    transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-brand {
    background: var(--brand-deep);
    color: #fff;
}

.btn-brand:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(40, 118, 163, 0.45);
}

.btn-ink {
    background: var(--ink);
    color: #fff;
}

.btn-ink:hover {
    background: var(--brand-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(10, 31, 53, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.btn-outline-ink {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(10, 31, 53, 0.25);
}

.btn-outline-ink:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
}

.btn-active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.nav-link {
    position: relative;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0.4rem 0;
    opacity: 0.92;
    transition: color 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 1;
    color: var(--brand-deep);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown > summary:focus {
    outline: 2px solid rgba(77, 179, 212, 0.42);
    outline-offset: 4px;
    border-radius: 9999px;
}

.nav-dropdown-toggle svg {
    transition: transform 0.2s ease;
}

.nav-dropdown[open] .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    z-index: 80;
    min-width: 230px;
    padding: 0.45rem;
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 12px;
    box-shadow: 0 24px 60px -24px rgba(10, 31, 53, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

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

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 0.85rem;
    border-radius: 9px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--brand-light);
    color: var(--brand-deep);
}

.nav-dropdown-menu a:last-child {
    margin-top: 0.25rem;
    border-top: 1px solid rgba(10, 31, 53, 0.08);
    color: var(--brand-deep);
}

#topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 49;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    height: 40px;
    transition: transform 0.3s ease;
}

#topbar .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

@media (min-width: 768px) {
    #topbar .topbar-inner {
        padding: 0 2rem;
    }
}

.topbar-hidden {
    transform: translateY(-100%);
}

#topbar a {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

#topbar a:hover {
    color: #fff;
}

#topbar .topbar-contact,
#topbar .topbar-hours,
#topbar .topbar-address {
    flex-shrink: 0;
}

.topbar-hours-short {
    display: none;
}

@media (max-width: 767px) {
    #topbar {
        height: 34px;
        overflow: hidden;
    }

    #topbar .topbar-inner {
        justify-content: flex-start;
        gap: 1.15rem;
        padding: 0 1rem;
        overflow-x: auto;
        scrollbar-width: none;
        white-space: nowrap;
        font-size: 10px;
    }

    #topbar .topbar-inner::-webkit-scrollbar {
        display: none;
    }

    #topbar .topbar-contact {
        gap: 0.8rem;
    }

    #topbar svg {
        width: 11px;
        height: 11px;
    }

    #topbar a,
    #topbar span {
        gap: 0.35rem;
    }

    .topbar-hours-full {
        display: none;
    }

    .topbar-hours-short {
        display: inline;
    }

}

#hdr {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 50;
    top: 0;
    background: #fff;
    box-shadow: 0 1px 0 rgba(10, 31, 53, 0.06);
    transition: top 0.3s ease, box-shadow 0.3s;
}

@media (max-width: 767px) {
    #hdr {
        top: 34px;
    }

    #hdr.solid {
        top: 0;
    }
}

@media (min-width: 768px) {
    #hdr {
        top: 40px;
    }
}

#hdr.solid {
    top: 0;
    box-shadow: 0 4px 18px rgba(10, 31, 53, 0.09);
}

#hdr .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    #hdr .header-inner {
        padding: 0 2rem;
        gap: 1.5rem;
    }
}

.logo-img {
    height: 66px;
    width: auto;
    display: block;
    margin: -8px 0;
    flex-shrink: 0;
}

#hdr .header-inner > a {
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    #hdr .header-inner {
        height: 62px;
        padding: 0 0.8rem;
        gap: 0.55rem;
    }

    .logo-img {
        height: 48px;
        margin: -5px 0;
    }
}

@media (min-width: 768px) {
    .logo-img {
        height: 76px;
    }
}

.logo-footer {
    height: 76px;
    width: auto;
    display: block;
    margin: 0 0 1.1rem;
}

@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }

    .hero-copy > p,
    .hero-copy ul li,
    #tjanster p,
    #om-oss p,
    #fore-efter p,
    #varfor p,
    #process p,
    #omrade p,
    #faq .qa-body,
    #kontakt p,
    footer p,
    footer li,
    .svc a,
    .check,
    .city-chip,
    .contact-value,
    .perks-list li {
        font-size: 1.05rem;
    }

    .svc h3,
    .ben h3,
    .step h3,
    #kontakt h3 {
        font-size: 1.18rem;
    }

    .field label,
    .field input,
    .field textarea,
    .field select,
    .btn,
    details.qa > summary {
        font-size: 1rem;
    }

    .btn-sm {
        font-size: 0.95rem;
    }
}

.nav-cluster {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-quote {
    display: inline-flex;
}

@media (max-width: 420px) {
    .header-quote {
        padding: 0.5rem 0.7rem;
        font-size: 0.74rem;
    }
}

@media (min-width: 1024px) {
    .nav-cluster {
        gap: 1.5rem;
    }
}

.nav-cluster nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cluster nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

#mm {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    #mm {
        left: 0.75rem;
        right: 0.75rem;
        margin-top: 0.5rem;
        border-radius: 12px;
        max-height: calc(100vh - 118px);
        overflow-y: auto;
    }

    #mm nav {
        padding: 0.35rem;
    }

    #mm nav a {
        min-height: 42px;
        font-size: 0.9rem;
    }
}

#mm nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

#mm nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

#mm nav a:hover,
#mm nav a:active {
    background: var(--brand-light);
    color: var(--brand-deep);
}

.mobile-services {
    border-radius: 10px;
}

.mobile-services > summary {
    min-height: 48px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
}

.mobile-services > summary::-webkit-details-marker {
    display: none;
}

.mobile-services[open] > summary {
    background: var(--brand-light);
    color: var(--brand-deep);
}

.mobile-services-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.mobile-services[open] .mobile-services-icon {
    transform: rotate(180deg);
}

.mobile-services-menu {
    display: grid;
    gap: 0.2rem;
    padding: 0.35rem 0.45rem 0.55rem;
}

#mm nav .mobile-services-menu a {
    min-height: 38px;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

#mm-cta {
    padding: 0.75rem;
    border-top: 1px solid rgba(10, 31, 53, 0.08);
}

#mm {
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transform-origin: top right;
    transition: opacity 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
    box-shadow: 0 24px 60px -20px rgba(10, 31, 53, 0.35);
}

#mm.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    border: 1px solid rgba(10, 31, 53, 0.25);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.check::before {
    content: "✓";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.15em;
    border-radius: 50%;
    background: var(--brand);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(10, 31, 53, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(77, 179, 212, 0.15);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.field-dark label {
    color: rgba(255, 255, 255, 0.7);
}

.field-dark input,
.field-dark textarea,
.field-dark select {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.field-dark input::placeholder,
.field-dark textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.field-dark input:focus,
.field-dark textarea:focus,
.field-dark select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(77, 179, 212, 0.2);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--brand);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--brand-light);
    color: var(--brand-deep);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 9999px;
}

.badge-light {
    background: rgba(77, 179, 212, 0.2);
    color: var(--brand);
}

.services-heading {
    font-size: 2rem;
}

.services-lead {
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .services-heading {
        font-size: 2.5rem;
    }

    .services-lead {
        font-size: 1.2rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

.svc {
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.svc:hover {
    box-shadow: 0 20px 50px -20px rgba(10, 31, 53, 0.22);
    border-color: rgba(77, 179, 212, 0.35);
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f1f7 0%, #f8fbfd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-deep);
    margin-bottom: 1.1rem;
    box-shadow: inset 0 0 0 1px rgba(77, 179, 212, 0.28);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.svc:hover .svc-icon {
    background: #fff;
    color: var(--ink);
    transform: translateY(-2px);
}

.svc-icon svg,
.ben-icon svg {
    width: 34px;
    height: 34px;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svc-list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.svc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.svc-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 31, 53, 0.1);
}

.svc-link {
    color: var(--brand-deep);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, gap 0.2s;
    white-space: normal;
}

.svc-link:hover {
    color: var(--ink);
    gap: 0.55rem;
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.05rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: var(--brand-deep);
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.svc-cta:hover {
    background: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -8px rgba(40, 118, 163, 0.5);
}

details.qa {
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

details.qa[open] {
    border-color: var(--brand);
    box-shadow: 0 6px 20px -8px rgba(40, 118, 163, 0.18);
}

details.qa > summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    details.qa > summary {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
        font-size: 1.02rem;
        align-items: center;
    }
}

details.qa > summary::-webkit-details-marker {
    display: none;
}

.qa-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

details.qa[open] .qa-icon {
    background: var(--brand);
    color: var(--ink);
    transform: rotate(45deg);
}

.qa-body {
    padding: 0 1.15rem 1.15rem 1.15rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .qa-body {
        padding: 0 1.5rem 1.4rem 1.5rem;
        font-size: 0.95rem;
    }
}

.ben {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(10, 31, 53, 0.06);
    position: relative;
    overflow: hidden;
}

.ben-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f1f7 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-deep);
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(77, 179, 212, 0.26);
}

.step-wrap {
    position: relative;
}

.step {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(10, 31, 53, 0.06);
    position: relative;
}

.step-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #e0f1f7 100%);
    border: 2px solid rgba(77, 179, 212, 0.45);
    color: var(--brand-deep);
    margin-bottom: 1rem;
    box-shadow: 0 10px 22px -16px rgba(40, 118, 163, 0.4);
}

.step-dot svg {
    width: 32px;
    height: 32px;
}

.reviews-section {
    background: #dcebf6;
}

.reviews-heading {
    color: var(--brand-deep);
}

.reviews-heading-sub {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
}

.reco-widget {
    max-width: 1040px;
    margin: 0 auto 1.75rem;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    box-shadow: 0 18px 45px -28px rgba(10, 31, 53, 0.28);
}

.reco-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 103px;
    margin: 0 auto 1.75rem;
}

.reco-badge-wrap > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.reco-badge-wrap a {
    border-radius: 9999px;
    line-height: 0;
}

.reco-frame {
    width: 100%;
    border: 0;
    display: block;
    overflow: hidden;
}

.rvw {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(10, 31, 53, 0.08);
}

.stars {
    color: #f5a623;
    letter-spacing: 0.1em;
}

.city-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
}

.city-chip:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.ba {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    touch-action: none;
    cursor: ew-resize;
    user-select: none;
    background: var(--ink);
    box-shadow: 0 20px 50px -20px rgba(10, 31, 53, 0.3);
    aspect-ratio: 16 / 10;
}

.ba img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba .ba-top {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 50%);
}

.ba .ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
}

.ba .ba-handle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.ba .ba-handle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    color: var(--ink);
    z-index: 2;
}

.ba-tag {
    position: absolute;
    top: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    border-radius: 9999px;
}

.ba-tag-before {
    left: 1rem;
    background: #fff;
    color: var(--ink);
}

.ba-tag-after {
    right: 1rem;
    background: var(--ink);
    color: #fff;
}

.ba-max {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ba-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.ba-tabs::-webkit-scrollbar {
    display: none;
}

.ba-tab {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .ba-tabs {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
    }
}

.hero-min {
    min-height: 720px;
}

@media (min-width: 1024px) {
    .hero-min {
        min-height: 760px;
    }
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap {
    height: 100%;
}

.about-img-wrap .about-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px -20px rgba(10, 31, 53, 0.2);
}

@media (min-width: 1024px) {
    .about-img-wrap .about-img {
        aspect-ratio: auto;
        height: 100%;
        min-height: 100%;
    }
}

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

.about-badge {
    display: flex;
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    box-shadow: 0 18px 40px -18px rgba(10, 31, 53, 0.35);
    align-items: center;
    gap: 0.75rem;
    max-width: 260px;
}

@media (max-width: 767px) {
    .about-badge {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
        max-width: none;
        border-radius: 12px;
        padding: 0.8rem 0.85rem;
    }
}

.about-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-light {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: var(--brand-light);
    color: var(--brand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.85rem;
    align-items: center;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.contact-value {
    display: block;
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.3;
}

.perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.perks-list li::before {
    content: "✓";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.1em;
    border-radius: 50%;
    background: var(--brand);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--brand);
}

#contact-form,
#quick-contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha,
#quick-contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha,
    #quick-contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha,
    #quick-contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

@media (max-width: 640px) {
    section,
    section > div,
    section > div > div,
    section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
    }
}

.field-dark-border {
    border-color: rgba(255, 255, 255, 0.25);
}

.is-hidden {
    display: none;
}

.service-page {
    background: #fff;
}

.service-hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.service-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 31, 53, 0.92) 0%, rgba(10, 31, 53, 0.74) 44%, rgba(10, 31, 53, 0.42) 100%),
        linear-gradient(180deg, rgba(10, 31, 53, 0.42) 0%, rgba(10, 31, 53, 0.86) 100%);
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 8.25rem;
    padding-bottom: 3.5rem;
}

.service-hero-grid {
    display: grid;
    gap: 1.75rem;
    align-items: center;
}

.service-hero-copy {
    max-width: 860px;
}

.service-back-link {
    display: flex;
    align-items: center;
    width: max-content;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.service-back-link:hover {
    color: #fff;
}

.service-hero-copy .badge {
    display: flex;
    width: fit-content;
    margin-bottom: 1.15rem;
}

.service-hero-copy h1 {
    font-size: 2.6rem;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 0.65rem;
    overflow-wrap: break-word;
}

.service-hero-copy h2 {
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 1.15rem;
}

.service-hero-copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 720px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.service-hero-card {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 24px 70px -28px rgba(0, 0, 0, 0.45);
    max-width: 420px;
    margin-left: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-card-kicker {
    display: block;
    color: var(--brand-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.service-hero-card h2 {
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-hero-mini-list,
.service-issue-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-hero-mini-list {
    display: grid;
    gap: 0.75rem;
}

.service-hero-mini-list li,
.service-issue-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--ink-soft);
    line-height: 1.55;
    font-weight: 600;
}

.service-hero-mini-list svg,
.service-issue-list svg {
    color: var(--brand-deep);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.service-section {
    padding: 3.25rem 0;
}

.service-tight-section {
    padding-top: 3.25rem;
}

.service-article {
    background: #fff;
}

.service-article h2,
.service-issue-panel h2,
.service-interval-panel h2 {
    color: var(--ink);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.18;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.service-article p {
    color: var(--ink-soft);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.service-detail-grid {
    display: grid;
    gap: 1.15rem;
    max-width: 1040px;
    margin: 0 auto;
}

.service-detail-card {
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 10px;
    padding: 1.55rem;
    box-shadow: 0 18px 42px -30px rgba(10, 31, 53, 0.35);
}

.service-detail-card h3 {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.service-detail-card li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.55;
    font-size: 0.94rem;
}

.service-detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.service-issue-panel,
.service-interval-panel {
    background: var(--mist);
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
}

.service-issue-panel {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.service-interval-panel {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.service-issue-list {
    display: grid;
    gap: 0.7rem;
}

.service-interval-grid {
    display: grid;
    gap: 1rem;
}

.service-interval-grid article {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid rgba(10, 31, 53, 0.07);
}

.service-interval-grid h3 {
    color: var(--brand-deep);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.service-interval-grid p {
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: 0.94rem;
}

.service-step-list {
    display: grid;
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
}

.service-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 16px 40px -32px rgba(10, 31, 53, 0.35);
}

.service-step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand-deep);
    font-weight: 800;
    font-size: 1.05rem;
}

.service-step h3 {
    color: var(--ink);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.service-step p {
    color: var(--ink-soft);
    line-height: 1.65;
}

.service-cta-strip {
    background: var(--ink);
    color: #fff;
    padding: 4rem 0;
}

.service-cta-panel {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.service-cta-panel h2 {
    font-size: 2rem;
    line-height: 1.18;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-cta-panel p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
}

.service-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .service-hero-copy h1 {
        font-size: 3.75rem;
    }

    .service-hero-copy h2 {
        font-size: 1.75rem;
    }

    .service-section {
        padding: 4.25rem 0;
    }

    .service-tight-section {
        padding-top: 4.25rem;
    }

    .service-detail-grid,
    .service-interval-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-issue-panel {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        padding: 2rem;
    }

    .service-cta-panel {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (min-width: 1024px) {
    .service-hero {
        min-height: 600px;
    }

    .service-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-article h2,
    .service-issue-panel h2,
    .service-interval-panel h2,
    .service-cta-panel h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .service-hero {
        min-height: auto;
    }

    .service-hero-media img {
        object-position: center;
    }

    .service-hero-shade {
        background:
            linear-gradient(180deg, rgba(10, 31, 53, 0.82) 0%, rgba(10, 31, 53, 0.82) 100%),
            linear-gradient(90deg, rgba(10, 31, 53, 0.8), rgba(10, 31, 53, 0.72));
    }

    .service-hero-inner {
        padding-top: 8.5rem;
        padding-bottom: 2.75rem;
    }

    .service-hero-copy h1 {
        font-size: 2.05rem;
        overflow-wrap: anywhere;
    }

    .service-hero-copy h2 {
        font-size: 1.25rem;
    }

    .service-hero-copy p {
        font-size: 0.98rem;
    }

    .service-hero-card {
        margin-left: 0;
        max-width: none;
    }

    .service-section,
    .service-cta-strip {
        padding: 2.6rem 0;
    }

    .service-tight-section {
        padding-top: 2.6rem;
    }

    .service-step {
        grid-template-columns: 44px 1fr;
        padding: 1rem;
    }

    .service-step > span {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 420px) {
    .service-hero-copy h1 {
        font-size: 1.85rem;
        line-height: 1.14;
    }
}

.service-body #topbar {
    display: none;
}

.service-body #hdr,
.service-body #hdr.solid {
    top: 0;
    background: #f8fbfe;
    box-shadow: 0 1px 0 rgba(10, 31, 53, 0.1);
}

.service-body .service-page,
.service-body .service-page .bg-white,
.service-body .service-page .bg-mist {
    background: #eaf3f8;
}

.service-body .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.service-body .service-hero {
    min-height: 540px;
    background: #159fe3;
}

.service-body .service-hero-media img {
    opacity: 0.52;
    filter: blur(8px) saturate(1.2);
    transform: scale(1.04);
}

.service-body .service-hero-shade {
    background:
        radial-gradient(ellipse at 72% 22%, rgba(13, 52, 96, 0.5) 0%, rgba(13, 52, 96, 0.22) 30%, rgba(13, 52, 96, 0) 58%),
        linear-gradient(105deg, rgba(121, 173, 255, 0.86) 0%, rgba(0, 157, 225, 0.75) 38%, rgba(44, 151, 238, 0.76) 68%, rgba(142, 219, 243, 0.86) 100%);
}

.service-body .service-hero-inner {
    padding-top: 8.5rem;
    padding-bottom: 3.4rem;
}

.service-body .service-back-link {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.9rem;
}

.service-body .service-back-link::before {
    content: "←";
    margin-right: 0.55rem;
}

.service-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 12px 28px -20px rgba(10, 31, 53, 0.5);
    margin-bottom: 1.4rem;
}

.service-body .service-hero-copy .badge {
    color: #1075ad;
    background: rgba(255, 255, 255, 0.86);
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px -16px rgba(10, 31, 53, 0.35);
}

.service-body .service-hero-copy h1,
.service-body .service-article h2,
.service-body .service-page h2,
.service-body .service-detail-card h3,
.service-body .service-step h3,
.service-body .service-faq-section h2,
.service-body .service-cta-panel h2 {
    font-style: italic;
}

.service-body .service-hero-copy h1 {
    max-width: 760px;
    text-shadow: 0 3px 12px rgba(10, 31, 53, 0.24);
}

.service-body .service-hero-copy h2 {
    display: none;
}

.service-body .service-hero-copy p {
    max-width: 720px;
    color: #fff;
    font-size: 1.18rem;
    text-shadow: 0 2px 8px rgba(10, 31, 53, 0.24);
}

.service-body .service-section {
    padding: 4.9rem 0;
}

.service-body .service-article {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
}

.service-body .service-article .eyebrow,
.service-body .service-section .badge {
    letter-spacing: 0.14em;
}

.service-body .service-article h2 {
    color: #17384f;
}

.service-body .service-article p {
    color: #5d7283;
}

.service-body .service-detail-grid {
    display: block;
    max-width: 940px;
}

.service-body .service-detail-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 1.15rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(23, 56, 79, 0.14);
    border-radius: 0;
    box-shadow: none;
    padding: 1.45rem 0;
}

.service-body .service-detail-card::before {
    content: "✓";
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0aa3ed;
    background: #c8eafe;
    box-shadow: 0 8px 18px -12px rgba(0, 113, 180, 0.5);
}

.service-body .service-detail-card h3 {
    color: #17384f;
    margin-bottom: 0.4rem;
}

.service-body .service-detail-card ul {
    gap: 0.35rem;
}

.service-body .service-detail-card li {
    color: #5d7283;
}

.service-body .service-interval-panel {
    max-width: 940px;
    background: #d4ebf8;
    border: 1px solid #8acdf4;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 18px 35px -28px rgba(10, 31, 53, 0.25);
}

.service-body .service-interval-grid {
    display: block;
}

.service-body .service-interval-grid article {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 0.8rem;
}

.service-body .service-interval-grid h3 {
    display: inline;
    color: #17384f;
    font-weight: 800;
}

.service-body .service-interval-grid p {
    display: inline;
    color: #5d7283;
}

.service-body .service-step-list {
    max-width: 920px;
    position: relative;
}

.service-body .service-step-list::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 1px;
    background: rgba(0, 157, 225, 0.32);
}

.service-body .service-step {
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 2.15rem;
}

.service-body .service-step > span {
    background: #0aa3ed;
    color: #fff;
    box-shadow: 0 8px 20px -14px rgba(0, 113, 180, 0.65);
    z-index: 1;
}

.service-body .service-step h3 {
    color: #17384f;
}

.service-body .service-step p {
    color: #5d7283;
}

.service-body .service-faq-section {
    background: #194d68;
    color: #fff;
}

.service-body .service-faq-section .badge {
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    padding-left: 0;
}

.service-body .service-faq-section h2 {
    color: #fff;
    text-align: left;
}

.service-body .service-faq-section details.qa {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    box-shadow: none;
}

.service-body .service-faq-section details.qa > summary {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0.08em;
}

.service-body .service-faq-section .qa-body {
    color: rgba(255, 255, 255, 0.72);
    padding-left: 0;
}

.service-body .service-faq-section .qa-icon {
    background: transparent;
    color: #fff;
}

.service-body .service-cta-strip {
    background: #194d68;
    text-align: center;
    padding-top: 1rem;
}

.service-body .service-cta-panel {
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.service-body .service-cta-actions {
    justify-content: center;
}

@media (max-width: 767px) {
    .service-body .service-hero-inner {
        padding-top: 7.4rem;
    }

    .service-body .service-hero-icon {
        width: 52px;
        height: 52px;
    }

    .service-body .service-hero-copy p {
        font-size: 1rem;
    }

    .service-body .service-detail-card {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 0.85rem;
    }

    .service-body .service-detail-card::before {
        width: 34px;
        height: 34px;
    }

    .service-body .service-interval-panel {
        padding: 1.35rem;
    }
}

.service-body #topbar {
    display: block;
}

.service-body #hdr {
    top: 40px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(10, 31, 53, 0.06);
}

.service-body #hdr.solid {
    top: 0;
    box-shadow: 0 4px 18px rgba(10, 31, 53, 0.09);
}

.service-body .service-page {
    background: #fff;
}

.service-body .service-page .bg-white {
    background: #fff;
}

.service-body .service-page .bg-mist {
    background: var(--mist);
}

.service-body .service-hero {
    min-height: 660px;
    background: var(--ink);
}

.service-body .service-hero-media img {
    opacity: 1;
    filter: none;
    transform: none;
}

.service-body .service-hero-shade {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(10, 31, 53, 0.62) 0%, rgba(10, 31, 53, 0.42) 36%, rgba(10, 31, 53, 0.2) 66%, rgba(10, 31, 53, 0.08) 100%),
        linear-gradient(90deg, rgba(10, 31, 53, 0.86) 0%, rgba(10, 31, 53, 0.62) 48%, rgba(10, 31, 53, 0.34) 100%),
        linear-gradient(180deg, rgba(10, 31, 53, 0.12) 0%, rgba(10, 31, 53, 0.38) 100%);
}

.service-body .service-hero-inner {
    padding-top: 11rem;
    padding-bottom: 5rem;
}

.service-body .service-back-link {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.35rem;
}

.service-body .service-hero-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    color: var(--brand);
    background: rgba(224, 241, 247, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(77, 179, 212, 0.12);
}

.service-body .service-hero-copy .badge {
    color: var(--brand);
    background: rgba(77, 179, 212, 0.18);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    box-shadow: none;
}

.service-body .service-hero-copy h1,
.service-body .service-article h2,
.service-body .service-page h2,
.service-body .service-detail-card h3,
.service-body .service-step h3,
.service-body .service-faq-section h2,
.service-body .service-cta-panel h2 {
    font-style: normal;
}

.service-body .service-hero-copy h1 {
    max-width: 860px;
    font-size: 4rem;
    letter-spacing: 0;
    text-shadow: 0 2px 18px rgba(10, 31, 53, 0.55);
}

.service-body .service-hero-copy h2 {
    display: block;
    color: var(--brand);
    font-size: 1.75rem;
    margin-bottom: 1.15rem;
}

.service-body .service-hero-copy p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    text-shadow: 0 2px 18px rgba(10, 31, 53, 0.45);
}

.service-body .service-article {
    max-width: 900px;
}

.service-body .service-article h2 {
    color: var(--ink);
}

.service-body .service-article p {
    color: var(--ink-soft);
}

.service-body .service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 1100px;
}

.service-body .service-detail-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 10px;
    box-shadow: 0 16px 42px -30px rgba(10, 31, 53, 0.35);
    padding: 1.55rem;
}

.service-body .service-detail-card::before {
    display: none;
}

.service-body .service-detail-card h3 {
    color: var(--ink);
    margin-bottom: 0.9rem;
}

.service-body .service-detail-card li {
    color: var(--ink-soft);
}

.service-body .service-interval-panel {
    max-width: 1100px;
    background: var(--ink);
    border: 0;
    border-radius: 10px;
    padding: 2.1rem;
    box-shadow: 0 20px 50px -28px rgba(10, 31, 53, 0.35);
}

.service-body .service-interval-panel .eyebrow,
.service-body .service-interval-panel h2,
.service-body .service-interval-grid h3 {
    color: #fff;
}

.service-body .service-interval-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-body .service-interval-grid article {
    display: block;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.15rem;
    margin: 0;
}

.service-body .service-interval-grid h3 {
    display: block;
}

.service-body .service-interval-grid p {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}

.service-body .service-step-list::before {
    background: rgba(77, 179, 212, 0.3);
}

.service-body .service-step > span {
    background: var(--brand);
    color: #fff;
}

.service-body .service-step h3 {
    color: var(--ink);
}

.service-body .service-step p {
    color: var(--ink-soft);
}

.service-body .service-faq-section {
    background: #fff;
    color: var(--ink);
}

.service-body .service-faq-section .badge {
    background: var(--brand-light);
    color: var(--brand-deep);
    padding-left: 0.9rem;
}

.service-body .service-faq-section h2 {
    color: var(--ink);
    text-align: center;
}

.service-body .service-faq-section details.qa {
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.service-body .service-faq-section details.qa > summary {
    color: var(--ink);
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    letter-spacing: 0;
}

.service-body .service-faq-section .qa-body {
    color: var(--ink-soft);
    padding-left: 1.15rem;
}

.service-body .service-faq-section .qa-icon {
    background: var(--brand-light);
    color: var(--brand-deep);
}

.service-body .service-cta-strip {
    background: var(--ink);
    padding-top: 4rem;
}

@media (max-width: 767px) {
    .service-body #hdr {
        top: 34px;
    }

    .service-body #hdr.solid {
        top: 0;
    }

    .service-body .service-hero {
        min-height: auto;
    }

    .service-body .service-hero-inner {
        padding-top: 9rem;
        padding-bottom: 3rem;
    }

    .service-body .service-hero-copy h1 {
        font-size: 2.05rem;
    }

    .service-body .service-hero-copy h2 {
        font-size: 1.25rem;
    }

    .service-body .service-detail-grid,
    .service-body .service-interval-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .service-body .service-hero-copy h1 {
        font-size: 1.85rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .nav-cluster nav {
        display: none;
    }

    #mmBtn.menu-toggle {
        display: inline-flex;
    }

    #mm {
        display: flex;
    }
}

@media (min-width: 1200px) {
    #mmBtn.menu-toggle {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1320px) {
    .service-body .service-hero-copy h1 {
        font-size: 3.45rem;
    }
}

.service-body .service-section {
    padding: 4.6rem 0;
}

.service-body .service-tight-section {
    padding-top: 4.6rem;
}

.service-body .service-issue-panel {
    background: #fff;
    border: 1px solid rgba(10, 31, 53, 0.08);
    box-shadow: 0 18px 48px -34px rgba(10, 31, 53, 0.35);
}

.service-body .service-faq-section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}

.service-body .service-cta-strip {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
}

@media (max-width: 767px) {
    .service-body .service-section,
    .service-body .service-faq-section,
    .service-body .service-cta-strip {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .service-body .service-tight-section {
        padding-top: 3rem;
    }
}

.offer-hero {
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--mist) 100%);
}

.offer-hero-pills {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-hero-pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(40, 118, 163, 0.15);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offer-hero-pills li svg {
    color: var(--brand-deep);
    flex-shrink: 0;
}

.offer-wizard {
    position: relative;
}

.offer-wizard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-deep) 100%);
    border-radius: 16px 16px 0 0;
}

.next-strip {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(10, 31, 53, 0.08);
}

.next-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border: 1px solid rgba(10, 31, 53, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.next-card:hover {
    box-shadow: 0 12px 30px -16px rgba(10, 31, 53, 0.18);
    transform: translateY(-2px);
}

.next-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--brand-light);
    color: var(--brand-deep);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
}

.next-card h4 {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}

.next-card p {
    color: var(--ink-soft);
    font-size: 0.85rem;
    line-height: 1.5;
}

.wizard-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.wizard-step {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink-mute);
}

.wizard-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 31, 53, 0.08);
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.wizard-step.active .wizard-step-num {
    background: var(--brand-deep);
    color: #fff;
    box-shadow: 0 6px 16px rgba(77, 179, 212, 0.4);
}

.wizard-step.done .wizard-step-num {
    background: var(--brand-deep);
    color: #fff;
}

.wizard-step-label {
    font-size: 0.95rem;
    font-weight: 500;
}

.wizard-step.active .wizard-step-label,
.wizard-step.done .wizard-step-label {
    color: var(--ink);
    font-weight: 600;
}

.wizard-line {
    width: 60px;
    height: 2px;
    background: rgba(10, 31, 53, 0.15);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .wizard-line { width: 100px; }
}

.service-pick {
    display: block;
    cursor: pointer;
    position: relative;
}

.service-pick input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    z-index: 1;
}

.service-pick-inner {
    display: flex;
    gap: 0.95rem;
    padding: 1.1rem 1.15rem;
    border: 2px solid rgba(10, 31, 53, 0.1);
    border-radius: 14px;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
    align-items: flex-start;
    position: relative;
    height: 100%;
}

.service-pick:hover .service-pick-inner {
    border-color: rgba(77, 179, 212, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px -12px rgba(40, 118, 163, 0.3);
}

.service-pick input:checked ~ .service-pick-inner {
    border-color: var(--brand);
    background: var(--brand-light);
}

.service-pick input:checked ~ .service-pick-inner::after {
    content: "✓";
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-deep);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-pick-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--brand-light);
    color: var(--brand-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}

.service-pick input:checked ~ .service-pick-inner .service-pick-icon {
    background: var(--brand-deep);
    color: #fff;
}

.service-pick-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.service-pick-title {
    display: block;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.98rem;
}

.service-pick-desc {
    display: block;
    font-size: 0.83rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

.step-error {
    color: #c53030;
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    margin-top: 1.25rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .offer-aside {
        position: sticky;
        top: 130px;
    }
}
