/* =========================================================
   YALLA M3ANA — GLOBAL
========================================================= */

:root {
    --bg: #050507;
    --bg-2: #09090d;
    --card: rgba(15, 15, 22, 0.78);

    --white: #ffffff;
    --muted: #a4a4b5;

    --green: #00ff88;
    --cyan: #00e5ff;
    --purple: #8b5cf6;
    --pink: #ff2d75;
    --red: #ff1744;
    --orange: #ff7a00;

    --border: rgba(255,255,255,0.09);

    --radius: 22px;

    --font: "Poppins", sans-serif;
    --gaming: "Orbitron", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
}

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


/* =========================================================
   GLOBAL BACKGROUND
========================================================= */

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -20;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,255,136,.07), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(139,92,246,.07), transparent 30%),
        #050507;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    inset: 0;
    opacity: .18;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 50px 50px;

    animation: gridMove 20s linear infinite;
}

.glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
}

.glow-1 {
    background: var(--green);
    top: 10%;
    left: -100px;
}

.glow-2 {
    background: var(--purple);
    right: -100px;
    top: 45%;
}

.glow-3 {
    background: var(--cyan);
    bottom: -150px;
    left: 40%;
}

@keyframes gridMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(50px);
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(5,5,7,.72);
    backdrop-filter: blur(18px);

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

.nav-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--gaming);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-yalla {
    color: var(--green);
}

.logo b {
    color: var(--purple);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;

    padding: 10px 13px;

    color: #aaaaba;

    font-size: 12px;
    font-weight: 600;

    border-radius: 10px;

    transition: .3s ease;
}

.nav-link i {
    margin-right: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255,255,255,.06);
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 3px;

    height: 2px;

    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.menu-toggle {
    display: none;

    width: 43px;
    height: 43px;

    border-radius: 12px;

    color: white;
    background: rgba(255,255,255,.07);

    font-size: 18px;
}


/* =========================================================
   SECTION COMMON
========================================================= */

section {
    position: relative;
    overflow: hidden;
}

.service-section {
    padding: 120px 0;
}

.section-title {
    position: relative;
    z-index: 3;

    text-align: center;

    margin-bottom: 55px;
}

.section-title > span {
    color: var(--green);

    font-family: var(--gaming);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.section-title h2 {
    margin-top: 10px;

    font-family: var(--gaming);
    font-size: clamp(28px, 5vw, 48px);

    line-height: 1.1;
}

.section-title h2 strong {
    color: var(--green);
}

.section-title p {
    margin-top: 14px;

    color: var(--muted);

    font-size: 14px;
}

.section-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 20px;

    font-size: 27px;

    background: rgba(255,255,255,.07);

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

    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}


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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 130px 0 80px;
}

.hero.section-bg {
    background:
        radial-gradient(circle at 15% 50%, rgba(0,255,136,.12), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(139,92,246,.16), transparent 30%),
        linear-gradient(135deg,#050507,#090912 55%,#050507);
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 60px 60px;

    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;

    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(0,255,136,.2);
    background: rgba(0,255,136,.05);

    border-radius: 50px;

    color: var(--green);

    font-family: var(--gaming);
    font-size: 10px;
    letter-spacing: 1px;
}

.live-dot {
    width: 7px;
    height: 7px;

    background: var(--green);
    border-radius: 50%;

    box-shadow: 0 0 15px var(--green);

    animation: pulse 1.5s infinite;
}

.hero h1 {
    margin-top: 25px;

    font-family: var(--gaming);
    font-size: clamp(42px, 6vw, 76px);

    line-height: .98;
    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--purple);
}

.hero h1 strong {
    display: block;
    color: var(--green);
}

.hero p {
    max-width: 600px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 13px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 14px 20px;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary {
    color: #00150b;

    background: var(--green);

    box-shadow:
        0 0 25px rgba(0,255,136,.22);
}

.btn-secondary {
    background: rgba(255,255,255,.06);

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

    color: white;
}

.hero-stats {
    display: flex;
    gap: 35px;

    margin-top: 50px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--gaming);
    font-size: 15px;
}

.hero-stats span {
    color: #777789;
    font-size: 10px;
    margin-top: 4px;
}


/* HERO VISUAL */

