:root {
    --navy: #0f172a;
    --blue: #0ea5e9;
    --cyan: #22d3ee;
    --green: #16a34a;
    --muted: #64748b;
    --line: #dbe4ef;
    --surface: #ffffff;
    --soft: #f4f8fb;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.15);
}

@property --animated-progress {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8px;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--navy);
    background: linear-gradient(
        180deg,
        #ffffff 0,
        #f4f8fb 20%,
        #eef7fb 42%,
        #ffffff 68%,
        #f4f8fb 100%
    );
}

main {
    overflow-x: hidden;
    overflow-x: clip;
}

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

.site-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.035)
        ),
        rgba(15, 23, 42, 0.72);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 52px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(22px) saturate(150%);
    transition:
        top 0.25s ease,
        min-height 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    animation: navArrive 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-play-state: paused;
    will-change: transform, opacity;
}

body.page-ready .site-nav {
    animation-play-state: running;
}

body.skip-intro-animation .site-nav,
body.skip-intro-animation .brand,
body.skip-intro-animation .nav-links,
body.skip-intro-animation .hero-title,
body.skip-intro-animation .hero-lead,
body.skip-intro-animation .hero-actions,
body.skip-intro-animation .hero-highlights,
body.skip-intro-animation .hero-member-link {
    animation: none !important;
}

body.is-scrolled .site-nav {
    top: 10px;
    min-height: 58px;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.018)
        ),
        rgba(15, 23, 42, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 14px 42px rgba(15, 23, 42, 0.16);
}

body.is-scrolling .site-nav,
body.is-scrolled.is-scrolling .site-nav,
.site-nav.is-open {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.035)
        ),
        rgba(15, 23, 42, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 56px rgba(15, 23, 42, 0.24);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: navLeftArrive 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
    animation-play-state: paused;
    transition: transform 0.2s ease;
    will-change: transform, opacity;
}

.brand:hover {
    transform: translateY(-1px);
}

body.page-ready .brand {
    animation-play-state: running;
}

.brand img {
    height: 42px;
    width: auto;
    display: block;
    filter:
        drop-shadow(0 4px 10px rgba(34, 211, 238, 0.22))
        drop-shadow(0 8px 18px rgba(15, 23, 42, 0.2));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    animation: navRightArrive 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
    animation-play-state: paused;
    will-change: transform, opacity;
}

body.page-ready .nav-links {
    animation-play-state: running;
}

.nav-links a {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    transition:
        color 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            rgba(34, 211, 238, 0.08)
        ),
        rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0;
    transform: translateX(-50%) scaleX(0.35);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 10px 28px rgba(14, 165, 233, 0.14);
}

.nav-links a.is-active {
    color: #fff;
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-links .nav-cta {
    border: 1px solid rgba(34, 211, 238, 0.5);
    background:
        linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.2),
            rgba(34, 211, 238, 0.13) 46%,
            rgba(22, 163, 74, 0.16)
        ),
        rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 10px 28px rgba(8, 47, 73, 0.22);
    backdrop-filter: blur(14px) saturate(145%);
}

.nav-links .nav-cta::before {
    opacity: 1;
    transform: scale(1);
    background:
        radial-gradient(
            circle at 22% 0,
            rgba(255, 255, 255, 0.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12),
            transparent 48%,
            rgba(34, 211, 238, 0.08)
        );
}

.nav-links .nav-cta::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -55%;
    z-index: -1;
    width: 42%;
    height: auto;
    border-radius: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.42),
        transparent
    );
    opacity: 1;
    transform: skewX(-18deg);
    transition: left 0.58s ease;
}

.nav-links .nav-cta:hover {
    border-color: rgba(255, 255, 255, 0.68);
    background:
        linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.26),
            rgba(34, 211, 238, 0.17) 46%,
            rgba(22, 163, 74, 0.2)
        ),
        rgba(255, 255, 255, 0.12);
    filter: saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 14px 34px rgba(8, 47, 73, 0.3);
}

.nav-links .nav-cta:hover::after {
    left: 120%;
}

.nav-links .nav-member-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-member-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
}

.nav-toggle {
    display: none;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
}

.main-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    overflow: clip;
    isolation: isolate;
}

