﻿*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --deep-blue: #071429;
            --navy: #0D2045;
            --blue-mid: #0F2D5E;
            --blue-light: #1B4080;
            --green: #00D46A;
            --green-dim: #00A855;
            --green-glow: rgba(0, 212, 106, .18);
            --white: #FFFFFF;
            --off-white: #EEF2F9;
            --muted: #8899BB;
            --card-bg: rgba(255, 255, 255, .04);
            --border: rgba(255, 255, 255, .08);
            --font-display: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: var(--font-body);
            background: var(--deep-blue);
            color: var(--white);
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* â”€â”€â”€ NOISE TEXTURE OVERLAY â”€â”€â”€ */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
            opacity: .4;
        }

        /* â”€â”€â”€ NAVBAR â”€â”€â”€ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 900;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(1rem, 4vw, 4rem);
            height: 68px;
            background: rgba(7, 20, 41, .88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: background .3s;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: .5rem;
            text-decoration: none;
            flex-shrink: 0;
        }
        .nav-logo-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--green), #00FFB0);
            border-radius: 8px;
            display: grid;
            place-items: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: .95rem;
            color: var(--deep-blue);
        }
        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--white);
            letter-spacing: -.02em;
            white-space: nowrap;
        }
        .nav-logo-text span {
            color: var(--green);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--muted);
            font-size: .88rem;
            font-weight: 500;
            transition: color .2s;
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--white);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: .7rem;
            flex-shrink: 0;
        }
        .btn-ghost {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--white);
            padding: .48rem 1.1rem;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: .85rem;
            font-weight: 500;
            cursor: pointer;
            transition: border-color .2s, background .2s;
            text-decoration: none;
            white-space: nowrap;
            display: inline-block;
        }
        .btn-ghost:hover {
            border-color: var(--green);
            background: var(--green-glow);
        }

        .btn-primary {
            background: var(--green);
            border: none;
            color: var(--deep-blue);
            padding: .5rem 1.3rem;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: .85rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform .15s, box-shadow .2s;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }
        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(0, 212, 106, .35);
        }

        /* â”€â”€â”€ HAMBURGER â”€â”€â”€ */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 901;
            background: none;
            border: none;
            -webkit-tap-highlight-color: transparent;
            min-width: 44px;
            min-height: 44px;
            align-items: center;
            justify-content: center;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all .3s ease;
            transform-origin: center;
        }
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* â”€â”€â”€ MOBILE MENU â”€â”€â”€ */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, .6);
            z-index: 897;
            opacity: 0;
            transition: opacity .3s;
        }
        .mobile-menu-overlay.open {
            display: block;
            opacity: 1;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: rgba(7, 20, 41, .98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1.2rem clamp(1rem, 4vw, 4rem);
            flex-direction: column;
            gap: .3rem;
            border-bottom: 1px solid var(--border);
            z-index: 898;
            transform: translateY(-10px);
            opacity: 0;
            transition: transform .3s ease, opacity .3s ease;
            max-height: calc(100vh - 68px);
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-menu a {
            text-decoration: none;
            color: var(--muted);
            font-size: 1rem;
            font-weight: 500;
            padding: .7rem .4rem;
            border-bottom: 1px solid var(--border);
            transition: color .2s;
            display: block;
            -webkit-tap-highlight-color: transparent;
        }
        .mobile-menu a:hover,
        .mobile-menu a:active {
            color: var(--white);
        }
        .mobile-menu .mob-cta {
            display: flex;
            gap: .7rem;
            margin-top: .8rem;
            flex-wrap: wrap;
        }
        .mobile-menu .mob-cta a {
            border-bottom: none;
            text-align: center;
            flex: 1;
            min-width: 120px;
            padding: .65rem 1rem;
            border-radius: 8px;
        }

        /* â”€â”€â”€ HERO â”€â”€â”€ */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 110px clamp(1rem, 5vw, 5rem) 70px;
            text-align: center;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
        }
        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 106, .16) 0%, transparent 70%);
            top: -120px;
            left: -160px;
            animation: drift1 12s ease-in-out infinite alternate;
        }
        .orb-2 {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(27, 64, 128, .4) 0%, transparent 70%);
            top: 80px;
            right: -120px;
            animation: drift2 14s ease-in-out infinite alternate;
        }
        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 212, 106, .08) 0%, transparent 70%);
            bottom: 20px;
            left: 35%;
            animation: drift1 10s ease-in-out infinite alternate;
        }
        @keyframes drift1 {
            from {
                transform: translate(0, 0) scale(1);
            }
            to {
                transform: translate(35px, 25px) scale(1.08);
            }
        }
        @keyframes drift2 {
            from {
                transform: translate(0, 0) scale(1);
            }
            to {
                transform: translate(-25px, 18px) scale(1.06);
            }
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            background: rgba(0, 212, 106, .1);
            border: 1px solid rgba(0, 212, 106, .3);
            border-radius: 100px;
            padding: .32rem .9rem;
            font-size: .74rem;
            font-weight: 600;
            color: var(--green);
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            position: relative;
            animation: fadeUp .6s ease both;
        }
        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 1.5s ease infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .4;
                transform: scale(1.5);
            }
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5.5vw, 4.8rem);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -.03em;
            position: relative;
            animation: fadeUp .7s .1s ease both;
        }
        h1 .accent {
            color: var(--green);
        }
        h1 .stroke {
            -webkit-text-stroke: 2px var(--white);
            color: transparent;
        }

        .hero-sub {
            max-width: 580px;
            font-size: clamp(.9rem, 1.8vw, 1.08rem);
            color: var(--muted);
            line-height: 1.7;
            margin: 1.2rem auto 2.2rem;
            font-weight: 300;
            animation: fadeUp .7s .2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: .9rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp .7s .3s ease both;
        }
        .btn-primary-lg {
            background: var(--green);
            color: var(--deep-blue);
            padding: .8rem 2rem;
            border-radius: 10px;
            font-size: .95rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
            transition: transform .15s, box-shadow .2s;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary-lg:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 212, 106, .4);
        }

        .btn-outline-lg {
            background: transparent;
            border: 1.5px solid var(--border);
            color: var(--white);
            padding: .8rem 1.8rem;
            border-radius: 10px;
            font-size: .95rem;
            font-weight: 500;
            cursor: pointer;
            font-family: var(--font-body);
            transition: border-color .2s, background .2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            white-space: nowrap;
        }
        .btn-outline-lg:hover {
            border-color: var(--green);
            background: var(--green-glow);
        }

        .hero-stats {
            display: flex;
            gap: clamp(1.2rem, 3vw, 3rem);
            margin-top: 3.5rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp .7s .4s ease both;
            position: relative;
        }
        .hero-stat {
            text-align: center;
            min-width: 80px;
        }
        .hero-stat strong {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 800;
            color: var(--white);
        }
        .hero-stat strong span {
            color: var(--green);
        }
        .hero-stat small {
            font-size: .75rem;
            color: var(--muted);
            font-weight: 400;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* â”€â”€â”€ MARQUEE â”€â”€â”€ */
        .marquee-wrap {
            overflow: hidden;
            background: rgba(0, 212, 106, .06);
            border-top: 1px solid rgba(0, 212, 106, .12);
            border-bottom: 1px solid rgba(0, 212, 106, .12);
            padding: .75rem 0;
        }
        .marquee-track {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: marquee 26s linear infinite;
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: .45rem;
            font-size: .78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: var(--green);
            white-space: nowrap;
        }
        .marquee-dot {
            width: 4px;
            height: 4px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
        }
        @keyframes marquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        /* â”€â”€â”€ SECTION SHARED â”€â”€â”€ */
        section {
            position: relative;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 4vw, 3rem);
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .09em;
            color: var(--green);
            margin-bottom: .7rem;
        }
        .section-tag::before {
            content: '';
            width: 16px;
            height: 2px;
            background: var(--green);
            border-radius: 2px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3.2vw, 2.8rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -.025em;
        }
        .section-title .accent {
            color: var(--green);
        }

        .section-desc {
            color: var(--muted);
            font-size: clamp(.85rem, 1.4vw, 1rem);
            line-height: 1.7;
            font-weight: 300;
            max-width: 520px;
        }

        /* â”€â”€â”€ SERVICES â”€â”€â”€ */
        .services {
            padding: 80px 0;
        }
        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .services-header .section-desc {
            margin: .8rem auto 0;
        }

        .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
}

        .service-card {
            background: var(--card-bg);
            padding: 1.8rem 1.5rem;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: background .25s, transform .2s, border-color .2s;
            cursor: default;
        }
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--green-glow), transparent);
            opacity: 0;
            transition: opacity .3s;
        }
        .service-card:hover {
            background: rgba(255, 255, 255, .06);
            transform: translateY(-4px);
            border-color: rgba(0, 212, 106, 0.3);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card:hover .svc-icon {
            background: var(--green);
            color: var(--deep-blue);
        }

        .svc-icon {
            width: 44px;
            height: 44px;
            background: rgba(0, 212, 106, .12);
            border-radius: 10px;
            display: grid;
            place-items: center;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            transition: background .25s, color .25s;
            position: relative;
            z-index: 1;
        }
        .svc-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: .35rem;
            position: relative;
            z-index: 1;
        }
        .svc-desc {
            font-size: .83rem;
            color: var(--muted);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* â”€â”€â”€ HOW IT WORKS â”€â”€â”€ */
        .hiw {
            padding: 80px 0;
            background: linear-gradient(to bottom, transparent, rgba(13, 32, 69, .5), transparent);
        }
        .hiw-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .hiw-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }
        .hiw-phone {
            width: 240px;
            height: 460px;
            background: var(--navy);
            border-radius: 32px;
            border: 2px solid var(--border);
            overflow: hidden;
            position: relative;
            box-shadow: 0 28px 70px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
        }
        .hiw-phone::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 5px;
            background: rgba(255, 255, 255, .1);
            border-radius: 3px;
            z-index: 2;
        }
        .phone-screen {
            position: absolute;
            inset: 28px 10px 10px;
            background: linear-gradient(160deg, var(--blue-mid), var(--deep-blue));
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 14px;
        }
        .phone-row {
            background: rgba(255, 255, 255, .04);
            border-radius: 8px;
            height: 40px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 10px;
        }
        .phone-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }
        .phone-line {
            flex: 1;
            height: 7px;
            background: rgba(255, 255, 255, .07);
            border-radius: 3px;
        }
        .phone-pill {
            height: 26px;
            background: var(--green);
            border-radius: 7px;
            margin-top: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .68rem;
            font-weight: 700;
            color: var(--deep-blue);
        }
        .hiw-float {
            position: absolute;
            background: var(--navy);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: .6rem .9rem;
            display: flex;
            align-items: center;
            gap: .5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
            font-size: .72rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .hiw-float-1 {
            top: 30px;
            right: -10px;
        }
        .hiw-float-2 {
            bottom: 60px;
            left: -10px;
        }
        .float-ico {
            font-size: 1rem;
        }
        .float-val {
            font-size: .88rem;
            font-weight: 700;
            color: var(--green);
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .step {
            display: flex;
            gap: 1rem;
        }
        .step-num {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            background: var(--green-glow);
            border: 1px solid rgba(0, 212, 106, .3);
            border-radius: 9px;
            display: grid;
            place-items: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: .85rem;
            color: var(--green);
        }
        .step-title {
            font-family: var(--font-display);
            font-weight: 700;
            margin-bottom: .25rem;
        }
        .step-desc {
            font-size: .84rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* â”€â”€â”€ DATA PLANS SECTION â”€â”€â”€ */
        .data-plans {
            padding: 80px 0;
        }
        .data-plans-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .data-plans-header .section-desc {
            margin: .8rem auto 0;
        }

        /* Provider Buttons */
        .provider-btns {
            display: flex;
            justify-content: center;
            gap: .6rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }
        .provider-btn {
            padding: .7rem 1.6rem;
            border-radius: 100px;
            border: 2px solid var(--border);
            background: var(--card-bg);
            color: var(--muted);
            font-family: var(--font-body);
            font-size: .88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .25s;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
            letter-spacing: .02em;
            min-width: 100px;
        }
        
        /* Network specific hover/active colors */
        .provider-btn[data-provider="mtn"]:hover,
        .provider-btn[data-provider="mtn"].active {
            border-color: #FFCC00;
            color: #000000;
            background: #FFCC00;
            box-shadow: 0 4px 20px rgba(255, 204, 0, .3);
        }
        
        .provider-btn[data-provider="airtel"]:hover,
        .provider-btn[data-provider="airtel"].active {
            border-color: #FF0000;
            color: #FFFFFF;
            background: #FF0000;
            box-shadow: 0 4px 20px rgba(255, 0, 0, .3);
        }
        
        .provider-btn[data-provider="glo"]:hover,
        .provider-btn[data-provider="glo"].active {
            border-color: #009933;
            color: #FFFFFF;
            background: #009933;
            box-shadow: 0 4px 20px rgba(0, 153, 51, .3);
        }
        
        .provider-btn[data-provider="9mobile"]:hover,
        .provider-btn[data-provider="9mobile"].active {
            border-color: #006600;
            color: #FFFFFF;
            background: #006600;
            box-shadow: 0 4px 20px rgba(0, 102, 0, .3);
        }
        
        .provider-btn.active {
            font-weight: 700;
        }

        /* Plan Cards Grid */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            transition: opacity .3s ease;
        }
        .plans-grid.fading {
            opacity: .5;
        }

        .plan-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: transform .25s, border-color .25s;
            display: flex;
            flex-direction: column;
        }
        .plan-card:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 212, 106, .25);
        }
        .plan-card-header {
            padding: 1.2rem 1.3rem;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .9rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: .5rem;
        }
        .plan-card-header .plan-card-icon {
            font-size: 1.2rem;
        }
        .plan-card-header.sme {
            background: rgba(0, 212, 106, .08);
            color: var(--green);
        }
        .plan-card-header.corporate {
            background: rgba(27, 64, 128, .35);
            color: #8BE9FD;
        }
        .plan-card-header.gifting {
            background: rgba(255, 121, 198, .1);
            color: #FF79C6;
        }
        .plan-card-body {
            padding: .8rem 1.3rem 1.3rem;
            display: flex;
            flex-direction: column;
            gap: .6rem;
            flex: 1;
        }
        .plan-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .7rem .8rem;
            background: rgba(255, 255, 255, .02);
            border-radius: 10px;
            transition: background .2s;
            gap: .5rem;
            flex-wrap: wrap;
        }
        .plan-row:hover {
            background: rgba(255, 255, 255, .05);
        }
        .plan-data {
            font-weight: 700;
            font-size: .9rem;
            color: var(--white);
            white-space: nowrap;
        }
        .plan-price {
            font-weight: 700;
            font-size: .95rem;
            color: var(--green);
            white-space: nowrap;
        }
        .plan-validity {
            font-size: .72rem;
            color: var(--muted);
            white-space: nowrap;
        }
        .plan-buy-btn {
            padding: .35rem .8rem;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--muted);
            font-size: .72rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
            white-space: nowrap;
            font-family: var(--font-body);
            -webkit-tap-highlight-color: transparent;
        }
        .plan-buy-btn:hover {
            border-color: var(--green);
            color: var(--green);
            background: var(--green-glow);
        }

        /* â”€â”€â”€ STATS â”€â”€â”€ */
        .stats-band {
            padding: 70px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.5rem;
        }
        .stat-box {
            text-align: center;
            padding: 1.8rem 1.2rem;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 14px;
            position: relative;
            overflow: hidden;
        }
        .stat-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--green), transparent);
        }
        .stat-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            display: block;
        }
        .stat-num .g {
            color: var(--green);
        }
        .stat-label {
            font-size: .78rem;
            color: var(--muted);
            margin-top: .25rem;
            font-weight: 400;
        }

        /* â”€â”€â”€ API SECTION â”€â”€â”€ */
        .api-section {
            padding: 80px 0;
        }
        .api-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .code-window {
            background: #080F1E;
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
        }
        .code-bar {
            background: rgba(255, 255, 255, .03);
            padding: .6rem .9rem;
            display: flex;
            align-items: center;
            gap: .4rem;
            border-bottom: 1px solid var(--border);
        }
        .code-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }
        .code-body {
            padding: 1.3rem;
            font-size: .75rem;
            font-family: 'Courier New', monospace;
            line-height: 1.7;
            overflow-x: auto;
        }
        .c-k {
            color: #FF79C6;
        }
        .c-s {
            color: #F1FA8C;
        }
        .c-n {
            color: #8BE9FD;
        }
        .c-v {
            color: #50FA7B;
        }
        .c-m {
            color: var(--muted);
        }

        /* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
        .testimonials {
            padding: 80px 0;
        }
        .testi-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
        }
        .testi-marquee {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 10px 0;
        }
        .testi-marquee-track {
            display: flex;
            gap: 1.2rem;
            width: max-content;
            animation: testiMarqueeScroll 30s linear infinite;
        }
        .testi-marquee-track:hover {
            animation-play-state: paused;
        }
        .testi-marquee .testi-card {
            width: 320px;
            flex-shrink: 0;
        }
        @keyframes testiMarqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 0.6rem)); }
        }
        .testi-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 1.6rem;
            position: relative;
            overflow: hidden;
            transition: border-color .25s, transform .25s;
        }
        .testi-card:hover {
            border-color: rgba(0, 212, 106, .3);
            transform: translateY(-4px);
        }
        .testi-stars {
            color: var(--green);
            font-size: .85rem;
            margin-bottom: .8rem;
        }
        .testi-text {
            font-size: .86rem;
            color: #BDC9E0;
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: .7rem;
        }
        .testi-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), var(--blue-light));
            display: grid;
            place-items: center;
            font-weight: 700;
            font-size: .85rem;
            color: var(--deep-blue);
            flex-shrink: 0;
        }
        .testi-name {
            font-weight: 600;
            font-size: .85rem;
        }
        .testi-role {
            font-size: .74rem;
            color: var(--muted);
        }

        /* â”€â”€â”€ PRICING â”€â”€â”€ */
        .pricing {
            padding: 80px 0;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.2rem;
            max-width: 920px;
            margin: 0 auto;
        }
        .price-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 2rem;
            position: relative;
            transition: transform .2s;
        }
        .price-card:hover {
            transform: translateY(-4px);
        }
        .price-card.featured {
            background: linear-gradient(160deg, rgba(0, 212, 106, .12), rgba(0, 212, 106, .04));
            border-color: rgba(0, 212, 106, .4);
        }
        .featured-badge {
            position: absolute;
            top: -11px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--green);
            color: var(--deep-blue);
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            padding: .22rem .8rem;
            border-radius: 100px;
            white-space: nowrap;
        }
        .price-plan {
            font-size: .76rem;
            font-weight: 600;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-bottom: .5rem;
        }
        .price-amount {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: .15rem;
        }
        .price-amount small {
            font-size: .82rem;
            font-weight: 400;
            color: var(--muted);
        }
        .price-desc {
            font-size: .82rem;
            color: var(--muted);
            margin-bottom: 1.3rem;
            line-height: 1.5;
        }
        .price-divider {
            height: 1px;
            background: var(--border);
            margin: 1.2rem 0;
        }
        .price-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .65rem;
            margin-bottom: 1.6rem;
        }
        .price-features li {
            display: flex;
            align-items: flex-start;
            gap: .5rem;
            font-size: .83rem;
            color: #BDC9E0;
        }
        .price-features li::before {
            content: 'âœ“';
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: .04rem;
        }

        /* â”€â”€â”€ CTA â”€â”€â”€ */
        .cta-section {
            padding: 80px 0;
        }
        .cta-inner {
            background: linear-gradient(135deg, var(--blue-mid), rgba(0, 212, 106, .12));
            border: 1px solid rgba(0, 212, 106, .2);
            border-radius: 22px;
            padding: clamp(2rem, 5vw, 4.5rem) clamp(1.2rem, 5vw, 4rem);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center top, rgba(0, 212, 106, .14), transparent 60%);
            pointer-events: none;
        }
        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3.5vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -.025em;
            margin-bottom: .9rem;
            position: relative;
        }
        .cta-desc {
            color: var(--muted);
            font-size: .98rem;
            max-width: 480px;
            margin: 0 auto 2.2rem;
            position: relative;
        }
        .cta-actions {
            display: flex;
            gap: .9rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        /* â”€â”€â”€ FOOTER â”€â”€â”€ */
        footer {
            background: rgba(0, 0, 0, .3);
            border-top: 1px solid var(--border);
            padding: 50px clamp(1rem, 4vw, 3rem) 25px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr repeat(3, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand p {
            font-size: .84rem;
            color: var(--muted);
            line-height: 1.7;
            margin-top: .9rem;
            max-width: 260px;
        }
        .footer-socials {
            display: flex;
            gap: .5rem;
            margin-top: 1.2rem;
        }
        .social-btn {
            width: 34px;
            height: 34px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 7px;
            display: grid;
            place-items: center;
            font-size: .85rem;
            text-decoration: none;
            color: var(--muted);
            transition: border-color .2s, color .2s;
        }
        .social-btn:hover {
            border-color: var(--green);
            color: var(--green);
        }
        .footer-col h4 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .85rem;
            margin-bottom: 1rem;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }
        .footer-col ul a {
            text-decoration: none;
            color: var(--muted);
            font-size: .82rem;
            transition: color .2s;
        }
        .footer-col ul a:hover {
            color: var(--white);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: .8rem;
            padding-top: 1.8rem;
            border-top: 1px solid var(--border);
            font-size: .78rem;
            color: var(--muted);
        }
        .footer-bottom a {
            color: var(--muted);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: var(--green);
        }

        /* â”€â”€â”€ FLOATING WIDGETS â”€â”€â”€ */
        .float-widgets {
            position: fixed;
            bottom: 22px;
            right: 18px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            z-index: 99;
            pointer-events: none;
        }

        .float-widgets > * {
            pointer-events: auto;
        }

        .chat-panel {
            width: min(360px, calc(100vw - 28px));
            background: linear-gradient(180deg, rgba(9, 22, 43, .98), rgba(7, 18, 35, .96));
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
            transform: scale(.9) translateY(16px);
            transform-origin: bottom right;
            opacity: 0;
            pointer-events: none;
            transition: transform .3s, opacity .3s;
            backdrop-filter: blur(16px);
        }
        .chat-panel.open {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: all;
        }
        .chat-header {
            background: linear-gradient(90deg, var(--blue-mid), var(--green-dim));
            padding: 1rem 1.1rem;
            display: flex;
            align-items: center;
            gap: .7rem;
        }
        .chat-avatar {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, .15);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .chat-name {
            font-weight: 700;
            font-size: .85rem;
        }
        .chat-status {
            font-size: .7rem;
            color: rgba(255, 255, 255, .7);
            display: flex;
            align-items: center;
            gap: .25rem;
        }
        .chat-status::before {
            content: '';
            width: 5px;
            height: 5px;
            background: #00FF88;
            border-radius: 50%;
        }
        .chat-close {
            margin-left: auto;
            background: none;
            border: none;
            color: rgba(255, 255, 255, .7);
            font-size: 1rem;
            cursor: pointer;
            padding: 4px;
            -webkit-tap-highlight-color: transparent;
        }
        .chat-messages,
        .chat-body {
            padding: .9rem;
            height: 280px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: .7rem;
            background:
                radial-gradient(circle at top left, rgba(39, 201, 63, .08), transparent 32%),
                linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
        }
        .chat-msg {
            max-width: 85%;
        }
        .chat-msg.bot {
            align-self: flex-start;
        }
        .chat-msg.user {
            align-self: flex-end;
        }
        .chat-bubble {
            padding: .68rem .82rem;
            border-radius: 14px;
            font-size: .81rem;
            line-height: 1.58;
        }
        .bot .chat-bubble {
            background: rgba(255, 255, 255, .065);
            color: var(--off-white);
            border: 1px solid rgba(255, 255, 255, .06);
            border-bottom-left-radius: 3px;
        }
        .user .chat-bubble {
            background: var(--green);
            color: var(--deep-blue);
            font-weight: 500;
            border-bottom-right-radius: 3px;
        }
        .chat-time {
            font-size: .65rem;
            color: var(--muted);
            margin-top: .2rem;
            padding: 0 .2rem;
        }

        .chat-quick {
            display: flex;
            flex-wrap: wrap;
            gap: .35rem;
            padding: .2rem .9rem .7rem;
        }
        .quick-btn {
            background: var(--green-glow);
            border: 1px solid rgba(0, 212, 106, .25);
            color: var(--green);
            font-size: .7rem;
            font-weight: 600;
            padding: .28rem .65rem;
            border-radius: 100px;
            cursor: pointer;
            transition: background .2s;
            font-family: var(--font-body);
            -webkit-tap-highlight-color: transparent;
        }
        .quick-btn:hover {
            background: rgba(0, 212, 106, .25);
        }

        .chat-action-row {
            display: flex;
            flex-wrap: wrap;
            gap: .45rem;
            margin-top: .8rem;
        }

        .chat-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: .42rem .82rem;
            border-radius: 999px;
            background: rgba(39, 201, 63, .14);
            border: 1px solid rgba(39, 201, 63, .28);
            color: var(--white);
            text-decoration: none;
            font-size: .74rem;
            font-weight: 700;
            transition: transform .18s, background .18s, border-color .18s;
        }

        .chat-link-btn:hover {
            transform: translateY(-1px);
            background: rgba(39, 201, 63, .22);
            border-color: rgba(39, 201, 63, .4);
        }

        .chat-input-row {
            display: flex;
            gap: .4rem;
            padding: .7rem .9rem .9rem;
            border-top: 1px solid var(--border);
        }
        .chat-input {
            flex: 1;
            background: rgba(255, 255, 255, .05);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: .5rem .7rem;
            color: var(--white);
            font-family: var(--font-body);
            font-size: .8rem;
            outline: none;
            transition: border-color .2s;
            min-width: 0;
        }
        .chat-input::placeholder {
            color: var(--muted);
        }
        .chat-input:focus {
            border-color: rgba(0, 212, 106, .4);
        }
        .chat-send {
            width: 34px;
            height: 34px;
            background: var(--green);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            font-size: .85rem;
            transition: transform .15s;
            -webkit-tap-highlight-color: transparent;
        }
        .chat-send:hover {
            transform: scale(1.05);
        }

        .chat-body::-webkit-scrollbar {
            width: 6px;
        }

        .chat-body::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .14);
            border-radius: 999px;
        }

        .widget-btns {
            display: flex;
            gap: 8px;
        }
        .fab {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .4);
            transition: transform .2s, box-shadow .2s;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
        }
        .fab:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 7px 25px rgba(0, 0, 0, .5);
        }
        .fab-call {
            background: #1877F2;
            color: white;
        }
        .fab-wa {
            background: #25D366;
            color: white;
        }
        .fab-chat {
            background: var(--green);
            color: var(--deep-blue);
        }
        .fab-label {
            position: absolute;
            right: 54px;
            top: 50%;
            transform: translateY(-50%) scale(.9);
            background: var(--navy);
            border: 1px solid var(--border);
            border-radius: 7px;
            padding: .25rem .6rem;
            font-size: .7rem;
            font-weight: 600;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity .2s, transform .2s;
        }
        .fab-wrap {
            position: relative;
        }
        .fab-wrap:hover .fab-label {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }

        .typing {
            display: flex;
            gap: 3px;
            padding: .4rem .7rem;
            align-items: center;
        }
        .typing span {
            width: 5px;
            height: 5px;
            background: var(--muted);
            border-radius: 50%;
            animation: blink 1.2s ease infinite;
        }
        .typing span:nth-child(2) {
            animation-delay: .2s;
        }
        .typing span:nth-child(3) {
            animation-delay: .4s;
        }
        @keyframes blink {
            0%,
            80%,
            100% {
                opacity: .2;
            }
            40% {
                opacity: 1;
            }
        }

        /* â”€â”€â”€ SCROLL REVEAL â”€â”€â”€ */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .6s, transform .6s;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 {
            transition-delay: .1s;
        }
        .reveal-delay-2 {
            transition-delay: .2s;
        }
        .reveal-delay-3 {
            transition-delay: .3s;
        }

        /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */

        /* Tablet â‰¤ 950px */
        @media (max-width: 950px) {
            .nav-links,
            .nav-cta {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .hiw-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hiw-visual {
                order: -1;
            }
            .hiw-phone {
                width: 200px;
                height: 390px;
            }
            .hiw-float-1 {
                right: 0;
                top: 20px;
            }
            .hiw-float-2 {
                left: 0;
                bottom: 40px;
            }
            .api-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .plans-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: .8rem;
            }
            .plan-card-body {
                padding: .6rem .9rem 1rem;
            }
            .plan-row {
                padding: .55rem .6rem;
                gap: .3rem;
            }
            .plan-data {
                font-size: .8rem;
            }
            .plan-price {
                font-size: .82rem;
            }
            .plan-validity {
                font-size: .68rem;
            }
            .plan-buy-btn {
                font-size: .68rem;
                padding: .3rem .6rem;
            }
        }

        /* Mobile â‰¤ 680px */
        @media (max-width: 680px) {
            nav {
                height: 60px;
                padding: 0 .9rem;
            }
            .mobile-menu {
                top: 60px;
                padding: 1rem .9rem;
            }
            .mobile-menu-overlay {
                top: 60px;
            }
            .hamburger {
                min-width: 40px;
                min-height: 40px;
            }
            .hamburger span {
                width: 22px;
            }
            .hero {
                padding: 100px .9rem 50px;
                min-height: auto;
            }
            h1 {
                font-size: 1.8rem;
            }
            h1 .stroke {
                -webkit-text-stroke: 1.2px var(--white);
            }
            .hero-sub {
                font-size: .85rem;
                margin: 1rem auto 1.6rem;
            }
            .hero-stats {
                gap: 1rem;
                margin-top: 2.5rem;
            }
            .hero-stat strong {
                font-size: 1.2rem;
            }
            .hero-stat small {
                font-size: .68rem;
            }
            .btn-primary-lg,
            .btn-outline-lg {
                padding: .7rem 1.4rem;
                font-size: .85rem;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
            }
            .hero-actions a {
                width: 100%;
                text-align: center;
                display: block;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
            .service-card {
                padding: 1.3rem 1.2rem;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .provider-btns {
                gap: .4rem;
            }
            .provider-btn {
                padding: .55rem 1rem;
                font-size: .78rem;
                min-width: 70px;
                border-radius: 8px;
            }
            .plan-card-header {
                font-size: .82rem;
                padding: 1rem 1.1rem;
            }
            .plan-card-body {
                padding: .5rem .9rem .9rem;
            }
            .plan-row {
                flex-wrap: wrap;
                padding: .6rem .7rem;
            }
            .plan-data {
                font-size: .82rem;
            }
            .plan-price {
                font-size: .85rem;
            }

            .testi-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hiw-phone {
                width: 160px;
                height: 320px;
            }
            .hiw-float {
                font-size: .65rem;
                padding: .4rem .6rem;
            }
            .hiw-float-1 {
                right: -5px;
                top: 10px;
            }
            .hiw-float-2 {
                left: -5px;
                bottom: 20px;
            }
            .chat-panel {
                width: calc(100vw - 20px);
                right: 0;
                border-radius: 14px;
            }
            .float-widgets {
                right: 10px;
                bottom: 14px;
                gap: 8px;
            }
            .fab {
                width: 42px;
                height: 42px;
                font-size: 1.05rem;
            }
            .code-body {
                font-size: .68rem;
                padding: 1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: .8rem;
            }
            .stat-box {
                padding: 1.3rem .8rem;
            }
            .stat-num {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .plan-card-header .plan-card-icon {
                font-size: 1rem;
            }
        }

        /* Small Mobile â‰¤ 400px */
        @media (max-width: 400px) {
            .provider-btn {
                padding: .48rem .7rem;
                font-size: .72rem;
                min-width: 60px;
                border-radius: 6px;
            }
            .provider-btns {
                gap: .3rem;
            }
            .plan-row {
                flex-direction: column;
                align-items: flex-start;
                gap: .25rem;
            }
            .plan-row .plan-buy-btn {
                align-self: flex-end;
            }
            .hero {
                padding: 90px .7rem 40px;
            }
            h1 {
                font-size: 1.55rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: .6rem;
            }
            .stat-num {
                font-size: 1.3rem;
            }
            .fab {
                width: 38px;
                height: 38px;
                font-size: .95rem;
            }
        }

        /* Large screens â‰¥ 1400px */
        @media (min-width: 1400px) {
            .container {
                max-width: 1280px;
            }
            .plans-grid {
                gap: 1.5rem;
            }
        }