.hero-visual {
    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-core {
    position: relative;
    z-index: 5;

    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 30%, #263b32, #080b0b 65%);

    border: 1px solid rgba(0,255,136,.5);

    box-shadow:
        0 0 50px rgba(0,255,136,.15),
        inset 0 0 50px rgba(0,255,136,.06);

    animation: coreFloat 4s ease-in-out infinite;
}

.hero-core span {
    font-family: var(--gaming);
    font-size: 75px;
    font-weight: 800;
    color: var(--green);

    text-shadow:
        0 0 25px rgba(0,255,136,.7);
}

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.orbit-one {
    width: 320px;
    height: 320px;

    animation: spin 14s linear infinite;
}

.orbit-two {
    width: 450px;
    height: 450px;

    border-color: rgba(139,92,246,.12);

    animation: spinReverse 22s linear infinite;
}

.floating-card {
    position: absolute;
    z-index: 8;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    border-radius: 14px;

    background: rgba(12,12,17,.85);

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

    backdrop-filter: blur(12px);

    box-shadow: 0 20px 50px rgba(0,0,0,.4);

    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
}

.floating-card b,
.floating-card small {
    display: block;
}

.floating-card b {
    font-size: 12px;
}

.floating-card small {
    color: #858595;
    font-size: 9px;
}

.card-fire {
    top: 20%;
    left: 4%;
}

.card-fire i {
    color: #ff6a00;
}

.card-insta {
    right: 3%;
    top: 15%;
    animation-delay: .7s;
}

.card-insta i {
    color: #ff3b8d;
}

.card-kick {
    right: 6%;
    bottom: 20%;
    animation-delay: 1.2s;
}

.card-kick i {
    color: var(--green);
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes coreFloat {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {
    50% {
        opacity: .35;
        transform: scale(.7);
    }
}


/* =========================================================
   SECTION BACKGROUNDS
========================================================= */

/* FREE FIRE */

.freefire-section {
    background:
        linear-gradient(rgba(5,5,7,.72),rgba(5,5,7,.9)),
        radial-gradient(circle at 50% 25%,rgba(255,90,0,.25),transparent 35%),
        linear-gradient(135deg,#190b03,#090705 50%,#170603);
}

.freefire-section::before {
    content: "FREE FIRE";

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    font-family: var(--gaming);
    font-size: clamp(70px,15vw,220px);
    font-weight: 800;

    color: rgba(255,100,0,.025);

    white-space: nowrap;
}

.fire-icon {
    color: #ff7a00;
    box-shadow: 0 0 30px rgba(255,90,0,.2);
}


/* INSTAGRAM */

.instagram-section {
    background:
        radial-gradient(circle at 15% 20%,rgba(255,0,120,.13),transparent 30%),
        radial-gradient(circle at 85% 80%,rgba(130,70,255,.14),transparent 35%),
        linear-gradient(135deg,#0d050c,#09070c 50%,#100610);
}

.instagram-icon {
    color: #ff4b9b;
}


/* TIKTOK */

.tiktok-section {
    background:
        radial-gradient(circle at 20% 30%,rgba(0,242,234,.1),transparent 30%),
        radial-gradient(circle at 80% 70%,rgba(255,0,80,.1),transparent 30%),
        linear-gradient(135deg,#020506,#07090c,#030506);
}

.tiktok-icon {
    color: #00f2ea;
}


/* KICK */

.kick-section {
    background:
        radial-gradient(circle at 50% 20%,rgba(83,255,0,.15),transparent 35%),
        radial-gradient(circle at 80% 80%,rgba(0,255,136,.1),transparent 30%),
        linear-gradient(135deg,#031006,#050806 50%,#020c05);
}

.kick-section::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(0,255,100,.025) 0px,
            rgba(0,255,100,.025) 1px,
            transparent 1px,
            transparent 35px
        );

    pointer-events: none;
}

.kick-icon {
    color: #53ff00;
}


/* NETFLIX */

.netflix-section {
    background:
        linear-gradient(rgba(3,3,5,.72),rgba(3,3,5,.94)),
        radial-gradient(circle at 50% 20%,rgba(229,9,20,.25),transparent 40%),
        linear-gradient(135deg,#170204,#080305 50%,#120103);
}

.netflix-section::before {
    content: "N";

    position: absolute;
    right: 5%;
    top: 5%;

    font-family: Arial;
    font-size: 450px;
    font-weight: 900;

    color: rgba(229,9,20,.025);

    line-height: 1;
}

.netflix-icon {
    color: #e50914;
}


/* PROMOTIONS */

.promo-section {
    background:
        radial-gradient(circle at 20% 20%,rgba(139,92,246,.17),transparent 30%),
        radial-gradient(circle at 80% 30%,rgba(0,229,255,.12),transparent 30%),
        radial-gradient(circle at 50% 90%,rgba(255,45,117,.1),transparent 30%),
        linear-gradient(135deg,#08070f,#050508);
}

.promo-icon {
    color: #c084fc;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-grid {
    position: relative;
    z-index: 4;

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

    gap: 16px;

    margin-bottom: 50px;
}

.product-card {
    position: relative;

    padding: 25px 20px;

    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    backdrop-filter: blur(12px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.product-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(255,255,255,.08),
            transparent 70%
        );

    transform: translateX(-100%);

    transition: .7s ease;

    pointer-events: none;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-9px);

    border-color: rgba(0,255,136,.3);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 30px rgba(0,255,136,.05);
}

.product-card.featured {
    border-color: rgba(0,255,136,.3);

    background:
        linear-gradient(
            145deg,
            rgba(0,255,136,.09),
            rgba(255,255,255,.025)
        );
}

.product-card h3 {
    position: relative;
    z-index: 2;

    font-size: 15px;
    margin-top: 9px;
}

.product-icon,
.promo-emoji {
    font-size: 34px;

    margin-bottom: 10px;

    filter: drop-shadow(0 0 12px rgba(255,255,255,.1));
}

.price {
    position: relative;
    z-index: 2;

    margin: 13px 0;

    color: var(--green);

    font-family: var(--gaming);
    font-size: 25px;
    font-weight: 800;
}

.price small {
    font-family: var(--font);
    font-size: 11px;
    color: #aaa;
}

.product-card button {
    position: relative;
    z-index: 5;

    width: 100%;

    padding: 11px;

    border-radius: 11px;

    background: rgba(255,255,255,.07);

    color: white;

    border: 1px solid rgba(255,255,255,.08);

    font-size: 11px;
    font-weight: 700;

    transition: .3s ease;
}

.product-card button:hover {
    background: var(--green);
    color: #00150b;

    box-shadow: 0 0 20px rgba(0,255,136,.25);
}

.popular {
    position: absolute;
    top: 10px;
    right: 10px;

    padding: 4px 8px;

    border-radius: 20px;

    background: rgba(0,255,136,.1);

    color: var(--green);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}

.plan {
    color: #888;

    font-size: 8px;
    letter-spacing: 1.5px;
}

.gift-value {
    color: #aaa;
    font-size: 12px;
}

.promo-tag {
    position: absolute;
    top: 12px;
    left: 12px;

    color: #c084fc;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   SUBTITLE
========================================================= */

.sub-title {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 10px;

    margin: 45px 0 20px;

    font-family: var(--gaming);
    font-size: 14px;
}

.sub-title i {
    color: var(--green);
}


/* =========================================================
   INFO
========================================================= */

.info-box {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px 18px;

    margin-bottom: 25px;

    border-radius: 15px;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
}

.info-box > i {
    color: var(--orange);
    font-size: 20px;
}

.info-box b {
    font-size: 12px;
}

.info-box p {
    margin-top: 3px;
    color: #888;
    font-size: 10px;
}


/* =========================================================
   NETFLIX INTRO
========================================================= */

.netflix-intro {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 20px;

    max-width: 600px;

    margin: 0 auto 45px;

    padding: 20px;

    background: rgba(0,0,0,.35);

    border: 1px solid rgba(229,9,20,.15);

    border-radius: 18px;
}

.netflix-logo {
    width: 55px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Arial;
    font-size: 55px;
    font-weight: 900;

    color: #e50914;

    text-shadow: 0 0 20px rgba(229,9,20,.35);
}

.netflix-intro h3 {
    font-family: var(--gaming);
    font-size: 16px;
}

.netflix-intro p {
    margin-top: 5px;
    color: #888;
    font-size: 11px;
}


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

.contact-section {
    padding: 120px 0;

    background:
        radial-gradient(circle at 50% 0%,rgba(0,255,136,.12),transparent 35%),
        linear-gradient(135deg,#050908,#060608);
}

.contact-content {
    position: relative;
    z-index: 3;

    text-align: center;
}

.contact-content > span {
    color: var(--green);

    font-family: var(--gaming);
    font-size: 10px;
    letter-spacing: 3px;
}

.contact-content h2 {
    margin-top: 10px;

    font-family: var(--gaming);
    font-size: clamp(30px,5vw,50px);
}

.contact-content p {
    max-width: 500px;
    margin: 15px auto 30px;

    color: #888;
    font-size: 13px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;

    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 190px;

    padding: 14px 17px;

    border-radius: 15px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    text-align: left;

    transition: .3s ease;
}

.contact-btn:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.08);
}

.contact-btn i {
    font-size: 25px;
}

.contact-btn strong,
.contact-btn small {
    display: block;
}

.contact-btn strong {
    font-size: 12px;
}

.contact-btn small {
    margin-top: 2px;
    color: #777;
    font-size: 9px;
}

.whatsapp i {
    color: #25d366;
}

.instagram i {
    color: #ff4d9a;
}

.facebook i {
    color: #1877f2;
}


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

footer {
    padding: 25px 0;

    background: #030304;

    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--gaming);
    font-size: 14px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--green);
}

footer p {
    color: #555;
    font-size: 10px;
}

.back-top {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,.06);

    color: var(--green);

    transition: .3s;
}

.back-top:hover {
    background: var(--green);
    color: #000;
}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.78);

    backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    position: relative;

    width: min(470px,100%);

    padding: 30px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(22,22,31,.98),
            rgba(8,8,12,.98)
        );

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

    box-shadow:
        0 40px 100px rgba(0,0,0,.7),
        0 0 50px rgba(0,255,136,.06);

    transform: scale(.88) translateY(25px);

    transition: .35s ease;
}