.main-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: calc(var(--hero-progress, 0) * 16px)
        calc(var(--hero-progress, 0) * 16px)
        calc(var(--hero-progress, 0) * 24svh);
    border-radius: calc(var(--hero-progress, 0) * 36px);
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7),
        rgba(15, 23, 42, 0.4),
        rgba(0, 0, 0, 0.72)
    );
}

.hero-slideshow {
    position: absolute;
    z-index: -3;
    inset: calc(var(--hero-progress, 0) * 16px)
        calc(var(--hero-progress, 0) * 16px)
        calc(var(--hero-progress, 0) * 24svh);
    border-radius: calc(var(--hero-progress, 0) * 36px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    will-change: opacity, transform;
}

.hero-mode-slideshow .hero-slide {
    animation: heroSlideFade 24s ease-in-out infinite;
}

.hero-mode-static .hero-slide {
    animation: none;
    transform: scale(1);
}

.hero-slide-dark {
    background-image: url("../img/hero-home-option-dark.jpg");
}

.hero-slide-coverage {
    background-image: url("../img/hero-home-option-coverage.jpg");
}

.hero-slide-server-room {
    background-image: url("../img/hero-home-option-server-room.jpg");
}

.hero-mode-slideshow .hero-slide-coverage {
    animation-delay: 8s;
}

.hero-mode-slideshow .hero-slide-server-room {
    animation-delay: 16s;
}

.hero-mode-static.hero-static-dark .hero-slide-dark,
.hero-mode-static.hero-static-coverage .hero-slide-coverage,
.hero-mode-static.hero-static-server-room .hero-slide-server-room {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: calc(var(--hero-progress, 0) * 16px)
        calc(var(--hero-progress, 0) * 16px)
        calc(var(--hero-progress, 0) * 24svh);
    border-radius: calc(var(--hero-progress, 0) * 36px);
    overflow: hidden;
    z-index: -1;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(34, 211, 238, 0.28),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 35%,
            rgba(14, 165, 233, 0.2),
            transparent 34%
        );
}

.hero-content {
    position: relative;
    width: min(940px, calc(100% - 32px));
    text-align: center;
    color: #fff;
    padding-top: 40px;
    transform: translateY(calc(var(--hero-progress, 0) * -7svh));
    transition: transform 0.08s linear;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.hero-content .eyebrow {
    color: var(--cyan);
}

.hero-title {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 300;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
    animation: heroFromTop 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
    animation-play-state: paused;
    will-change: transform, opacity;
}

body.page-ready .hero-title {
    animation-play-state: running;
}

.hero-title strong {
    font-weight: 800;
}

.hero-lead {
    width: min(720px, 100%);
    margin: 18px auto 0;
    color: #fff;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    line-height: 1.45;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    animation: heroFromBottom 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s both;
    animation-play-state: paused;
    will-change: transform, opacity;
}

body.page-ready .hero-lead {
    animation-play-state: running;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.hero-actions {
    animation: heroFromBottom 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
    animation-play-state: paused;
    will-change: transform, opacity;
}

body.page-ready .hero-actions {
    animation-play-state: running;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    animation: heroFromBottom 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.46s both;
    animation-play-state: paused;
    will-change: transform, opacity;
}

body.page-ready .hero-highlights {
    animation-play-state: running;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.28);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.84rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.hero-highlights i {
    color: var(--cyan);
    font-size: 0.96rem;
}

.hero-member-link {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 700;
    animation: heroFromBottom 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    animation-play-state: paused;
}

body.page-ready .hero-member-link {
    animation-play-state: running;
}

.hero-member-link a {
    color: #fff;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
}

.btn-primary {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid rgba(34, 211, 238, 0.58);
    color: #fff;
    background:
        linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.22),
            rgba(34, 211, 238, 0.14) 46%,
            rgba(22, 163, 74, 0.18)
        ),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 14px 34px rgba(8, 47, 73, 0.24);
    backdrop-filter: blur(16px) saturate(145%);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at 22% 0,
            rgba(255, 255, 255, 0.2),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.14),
            transparent 48%,
            rgba(34, 211, 238, 0.1)
        );
    opacity: 0.9;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -55%;
    z-index: -1;
    width: 42%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.42),
        transparent
    );
    transform: skewX(-18deg);
    transition: left 0.58s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.28),
            rgba(34, 211, 238, 0.18) 46%,
            rgba(22, 163, 74, 0.22)
        ),
        rgba(255, 255, 255, 0.12);
    filter: saturate(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(8, 47, 73, 0.32);
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 9px 22px rgba(8, 47, 73, 0.24);
}

