
:root {
    --navy-950: #001328;
    --navy-900: #002143;
    --navy-850: #062d58;
    --blue-700: #0056b8;
    --blue-600: #0872d1;
    --blue-500: #0c8ee9;
    --cyan: #19c5ff;
    --cyan-soft: #91e6ff;
    --white: #ffffff;
    --surface: #f4f8fc;
    --surface-2: #eaf3fb;
    --text: #0c2442;
    --muted: #66758b;
    --border: rgba(12, 48, 91, .13);
    --shadow: 0 24px 70px rgba(0, 33, 67, .15);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

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

.topbar {
    color: rgba(255,255,255,.76);
    background: var(--navy-950);
    font-size: 12px;
}

.topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-links { display: flex; gap: 24px; }
.topbar a:hover { color: var(--white); }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 184px;
    max-height: 72px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #294563;
    font-size: 13px;
    font-weight: 750;
}

.main-nav > a {
    position: relative;
}

.main-nav > a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan));
    transition: transform .25s ease;
}

.main-nav > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-2);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--navy-900);
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-sm {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 12px;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--cyan));
    box-shadow: 0 16px 34px rgba(0, 105, 199, .25);
}

.button-primary:hover {
    box-shadow: 0 20px 42px rgba(0, 105, 199, .34);
}

.button-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.06);
}

.button-outline:hover { background: rgba(255,255,255,.12); }

.button-white {
    color: var(--navy-900);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 24, 48, .18);
}

.button-plan {
    width: 100%;
    color: var(--navy-900);
    border-color: var(--border);
    background: var(--surface);
}

.button-full { width: 100%; }

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 10%, rgba(18, 123, 226, .24), transparent 30%),
        linear-gradient(135deg, #00162f 0%, #00336a 52%, #01244a 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .23;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
}

.hero-glow-a {
    top: 10%;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,157,255,.26), transparent 68%);
}

.hero-glow-b {
    right: 25%;
    bottom: -100px;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgba(26,197,255,.18), transparent 70%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .92fr;
    gap: 74px;
    padding-block: 82px 96px;
}

.eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.055);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
}

.status-dot,
.network-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #54f2b1;
    box-shadow: 0 0 0 5px rgba(84,242,177,.1), 0 0 15px rgba(84,242,177,.8);
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px, 5.2vw, 73px);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #57caff, #e1f7ff);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy > p {
    max-width: 660px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-metrics {
    display: flex;
    gap: 34px;
    margin-top: 44px;
    padding-top: 27px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-metrics div { display: flex; flex-direction: column; }
.hero-metrics strong { font-size: 25px; line-height: 1; }
.hero-metrics span { margin-top: 8px; color: rgba(255,255,255,.52); font-size: 11px; }

.hero-visual { position: relative; }

.hero-image-card {
    min-height: 540px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 34px;
    background: rgba(255,255,255,.05);
    box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.hero-image-card > img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,19,40,.65), transparent 50%);
}

.network-status {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    background: rgba(0,20,43,.76);
    backdrop-filter: blur(12px);
}

.network-status div { flex: 1; display: flex; flex-direction: column; }
.network-status strong { font-size: 12px; }
.network-status small { color: rgba(255,255,255,.54); font-size: 9px; }
.network-status b { color: #54f2b1; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(0,24,52,.83);
    box-shadow: 0 20px 45px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}

.floating-card-a { top: 46px; left: -42px; }
.floating-card-b { top: 160px; right: -35px; }

.floating-card > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--navy-950);
    background: linear-gradient(135deg, #72d9ff, #18bfff);
    font-weight: 950;
}

.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: 10px; }
.floating-card small { color: rgba(255,255,255,.52); font-size: 8px; }

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

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

.trust-grid div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 25px;
    border-right: 1px solid var(--border);
}

.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { font-size: 13px; }
.trust-grid span { margin-top: 4px; color: var(--muted); font-size: 10px; }

.section { padding-block: 110px; }

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    margin-bottom: 48px;
}

