:root {
    color-scheme: dark;
    --page-bg: #030306;
    --surface: rgba(12, 14, 20, 0.86);
    --surface-strong: #10131a;
    --text: #f7f3ea;
    --muted: rgba(247, 243, 234, 0.76);
    --line: rgba(255, 255, 255, 0.14);
    --cyan: #56c8ff;
    --green: #73f0cc;
    --pink: #ff68c8;
    --amber: #f7b267;
    --font: Inter, Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    min-width: 320px;
    background: var(--page-bg);
    color: var(--text);
    font-family: var(--font);
    letter-spacing: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

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

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

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}

.service-skip {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 30;
    transform: translateY(-140%);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 14px;
    background: #05070d;
    font-weight: 800;
}

.service-skip:focus-visible {
    transform: translateY(0);
}

.service-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 12px max(18px, 6vw);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 3, 6, 0.82);
    backdrop-filter: blur(16px) saturate(140%);
}

.service-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 900;
}

.service-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
}

.service-brand span {
    overflow-wrap: anywhere;
}

.service-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 850;
}

.service-nav a,
.service-button,
.service-related-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.06);
}

.service-nav a:hover,
.service-related-links a:hover {
    border-color: rgba(86, 200, 255, 0.58);
    color: var(--cyan);
}

.service-hero {
    position: relative;
    min-height: 76svh;
    display: flex;
    align-items: flex-end;
    padding: 118px max(18px, 6vw) 58px;
    overflow: hidden;
    isolation: isolate;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(3, 3, 6, 0.38) 0%, rgba(3, 3, 6, 0.7) 54%, #030306 100%);
}

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

.service-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.04);
}

.service-hero-content {
    width: min(930px, 100%);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.service-eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: 4.55rem;
    line-height: 0.98;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.service-lead {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(247, 243, 234, 0.88);
    font-size: 1.16rem;
}

.service-proof {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(247, 243, 234, 0.82);
    font-weight: 750;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.service-button {
    min-height: 46px;
    padding: 0 18px;
    font-weight: 900;
}

.service-button-primary {
    border-color: rgba(86, 200, 255, 0.78);
    background: var(--cyan);
    color: #04111a;
}

.service-button-primary:hover {
    background: var(--green);
    border-color: var(--green);
}

.service-button-secondary:hover {
    border-color: rgba(255, 104, 200, 0.62);
    color: var(--pink);
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--line);
}

.service-stat {
    min-height: 116px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 22px max(18px, 4vw);
    background: #070910;
}

.service-stat strong {
    color: var(--text);
    font-size: 1.42rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.service-stat span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 750;
}

.service-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 72px 0;
}

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

.service-card,
.service-step,
.service-faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.service-card {
    min-height: 280px;
    padding: 26px;
}

.service-card:nth-child(3n + 1) {
    border-top-color: rgba(86, 200, 255, 0.74);
}

.service-card:nth-child(3n + 2) {
    border-top-color: rgba(115, 240, 204, 0.74);
}

.service-card:nth-child(3n) {
    border-top-color: rgba(255, 104, 200, 0.74);
}

.service-card h2,
.service-section-heading h2,
.service-cta h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.service-card p,
.service-step p,
.service-faq-list p,
.service-cta p {
    color: var(--muted);
}

.service-card p {
    margin: 14px 0 0;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: rgba(247, 243, 234, 0.84);
    font-weight: 700;
}

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

.service-section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.service-step {
    min-height: 210px;
    padding: 22px;
}

.service-step span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-strong);
    color: var(--cyan);
    font-weight: 950;
}

.service-step h3 {
    margin: 18px 0 0;
    font-size: 1.08rem;
    overflow-wrap: anywhere;
}

.service-step p {
    margin: 10px 0 0;
}

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

.service-faq-list details {
    padding: 0 20px;
}

.service-faq-list summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.service-faq-list p {
    margin: 0;
    padding: 0 0 20px;
}

.service-related {
    padding-top: 28px;
}

.service-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-related-links a {
    min-height: 42px;
    font-weight: 850;
}

.service-cta {
    width: min(1180px, calc(100% - 36px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: #080a11;
}

.service-cta p {
    max-width: 720px;
    margin: 12px 0 0;
}

.service-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding: 28px 18px 36px;
    color: rgba(247, 243, 234, 0.62);
    font-size: 0.84rem;
    font-weight: 750;
}

.service-footer a:hover {
    color: var(--cyan);
}

@media (max-width: 980px) {
    .service-hero {
        min-height: 72svh;
        padding-top: 104px;
    }

    .service-hero h1 {
        font-size: 3.2rem;
    }

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

    .service-card {
        min-height: 240px;
    }
}

@media (max-width: 660px) {
    .service-topbar {
        align-items: flex-start;
        flex-direction: column;
        min-height: 96px;
        padding: 10px 14px;
    }

    .service-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .service-nav a {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .service-hero {
        min-height: 70svh;
        padding: 136px 18px 42px;
    }

    .service-hero h1 {
        font-size: 2.36rem;
    }

    .service-lead {
        font-size: 1rem;
    }

    .service-button {
        width: 100%;
    }

    .service-stats,
    .service-grid,
    .service-steps {
        grid-template-columns: 1fr;
    }

    .service-section {
        width: min(100% - 28px, 1180px);
        padding: 48px 0;
    }

    .service-card,
    .service-step {
        min-height: 0;
        padding: 20px;
    }

    .service-card h2,
    .service-section-heading h2,
    .service-cta h2 {
        font-size: 1.6rem;
    }

    .service-cta {
        width: min(100% - 28px, 1180px);
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
    }
}