.btn-secondary {
    width: 100%;
    color: #fff;
    background: var(--navy);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
    width: 190px;
    text-wrap: balance;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 0.82rem;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

body.is-scrolled .scroll-hint {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
}

.scroll-hint span {
    width: 18px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    position: relative;
}

.scroll-hint span::after {
    content: "";
    width: 4px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.section,
.coverage {
    scroll-margin-top: 8px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0;
}

.services {
    scroll-margin-top: 72px;
    padding-top: calc(88px - (var(--hero-progress, 0) * 64px));
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading h2,
.coverage-copy h2,
.contact-card h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-heading p,
.coverage-copy p,
.contact-card p {
    color: var(--muted);
    line-height: 1.75;
}

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

.service-card,
.price-card,
.contact-card,
.map-card {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 18% 0,
            rgba(255, 255, 255, 0.86),
            transparent 34%
        ),
        radial-gradient(
            circle at 86% 12%,
            rgba(186, 230, 253, 0.3),
            transparent 42%
        ),
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.78),
            rgba(248, 250, 252, 0.58) 50%,
            rgba(226, 232, 240, 0.62)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(148, 163, 184, 0.1),
        0 18px 42px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(20px) saturate(135%);
    overflow: hidden;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 24px 52px rgba(15, 23, 42, 0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.service-card div {
    flex: 1;
    padding: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.28)
        );
}

.feature-card {
    grid-row: auto;
}

.card-kicker {
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card h3,
.price-card h3 {
    margin: 10px 0;
    font-size: 1.35rem;
}

.service-card p,
.price-card p {
    color: var(--muted);
    line-height: 1.65;
}

.pricing {
    width: 100%;
    padding: 88px 28px;
    background: linear-gradient(
        180deg,
        #f4f8fb 0,
        #ffffff 18%,
        #ffffff 84%,
        #eef7fb 100%
    );
    overflow: hidden;
}

.pricing-title {
    position: relative;
    width: min(720px, 100%);
    margin: 0 auto 44px;
    text-align: center;
}

.pricing-eyebrow {
    display: block;
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.pricing-title p {
    width: min(560px, 100%);
    margin: 14px auto 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
    font-weight: 600;
    line-height: 1.65;
}

.price-grid {
    width: min(1128px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-top: 16px;
    overflow: visible;
}

.internet-package {
    position: relative;
    min-height: 545px;
    padding: 52px 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background:
        radial-gradient(
            circle at 22% 0,
            rgba(255, 255, 255, 0.9),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 10%,
            rgba(186, 230, 253, 0.34),
            transparent 42%
        ),
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.82),
            rgba(248, 250, 252, 0.58) 48%,
            rgba(226, 232, 240, 0.64)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -1px 0 rgba(148, 163, 184, 0.1),
        0 18px 42px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(22px) saturate(135%);
    text-align: center;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.internet-package:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 0 0 1px rgba(255, 255, 255, 0.38),
        0 24px 52px rgba(15, 23, 42, 0.16);
}

.internet-package.is-best:hover {
    border-color: rgba(13, 148, 136, 0.46);
}

.package-badge {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 96px;
    max-width: calc(100% - 34px);
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            rgba(51, 65, 85, 0.84),
            rgba(15, 23, 42, 0.78)
        );
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 8px 18px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px) saturate(150%);
}

.package-badge-best {
    min-width: 130px;
    border-color: rgba(45, 212, 191, 0.58);
    background:
        linear-gradient(
            135deg,
            rgba(13, 148, 136, 0.88),
            rgba(15, 118, 110, 0.82)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 24px rgba(13, 148, 136, 0.28);
}

.package-badge-promo {
    border-color: rgba(14, 165, 233, 0.42);
    background:
        linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.82),
            rgba(15, 23, 42, 0.76)
        );
}

.speed-gauge {
    position: relative;
    width: 182px;
    height: 182px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    isolation: isolate;
    --needle-angle: calc(-135deg + var(--gauge-progress));
    --gauge-accent: var(--blue);
    --gauge-hot: var(--cyan);
}

.internet-package.is-best .speed-gauge {
    --gauge-accent: var(--green);
    --gauge-hot: var(--cyan);
}