.section-heading.centered {
    max-width: 780px;
    display: block;
    margin-inline: auto;
    margin-bottom: 48px;
    text-align: center;
}

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.section-kicker.light { color: #85ddff; }

.section-heading h2,
.about-copy h2,
.coverage-copy h2,
.commitment-card h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.section-heading p,
.about-copy > p,
.coverage-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.section-heading.centered p { margin: 14px auto 0; }

.plans-section {
    background:
        radial-gradient(circle at 80% 10%, rgba(16,143,233,.08), transparent 30%),
        var(--surface);
}

.broadband-grid {
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-inline: auto;
}

.plan-card {
    min-height: 470px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 28px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0,33,67,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.plan-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 65px rgba(0,33,67,.13);
}

.plan-card.featured {
    color: var(--white);
    border-color: transparent;
    background:
        radial-gradient(circle at 85% 7%, rgba(42,205,255,.26), transparent 25%),
        linear-gradient(150deg, #00336b, #001a38);
    box-shadow: 0 27px 65px rgba(0,33,67,.23);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--navy-950);
    background: #77ddff;
    font-size: 8px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.plan-label {
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.featured .plan-label { color: #89dfff; }

.plan-card h3 {
    margin: 23px 0 0;
    font-size: 62px;
    line-height: 1;
    letter-spacing: -.05em;
}

.plan-card h3 small { font-size: 17px; letter-spacing: 0; }

.price {
    margin-top: 26px;
    font-size: 35px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.04em;
}

.price sup { top: -.65em; margin-right: 3px; font-size: 12px; }
.price small { margin-left: 3px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0; }
.featured .price small { color: rgba(255,255,255,.53); }

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 30px 0 26px;
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    list-style: none;
    font-size: 12px;
}

.featured ul {
    color: rgba(255,255,255,.68);
    border-color: rgba(255,255,255,.12);
}

.plan-card li::before {
    margin-right: 8px;
    color: var(--blue-500);
    content: "✓";
    font-weight: 950;
}

.featured li::before { color: #74ddff; }
.plan-card .button { margin-top: auto; }
.plans-note { margin: 28px auto 0; color: var(--muted); font-size: 10px; text-align: center; }

.dedicated-section { background: var(--white); }

.dedicated-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.dedicated-card {
    min-height: 245px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f8fbfe);
    box-shadow: 0 14px 32px rgba(0,33,67,.05);
    transition: transform .24s ease, box-shadow .24s ease;
}

.dedicated-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,33,67,.11);
}

.dedicated-card.highlighted {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(145deg, #005ab8, #002c5c);
    box-shadow: 0 22px 50px rgba(0,69,137,.22);
}

.dedicated-card > b {
    position: absolute;
    top: 14px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--navy-950);
    background: #7fe1ff;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.dedicated-card > span { color: var(--blue-600); font-size: 23px; font-weight: 950; }
.dedicated-card.highlighted > span { color: #8ce5ff; }
.dedicated-card > strong { margin-top: 17px; font-size: 22px; }
.dedicated-card > small { color: var(--muted); font-size: 9px; }
.dedicated-card.highlighted > small { color: rgba(255,255,255,.5); }

.dedicated-card button {
    margin-top: 23px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    color: var(--blue-700);
    background: var(--surface-2);
    font-size: 10px;
    font-weight: 900;
}

.dedicated-card.highlighted button {
    color: var(--navy-950);
    background: var(--white);
}

.dedicated-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 35px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
}

.dedicated-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.dedicated-benefits > div > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--blue-600);
    background: var(--white);
    font-weight: 900;
}

.dedicated-benefits p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.dedicated-benefits strong { color: var(--text); font-size: 11px; }

.about-section { background: var(--surface); }

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .92fr 1.08fr;
    gap: 80px;
}

.about-visual {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 50% 20%, rgba(32,190,255,.22), transparent 28%),
        linear-gradient(145deg, #003a77, #00152d);
    box-shadow: var(--shadow);
}

.about-visual::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
}

.about-logo-panel {
    position: relative;
    z-index: 2;
    width: 78%;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 25px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 26px 65px rgba(0,0,0,.25);
}

.about-logo-panel img { width: 100%; }
.about-logo-panel span {
    display: block;
    margin-top: 13px;
    color: #405875;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.about-stat {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    color: var(--white);
    background: rgba(0,20,43,.8);
    box-shadow: 0 15px 35px rgba(0,0,0,.24);
    backdrop-filter: blur(10px);
}

.about-stat-a { top: 28px; left: 25px; }
.about-stat-b { right: 25px; bottom: 28px; }
.about-stat strong { font-size: 20px; }
.about-stat span { color: rgba(255,255,255,.5); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }

.about-copy > p { margin-top: 19px; }

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    margin-top: 33px;
}

.about-features > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.about-features > div > span {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--blue-600);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,33,67,.07);
    font-weight: 900;
}

.about-features p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.about-features strong { color: var(--text); font-size: 11px; }

.coverage-section {
    position: relative;
    overflow: hidden;
    padding-block: 105px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 12%, rgba(25,197,255,.25), transparent 27%),
        linear-gradient(135deg, #00152e, #004486);
}

.coverage-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .16;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 46px 46px;
}

.coverage-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.coverage-copy > p {
    margin-top: 20px;
    color: rgba(255,255,255,.68);
}

.coverage-copy .button { margin-top: 30px; }

.coverage-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 27px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 35px 75px rgba(0,0,0,.3);
    backdrop-filter: blur(12px);
}

.coverage-search {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.coverage-search > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--navy-950);
    background: #7be0ff;
    font-weight: 950;
}

.coverage-search div { display: flex; flex-direction: column; }
.coverage-search strong { font-size: 12px; }
.coverage-search small { color: rgba(255,255,255,.5); font-size: 9px; }

.coverage-map {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(35deg, transparent 45%, rgba(255,255,255,.025) 45% 55%, transparent 55%),
        rgba(0,25,57,.65);
}

.map-line {
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
}

.line-a { top: 44%; left: -10%; width: 120%; height: 11px; transform: rotate(17deg); }
.line-b { top: -15%; left: 54%; width: 11px; height: 135%; transform: rotate(35deg); }
.line-c { top: 15%; left: -20%; width: 130%; height: 8px; transform: rotate(-27deg); }

.coverage-zone {
    position: absolute;
    border: 1px solid rgba(85,215,255,.45);
    border-radius: 46% 54% 61% 39%;
    background: rgba(85,215,255,.09);
    box-shadow: inset 0 0 40px rgba(85,215,255,.08);
}

.zone-a { top: 11%; left: 12%; width: 42%; height: 49%; transform: rotate(-9deg); }
.zone-b { right: 8%; bottom: 9%; width: 43%; height: 43%; transform: rotate(13deg); }

.map-pin {
    position: absolute;
    top: 49%;
    left: 54%;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    transform: translate(-50%,-50%) rotate(-45deg);
    border: 8px solid rgba(255,255,255,.09);
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, #0791eb, #61dcff);
    box-shadow: 0 0 0 16px rgba(54,198,255,.09), 0 16px 35px rgba(0,0,0,.3);
}

.map-pin span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
}

.coverage-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.coverage-result > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--navy-950);
    background: #54f2b1;
    font-weight: 950;
}

.coverage-result div { display: flex; flex-direction: column; }
.coverage-result strong { font-size: 11px; }
.coverage-result small { color: rgba(255,255,255,.48); font-size: 9px; }

.commitment-section { background: var(--surface); }

.commitment-card {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    padding: 42px;
    border-radius: 26px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 20%, rgba(39,200,255,.23), transparent 25%),
        linear-gradient(135deg, #00244b, #0051a3);
    box-shadow: var(--shadow);
}

.commitment-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 22px;
    color: #8fe8ff;
    background: rgba(255,255,255,.06);
    font-size: 30px;
}

.commitment-card p { margin: 11px 0 0; color: rgba(255,255,255,.64); }

.site-footer {
    color: rgba(255,255,255,.62);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 55px;
    padding-block: 65px;
}

.footer-brand img {
    width: 205px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.95);
}

.footer-brand p { max-width: 310px; margin: 20px 0 0; font-size: 12px; }

.footer-grid h3 {
    margin: 0 0 17px;
    color: var(--white);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 11px;
}

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

.footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.38);
    font-size: 9px;
}

.modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active { display: flex; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,14,30,.78);
    backdrop-filter: blur(10px);
}

.modal-dialog {
    width: min(100%, 570px);
    max-height: calc(100vh - 48px);
    position: relative;
    z-index: 2;
    overflow: auto;
    padding: 38px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 40px 100px rgba(0,0,0,.38);
}