.modal-overlay.show .order-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border-radius: 10px;

    color: #aaa;

    background: rgba(255,255,255,.06);

    transition: .3s;
}

.modal-close:hover {
    color: white;
    background: rgba(255,255,255,.12);
}

.modal-header {
    text-align: center;
}

.modal-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 12px;

    border-radius: 17px;

    color: var(--green);

    background: rgba(0,255,136,.08);

    border: 1px solid rgba(0,255,136,.15);

    font-size: 20px;
}

.modal-header > span {
    color: var(--green);

    font-family: var(--gaming);
    font-size: 8px;
    letter-spacing: 2px;
}

.modal-header h2 {
    margin-top: 6px;

    font-family: var(--gaming);
    font-size: 20px;
}

.order-summary {
    display: grid;
    gap: 8px;

    margin: 25px 0;

    padding: 15px;

    border-radius: 15px;

    background: rgba(255,255,255,.04);
}

.order-summary div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.order-summary span {
    color: #777;
    font-size: 10px;
}

.order-summary strong {
    font-size: 11px;
    text-align: right;
}

.order-summary .modal-price {
    color: var(--green);

    font-family: var(--gaming);
}

.order-modal > label {
    display: block;

    margin-bottom: 8px;

    color: #bbb;

    font-size: 11px;
    font-weight: 600;
}