.speed-gauge-glow {
    position: absolute;
    inset: 14px;
    z-index: -1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.32), transparent 62%),
        radial-gradient(
            circle at 35% 20%,
            rgba(14, 165, 233, 0.3),
            transparent 58%
        );
    filter: blur(14px);
    opacity: 0.78;
    transform: translateY(8px);
}

.speed-gauge::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #071526;
    box-shadow: 0 4px 12px rgba(7, 21, 38, 0.28);
    transform: translate(-50%, -50%);
}

.speed-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    --animated-progress: var(--gauge-progress);
    background:
        radial-gradient(circle at center, #ffffff 0 48%, transparent 49%),
        repeating-conic-gradient(
            from -135deg,
            rgba(7, 21, 38, 0.2) 0 1.4deg,
            transparent 1.4deg 13.5deg
        ),
        conic-gradient(
            from -135deg,
            rgba(15, 23, 42, 0.72) 0deg,
            var(--gauge-accent) calc(var(--animated-progress, 0deg) * 0.48),
            var(--gauge-hot) var(--animated-progress, 0deg),
            rgba(219, 228, 239, 0.92) var(--animated-progress, 0deg),
            rgba(219, 228, 239, 0.92) 270deg,
            transparent 270deg 360deg
        );
    filter: drop-shadow(0 12px 18px rgba(7, 21, 38, 0.18));
}

.pricing.animate-gauges .speed-ring,
.internet-package.animate-gauge .speed-ring {
    animation:
        speedSweep 2.6s cubic-bezier(0.16, 1.02, 0.22, 1) forwards,
        gaugePop 2.6s cubic-bezier(0.16, 1.02, 0.22, 1) forwards;
}

.pricing.animate-gauges .speed-gauge-glow,
.internet-package.animate-gauge .speed-gauge-glow {
    animation: gaugeGlowPulse 2.6s ease-out forwards;
}

.internet-package.animate-gauge-hover .speed-ring {
    animation:
        speedSweepHover 2s cubic-bezier(0.16, 1.02, 0.22, 1) forwards,
        gaugePopHover 2s cubic-bezier(0.16, 1.02, 0.22, 1) forwards;
}

.internet-package.animate-gauge-hover .speed-gauge-glow {
    animation: gaugeGlowPulseHover 2s ease-out forwards;
}

.internet-package.animate-gauge-hover .speed-needle {
    animation: needleSweepHover 2s cubic-bezier(0.16, 1.02, 0.22, 1) forwards;
}

.speed-ring::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(244, 248, 251, 0.92)
        ),
        #fff;
    box-shadow:
        inset 0 0 0 1px rgba(13, 110, 253, 0.08),
        inset 0 -12px 24px rgba(7, 21, 38, 0.06),
        0 9px 18px rgba(7, 21, 38, 0.1);
}

.speed-ring::after {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px dashed rgba(7, 21, 38, 0.12);
    background: radial-gradient(
        circle,
        rgba(32, 201, 151, 0.08),
        transparent 62%
    );
}

.speed-needle {
    position: absolute;
    z-index: 5;
    width: 5px;
    height: 54px;
    left: 50%;
    top: 37px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--navy), var(--gauge-accent));
    box-shadow: 0 6px 14px rgba(14, 165, 233, 0.26);
    transform-origin: 50% 54px;
    transform: translateX(-50%) rotate(var(--needle-angle));
}

.pricing.animate-gauges .speed-needle,
.internet-package.animate-gauge .speed-needle {
    animation: needleSweep 2.6s cubic-bezier(0.16, 1.02, 0.22, 1) forwards;
}

.pricing.animate-gauges .internet-package.animate-gauge-hover .speed-needle,
.internet-package.animate-gauge.animate-gauge-hover .speed-needle,
.internet-package.animate-gauge-hover .speed-needle {
    animation: needleSweepHover 2s cubic-bezier(0.16, 1.02, 0.22, 1) forwards;
}

.speed-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 76px;
    color: #071526;
    gap: 0;
    line-height: 1;
    text-align: center;
    transform: translateY(25px);
}

