* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07111f;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 17, 31, 0.95);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
    min-height: 72px;

    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 18px;
    white-space: nowrap;
}

.logo span {
    color: #20b8ff;
}

nav {
    display: flex;
    gap: 25px;
    margin-left: auto;
}

nav a {
    color: #b8c7d9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

nav a:hover {
    color: #20b8ff;
}

.whatsapp-small {
    background: #13b96b;
    color: white;

    padding: 10px 16px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(32,184,255,0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #07111f,
            #0b1e34
        );
}

.hero-content {
    display: grid;

    grid-template-columns:
        1.3fr
        0.7fr;

    gap: 70px;

    align-items: center;
}

.badge {
    display: inline-block;

    padding: 7px 13px;

    border-radius: 30px;

    border: 1px solid rgba(32,184,255,0.35);

    background: rgba(32,184,255,0.08);

    color: #20b8ff;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.hero h1 span {
    color: #20b8ff;
}

.hero-text > p {
    max-width: 620px;

    color: #aebfd2;

    font-size: 18px;

    margin: 25px 0 30px;
}

.buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 13px 20px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 800;
}

.primary {
    background: #20b8ff;

    color: #04101d;
}

.whatsapp {
    background: #13b96b;

    color: white;
}

.internet-card {
    padding: 45px 30px;

    text-align: center;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.3);
}

.wifi-icon {
    font-size: 90px;

    color: #20b8ff;

    margin-bottom: 10px;
}

.internet-card h2 {
    font-size: 28px;
}

.internet-card p {
    color: #9fb0c3;

    margin: 8px 0 25px;
}

.speed {
    color: #8fa5ba;

    font-size: 14px;
}

.speed strong {
    display: block;

    color: #20b8ff;

    font-size: 35px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;

    margin-bottom: 50px;
}

.eyebrow {
    color: #20b8ff;

    font-weight: 900;

    letter-spacing: 2px;

    font-size: 12px;
}

.section-title h2,
.about h2,
.contact h2 {
    font-size: 42px;

    line-height: 1.1;

    margin: 10px 0;
}

.section-title p,
.about p,
.contact p {
    color: #9fb0c3;
}


/* =========================
   PACKAGES
========================= */

.packages {
    background: #081522;
}

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.package {
    position: relative;

    background: #0d1b2d;

    border: 1px solid #1d3046;

    border-radius: 18px;

    padding: 28px 23px;

    transition:
        transform 0.25s,
        border-color 0.25s;
}

.package:hover {
    transform: translateY(-7px);

    border-color: #20b8ff;
}

.package.featured {
    border-color: #20b8ff;

    box-shadow:
        0 20px 50px rgba(32,184,255,0.10);
}

.popular {
    position: absolute;

    right: 16px;

    top: 16px;

    background: #20b8ff;

    color: #04101d;

    font-size: 9px;

    font-weight: 900;

    padding: 4px 7px;

    border-radius: 5px;
}

.package h3 {
    color: #7f94a9;

    font-size: 11px;

    letter-spacing: 2px;
}

.speed-name {
    font-size: 28px;

    font-weight: 900;

    margin-top: 5px;
}

.price {
    font-size: 38px;

    font-weight: 900;

    margin: 20px 0 10px;
}

.price small {
    color: #7f93a9;

    font-size: 12px;

    font-weight: normal;
}

.package p {
    color: #94a8bc;

    font-size: 14px;

    min-height: 75px;
}

.package a {
    display: block;

    margin-top: 18px;

    color: #20b8ff;

    text-decoration: none;

    font-weight: 800;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #0a1728;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}

.about h2 {
    font-size: 45px;
}

.about p {
    margin-top: 20px;

    max-width: 550px;

    font-size: 17px;
}

.features {
    display: grid;

    gap: 15px;
}

.feature {
    display: flex;

    gap: 18px;

    padding: 20px;

    background: #0e1d31;

    border: 1px solid #1b3047;

    border-radius: 14px;
}

.feature > span {
    font-size: 27px;
}

.feature strong {
    font-size: 16px;
}

.feature p {
    margin: 3px 0 0;

    font-size: 13px;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            #0d2a43,
            #07111f
        );
}

.contact-box {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 35px;
}

.contact-buttons {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.contact-buttons .btn {
    text-align: center;
}

.email {
    color: #b8c9da;

    text-align: center;

    text-decoration: none;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top:
        1px solid rgba(255,255,255,0.08);
}

.footer {
    min-height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.footer p {
    color: #71869c;

    font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .internet-card {
        display: none;
    }

    .package-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-box {
        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .nav {
        min-height: 65px;
    }

    nav {
        display: none;
    }

    .whatsapp-small {
        margin-left: auto;
    }

    .hero {
        min-height: 570px;
    }

    .hero h1 {
        font-size: 50px;

        letter-spacing: -2px;
    }

    .section {
        padding: 70px 0;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package.featured {
        transform: none;
    }

    .contact-buttons {
        width: 100%;
    }

    .footer {
        flex-direction: column;

        justify-content: center;

        padding: 25px 0;
    }
}