.order-modal > input {
    width: 100%;

    padding: 14px;

    outline: none;

    border-radius: 12px;

    color: white;
    background: rgba(255,255,255,.05);

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

    font-size: 12px;

    transition: .3s;
}

.order-modal > input:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(0,255,136,.07);
}

.modal-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 13px 0 18px;

    color: #777;

    font-size: 9px;
    line-height: 1.5;
}

.modal-note i {
    color: #25d366;
    font-size: 17px;
}

.confirm-btn {
    width: 100%;

    padding: 14px;

    border-radius: 13px;

    color: #00150b;
    background: var(--green);

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0,255,136,.15);

    transition: .3s;
}

.confirm-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,255,136,.25);
}

.confirm-btn i {
    margin-right: 7px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   BUTTON RIPPLE
========================================================= */

.ripple {
    position: absolute;

    border-radius: 50%;

    background: rgba(255,255,255,.35);

    transform: scale(0);

    animation: ripple .6s linear;

    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .nav-link {
        padding: 9px 7px;
        font-size: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .hero-container {
        gap: 20px;
    }

}


@media (max-width: 850px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;

        top: 76px;
        left: 4%;
        right: 4%;

        display: none;
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        border-radius: 17px;

        background: rgba(8,8,12,.97);

        border: 1px solid rgba(255,255,255,.08);

        box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 13px;
        font-size: 12px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        max-width: 650px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 400px;
    }

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

}


@media (max-width: 560px) {

    .container {
        width: 90%;
    }

    .service-section {
        padding: 85px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-core {
        width: 140px;
        height: 140px;
    }

    .hero-core span {
        font-size: 55px;
    }

    .orbit-one {
        width: 240px;
        height: 240px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }

    .floating-card {
        transform: scale(.82);
    }

    .card-fire {
        left: -8%;
    }

    .card-insta {
        right: -8%;
    }

    .card-kick {
        right: -4%;
    }

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

    .product-card {
        min-height: 205px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .netflix-intro {
        padding: 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
    }

    .order-modal {
        padding: 23px 18px;
    }

}