.speed-copy span {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.speed-copy-label {
    width: 100%;
    color: #64748b;
    transform: translateY(-33px);
}

.speed-copy .speed-copy-unit {
    width: 100%;
    color: var(--gauge-accent);
    letter-spacing: 0.02em;
    text-transform: none;
    transform: translateY(10px);
}

.speed-copy strong {
    display: block;
    width: 100%;
    margin-top: -9px;
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-align: center;
    text-shadow: 0 7px 16px rgba(13, 110, 253, 0.14);
    transform: translateY(8px);
}

.internet-package h3 {
    margin: 0 0 5px;
    color: #92989f;
    font-size: 1.4rem;
    font-weight: 700;
}

.internet-package.is-best h3 {
    color: #0d9488;
}

.device-note {
    min-height: 30px;
    margin: 0 auto 12px;
    color: #071526;
    font-size: 0.5rem;
    line-height: 1.15;
    white-space: nowrap;
}

.internet-package ul {
    display: grid;
    gap: 7px;
    margin: 0 0 18px;
    padding: 0;
    text-align: left;
    list-style: none;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.32;
}

.internet-package li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.internet-package li i {
    color: #0ea5e9;
    font-size: 0.86rem;
    line-height: 1.32;
}

.package-price {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, auto) auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 0 14px;
    min-height: 72px;
    padding: 12px 10px 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    color: #071526;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(186, 230, 253, 0.42),
            transparent 58%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.74) 0%,
            rgba(248, 250, 252, 0.58) 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 10px 24px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px) saturate(130%);
}

.package-price span {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
}

.package-price strong {
    color: #071526;
    font-size: clamp(1.85rem, 2.8vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.internet-package.is-best .package-price {
    border-color: rgba(13, 148, 136, 0.28);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(153, 246, 228, 0.38),
            transparent 58%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.76) 0%,
            rgba(240, 253, 250, 0.62) 100%
        );
}

.internet-package.is-best .package-price strong {
    color: #0d9488;
}

.package-button {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 46px;
    overflow: hidden;
    border-radius: 12px;
    background:
        linear-gradient(135deg, #334155, #0f172a),
        #0f172a;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 12px 22px rgba(15, 23, 42, 0.18);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.package-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12),
            transparent 42%,
            rgba(14, 165, 233, 0.2)
        );
}

.package-button::after {
    content: "";
    position: absolute;
    top: -45%;
    bottom: -45%;
    left: -55%;
    z-index: -1;
    width: 38%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.36),
        transparent
    );
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

.package-button i {
    font-size: 1.22rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.package-button:hover {
    transform: translateY(-2px);
    background:
        linear-gradient(135deg, #0f172a, #020617),
        #0f172a;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 16px 28px rgba(15, 23, 42, 0.24);
}

.package-button:hover::after {
    left: 120%;
}

.package-button:hover i {
    transform: translateX(3px);
}

.internet-package.is-best .package-button {
    background:
        linear-gradient(135deg, #0d9488, #0f766e),
        #0d9488;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 14px 26px rgba(13, 148, 136, 0.26);
}

.internet-package.is-best .package-button:hover {
    background:
        linear-gradient(135deg, #0f766e, #115e59),
        #0f766e;
}

@keyframes speedSweep {
    0% {
        --animated-progress: 0deg;
    }
    58% {
        --animated-progress: calc(var(--gauge-progress) + 28deg);
    }
    76% {
        --animated-progress: calc(var(--gauge-progress) - 12deg);
    }
    88% {
        --animated-progress: calc(var(--gauge-progress) + 5deg);
    }
    100% {
        --animated-progress: var(--gauge-progress);
    }
}

@keyframes speedSweepHover {
    0% {
        --animated-progress: 0deg;
    }
    58% {
        --animated-progress: calc(var(--gauge-progress) + 24deg);
    }
    78% {
        --animated-progress: calc(var(--gauge-progress) - 10deg);
    }
    90% {
        --animated-progress: calc(var(--gauge-progress) + 4deg);
    }
    100% {
        --animated-progress: var(--gauge-progress);
    }
}

@keyframes gaugePop {
    0% {
        transform: rotate(-10deg) scale(0.9);
        filter: drop-shadow(0 6px 10px rgba(7, 21, 38, 0.12));
    }
    50% {
        transform: rotate(3deg) scale(1.1);
        filter: drop-shadow(0 20px 28px rgba(13, 110, 253, 0.28));
    }
    72% {
        transform: rotate(-2deg) scale(0.98);
    }
    88% {
        transform: rotate(1deg) scale(1.02);
    }
    100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 12px 18px rgba(7, 21, 38, 0.18));
    }
}

@keyframes gaugePopHover {
    0% {
        transform: rotate(-8deg) scale(0.94);
        filter: drop-shadow(0 6px 10px rgba(7, 21, 38, 0.12));
    }
    52% {
        transform: rotate(2deg) scale(1.08);
        filter: drop-shadow(0 18px 26px rgba(13, 110, 253, 0.26));
    }
    76% {
        transform: rotate(-1deg) scale(0.98);
    }
    90% {
        transform: rotate(0.5deg) scale(1.01);
    }
    100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 12px 18px rgba(7, 21, 38, 0.18));
    }
}