.modal-close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--muted);
    background: var(--surface);
    font-size: 22px;
}

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-kicker {
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.modal h2 {
    margin: 9px 35px 9px 0;
    font-size: 30px;
    line-height: 1.17;
    letter-spacing: -.03em;
}

.modal p { color: var(--muted); font-size: 12px; }

.modal-product {
    width: fit-content;
    margin: 14px 0 24px !important;
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--blue-700) !important;
    background: rgba(8,114,209,.09);
    font-size: 10px !important;
    font-weight: 850;
}

.modal label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 17px;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.modal input,
.modal textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: 0;
    background: var(--surface);
}

.modal input { height: 51px; padding: 0 14px; }

.modal textarea {
    min-height: 190px;
    resize: vertical;
    padding: 14px;
    color: #40526a;
    font-size: 11px;
    line-height: 1.6;
}

.modal input:focus,
.modal textarea:focus {
    border-color: rgba(8,114,209,.55);
    box-shadow: 0 0 0 4px rgba(8,114,209,.08);
}

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

.website-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.human-check {
    display: grid !important;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 11px !important;
    margin: 4px 0 18px !important;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    cursor: pointer;
}

.human-check input {
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px;
    accent-color: var(--blue-600);
}

.human-check span {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
}

.human-check strong { color: var(--text); font-size: 11px; }

.form-error {
    min-height: 18px;
    margin: -7px 0 12px !important;
    color: #b4154f !important;
    font-size: 10px !important;
    font-weight: 800;
}

.modal-back {
    margin: 0 0 15px;
    padding: 0;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    font-weight: 850;
}

.success-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--navy-950);
    background: #54f2b1;
    font-size: 27px;
    font-weight: 950;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.button-ghost-dark {
    color: var(--text);
    border-color: var(--border);
    background: var(--white);
}

.toast {
    position: fixed;
    z-index: 150;
    right: 24px;
    bottom: 24px;
    padding: 12px 16px;
    transform: translateY(20px);
    pointer-events: none;
    opacity: 0;
    border-radius: 10px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: var(--shadow);
    font-size: 11px;
    transition: opacity .2s ease, transform .2s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }

.reveal {
    transform: translateY(24px);
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible { transform: translateY(0); opacity: 1; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1080px) {
    .main-nav { gap: 17px; }
    .dedicated-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .header-inner { min-height: 76px; }
    .brand img { width: 155px; max-height: 61px; }
    .menu-toggle { display: block; }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255,255,255,.99);
        box-shadow: 0 25px 65px rgba(0,33,67,.18);
    }

    .main-nav.open { display: flex; }
    .main-nav > a { padding: 12px; }
    .main-nav > a::after { display: none; }
    .main-nav .button { margin-top: 8px; }

    .hero { min-height: auto; }

    .hero-layout,
    .section-heading,
    .about-grid,
    .coverage-layout,
    .commitment-card {
        grid-template-columns: 1fr;
    }

    .hero-layout { padding-block: 70px 80px; }
    .hero-visual { max-width: 640px; width: 100%; margin-inline: auto; }
    .section-heading { gap: 18px; }
    .about-grid { gap: 48px; }
    .coverage-layout { gap: 45px; }
    .commitment-card { text-align: center; }
    .commitment-icon { margin-inline: auto; }
    .commitment-card .button { width: fit-content; margin-inline: auto; }
    .dedicated-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding-block: 78px; }
    .hero-layout { padding-block: 55px 68px; }
    .hero h1 { font-size: 43px; }
    .hero-copy > p { font-size: 16px; }

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

    .hero-actions .button,
    .modal-actions .button {
        width: 100%;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 13px;
    }

    .hero-metrics strong { font-size: 20px; }
    .hero-image-card, .hero-image-card > img { min-height: 420px; height: 420px; }
    .floating-card { display: none; }

    .trust-grid,
    .broadband-grid,
    .dedicated-grid,
    .dedicated-benefits,
    .about-features,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        min-height: 80px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-grid div:last-child { border-bottom: 0; }
    .plan-card { min-height: 430px; }
    .dedicated-card { min-height: 210px; }
    .about-visual { min-height: 420px; }
    .about-logo-panel { width: 86%; padding: 24px; }
    .coverage-map { min-height: 310px; }
    .commitment-card { padding: 30px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .modal { padding: 10px; }
    .modal-dialog { padding: 32px 20px 22px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { transform: none; opacity: 1; }
}
