:root {
    --bg: #070b1b;
    --bg-soft: #0f1733;
    --card: #111a3a;
    --text: #e9efff;
    --muted: #aab6d8;
    --primary: #5b8cff;
    --secondary: #22d3ee;
    --accent: #7c4dff;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 20px 45px rgba(7, 11, 27, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: radial-gradient(circle at 15% 0%, #1e2f65 0, transparent 45%),
        radial-gradient(circle at 85% 10%, #122f5d 0, transparent 35%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1150px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 11, 27, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: 1.2rem;
}

.brand span {
    color: var(--secondary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--white);
}

.menu-btn {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: linear-gradient(130deg, var(--primary), var(--accent));
    color: #fff;
    padding: 11px 22px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(91, 140, 255, 0.35);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn-block {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 85px 0 65px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(91, 140, 255, 0.18), rgba(34, 211, 238, 0.07)),
        url("../images/bg-pattern.svg") center/cover no-repeat;
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 38px;
    align-items: center;
}

.kicker {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    margin-bottom: 14px;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.hero-content p {
    color: var(--muted);
    margin: 0 0 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.highlights li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 7px 11px;
    border-radius: 9px;
    color: #d8e2ff;
    font-size: 0.9rem;
}

.hero-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.section {
    padding: 78px 0;
}

.section-head {
    text-align: center;
    margin: 0 auto 36px;
    max-width: 690px;
}

.section-head p,
.section-head + p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card {
    background: linear-gradient(160deg, #111a3a, #0f1834);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(91, 140, 255, 0.15);
    margin-bottom: 14px;
}

.icon svg {
    width: 25px;
    fill: var(--secondary);
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.plans {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.plan-card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
}

.plan-card.popular {
    border-color: rgba(34, 211, 238, 0.65);
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(34, 211, 238, 0.25);
}

.tag {
    display: inline-block;
    background: rgba(34, 211, 238, 0.14);
    color: var(--secondary);
    border: 1px solid rgba(34, 211, 238, 0.45);
    border-radius: 99px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.speed {
    color: var(--secondary);
    margin-bottom: 4px;
    font-weight: 600;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.price span {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 500;
}

.plan-card ul {
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--muted);
}

.offer-box {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(124, 77, 255, 0.18));
    border: 1px solid rgba(34, 211, 238, 0.45);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.offer-box h3 {
    margin-bottom: 10px;
}

.offer-box p {
    margin: 0 0 10px;
    color: #dbe6ff;
}

.offer-price {
    color: var(--secondary);
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
}

.about-content p {
    color: var(--muted);
}

.stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.stats div {
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
    border-radius: 12px;
    min-width: 130px;
}

.stats strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary);
}

.stats span {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact {
    position: relative;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(124, 77, 255, 0.2), rgba(34, 211, 238, 0.1)),
        url("../images/contact-bg.svg") center/cover no-repeat;
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-list {
    margin: 18px 0 0;
    padding-left: 0;
    list-style: none;
    color: var(--muted);
}

.contact-list li + li {
    margin-top: 8px;
}

.coverage-box {
    margin-top: 20px;
    background: rgba(10, 15, 35, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 16px;
}

.coverage-box h3 {
    margin: 0 0 10px;
}

.coverage-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.coverage-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.coverage-list li:last-child {
    border-bottom: 0;
}

.status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    line-height: 1;
}

.status.available {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #8ff0ba;
}

.status.coming {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #ffd78a;
}

.contact-form {
    background: rgba(8, 12, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 22px;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #dae5ff;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #101a36;
    color: var(--white);
    border-radius: 10px;
    padding: 11px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(34, 211, 238, 0.45);
    border-color: transparent;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    flex-wrap: wrap;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.show {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 65px;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .menu-btn {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 4%;
        right: 4%;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        border-radius: 12px;
        background: rgba(10, 15, 35, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.11);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav .btn {
        width: 100%;
        margin-top: 4px;
    }

    .card-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