@keyframes needleSweep {
    0% {
        transform: translateX(-50%) rotate(-135deg);
    }
    58% {
        transform: translateX(-50%) rotate(calc(var(--needle-angle) + 28deg));
    }
    76% {
        transform: translateX(-50%) rotate(calc(var(--needle-angle) - 12deg));
    }
    88% {
        transform: translateX(-50%) rotate(calc(var(--needle-angle) + 5deg));
    }
    100% {
        transform: translateX(-50%) rotate(var(--needle-angle));
    }
}

@keyframes needleSweepHover {
    0% {
        transform: translateX(-50%) rotate(-135deg);
    }
    58% {
        transform: translateX(-50%) rotate(calc(var(--needle-angle) + 24deg));
    }
    78% {
        transform: translateX(-50%) rotate(calc(var(--needle-angle) - 10deg));
    }
    90% {
        transform: translateX(-50%) rotate(calc(var(--needle-angle) + 4deg));
    }
    100% {
        transform: translateX(-50%) rotate(var(--needle-angle));
    }
}

@keyframes gaugeGlowPulse {
    0% {
        opacity: 0.18;
        transform: translateY(12px) scale(0.72);
    }
    48% {
        opacity: 1;
        transform: translateY(8px) scale(1.28);
    }
    78% {
        opacity: 0.88;
        transform: translateY(8px) scale(1.06);
    }
    100% {
        opacity: 0.78;
        transform: translateY(8px) scale(1);
    }
}

@keyframes gaugeGlowPulseHover {
    0% {
        opacity: 0.18;
        transform: translateY(10px) scale(0.78);
    }
    50% {
        opacity: 1;
        transform: translateY(8px) scale(1.24);
    }
    78% {
        opacity: 0.86;
        transform: translateY(8px) scale(1.06);
    }
    100% {
        opacity: 0.78;
        transform: translateY(8px) scale(1);
    }
}

@keyframes navArrive {
    from {
        opacity: 0;
        transform: translate(-50%, -18px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes navLeftArrive {
    from {
        opacity: 0;
        transform: translateX(-34px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes navRightArrive {
    from {
        opacity: 0;
        transform: translateX(34px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFromTop {
    from {
        opacity: 0;
        transform: translateY(-42px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFromBottom {
    from {
        opacity: 0;
        transform: translateY(42px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideFade {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }
    8%,
    33% {
        opacity: 1;
    }
    42%,
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.coverage {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 24px;
}

.coverage::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 calc(50% - 50vw);
    background:
        radial-gradient(
            circle at 18% 28%,
            rgba(34, 211, 238, 0.12),
            transparent 34%
        ),
        linear-gradient(180deg, #eef7fb 0%, #f5fbfd 30%, #ffffff 100%);
}

.coverage-copy {
    padding: 18px 0;
}

.map-card {
    min-height: 430px;
    padding: 10px;
}

.map-card iframe {
    width: 100%;
    height: 430px;
    border: 0;
    border-radius: 20px;
    display: block;
}

.contact {
    padding-top: 88px;
}

.contact-card {
    text-align: center;
    padding: clamp(28px, 5vw, 56px);
    background:
        radial-gradient(
            circle at 24% 0,
            rgba(255, 255, 255, 0.9),
            transparent 34%
        ),
        radial-gradient(
            circle at 76% 10%,
            rgba(186, 230, 253, 0.36),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.78),
            rgba(248, 250, 252, 0.58) 48%,
            rgba(226, 232, 240, 0.64)
        );
}

.contact-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.76),
            rgba(248, 250, 252, 0.5)
        );
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: var(--navy);
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 22px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px) saturate(130%);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.contact-actions a:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 14px 28px rgba(15, 23, 42, 0.12);
}

.contact-actions i {
    color: var(--blue);
}

.coverage .btn-primary,
.contact-register-btn {
    border-color: rgba(8, 145, 178, 0.62);
    background:
        linear-gradient(
            135deg,
            rgba(8, 145, 178, 0.95),
            rgba(13, 148, 136, 0.94) 48%,
            rgba(21, 128, 61, 0.92)
        ),
        #0891b2;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 16px 34px rgba(8, 145, 178, 0.24);
}

.coverage .btn-primary:hover,
.contact-register-btn:hover {
    border-color: rgba(20, 184, 166, 0.78);
    background:
        linear-gradient(
            135deg,
            rgba(14, 116, 144, 0.98),
            rgba(15, 118, 110, 0.96) 48%,
            rgba(22, 101, 52, 0.95)
        ),
        #0e7490;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 18px 40px rgba(8, 145, 178, 0.32);
}

.contact-register-btn {
    margin-top: 24px;
}

.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.site-footer img {
    height: 28px;
}

.legal-page {
    min-height: 100svh;
    padding: 128px 16px 72px;
    background:
        radial-gradient(
            circle at 20% 0,
            rgba(34, 211, 238, 0.14),
            transparent 30%
        ),
        linear-gradient(180deg, #f4f8fb 0, #ffffff 100%);
}

.legal-card {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.09);
}

.legal-card h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.legal-card h2 {
    margin: 34px 0 12px;
    font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
    color: #334155;
    line-height: 1.75;
}

.legal-card ul {
    padding-left: 22px;
}

.legal-card a {
    color: var(--blue);
    font-weight: 800;
}

.legal-updated {
    color: var(--muted);
}

.legal-card pre {
    padding: 14px 16px;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    overflow-x: auto;
}

@media (max-width: 880px) {
    html {
        scroll-padding-top: 24px;
    }

    .section,
    .coverage {
        scroll-margin-top: 24px;
    }

    .site-nav {
        top: 10px;
        border-radius: 26px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .brand {
        min-height: 42px;
    }

    .brand img {
        height: 36px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-member-icon {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    .site-nav.is-open .nav-links {
        display: flex;
    }

    .nav-links a {
        text-align: center;
    }

    .nav-links .nav-member-link {
        justify-content: center;
        order: -1;
    }

    .main-hero {
        min-height: 640px;
    }

    .main-hero::before,
    .hero-slideshow,
    .hero-overlay {
        inset: calc(var(--hero-progress, 0) * 10px)
            calc(var(--hero-progress, 0) * 10px)
            calc(var(--hero-progress, 0) * 16svh);
        border-radius: calc(var(--hero-progress, 0) * 28px);
    }

    .hero-mode-static.hero-static-server-room .hero-slide-server-room {
        background-position: 78% center;
    }

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

    .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
    }

    .feature-card img,
    .service-card img,
    .map-card iframe {
        height: 260px;
    }

    .map-card {
        min-height: auto;
    }

    .section,
    .coverage {
        padding: 56px 0;
    }

    .services {
        scroll-margin-top: 56px;
        padding-top: calc(56px - (var(--hero-progress, 0) * 32px));
    }

    .pricing {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .contact {
        padding-top: 56px;
    }
}

@media (max-width: 520px) {
    .section,
    .coverage {
        padding: 44px 0;
    }

    .services {
        scroll-margin-top: 44px;
        padding-top: calc(44px - (var(--hero-progress, 0) * 20px));
    }

    .pricing {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .contact {
        padding-top: 44px;
    }

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

    .hero-title {
        font-size: clamp(1.72rem, 10.4vw, 2.68rem);
    }

    .hero-lead {
        font-size: clamp(0.92rem, 4.4vw, 1.08rem);
        line-height: 1.42;
    }

    .hero-member-link {
        font-size: 0.86rem;
    }

    .speed-gauge {
        display: grid;
        visibility: visible;
        opacity: 1;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost,
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
    }

    .pricing {
        padding-left: 14px;
        padding-right: 14px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .site-footer img {
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-mode-slideshow .hero-slide {
        animation: none !important;
        opacity: 0;
        transform: scale(1);
    }

    .hero-mode-slideshow .hero-slide-dark {
        opacity: 1;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
