/* ================================================
   SHAN ZONE BROADBAND — COMPLETE STYLES
   ================================================ */

/* ===== Base & Reset ===== */
:root {
    --void: #060b18;
    --navy: #0b1b3a;
    --deep-blue: #0d3aa8;
    --orange: #ff5e14;
    --orange-2: #ff8a3d;
    --pulse: #00e0c7;
    --pearl: #f6f8fc;
    --paper: #ffffff;
    --ink: #101826;
    --ink-soft: #5b6474;
    --line: #eef0f5;
    --lite-color: #2e6fd6;
    --pro-color: var(--orange);
    --boost-color: #10203f;
    --gold: #c9a44c;
    --gold-light: #e8cf8a;
    --radius: 18px;
    --shadow-soft: 0 20px 50px rgba(9, 20, 45, 0.08);
    --shadow-lift: 0 25px 60px rgba(9, 20, 45, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--ink);
    background: var(--pearl);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

h2 {
    color: var(--ink);
    font-weight: 700;
}

h2 .accent-word {
    color: var(--orange);
}

a {
    color: inherit;
}

/* ===== Utility Bar ===== */
.utility-bar {
    background: var(--void);
    color: #b9c3da;
    font-size: 12.5px;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 164, 76, 0.25);
}

.utility-bar .u-left {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.utility-bar a {
    color: #cfd8ee;
    text-decoration: none;
    transition: 0.25s;
}

.utility-bar a:hover {
    color: var(--gold-light);
}

.utility-bar i {
    color: var(--gold);
    margin-right: 6px;
}

.utility-bar .u-gst {
    letter-spacing: 0.04em;
    color: #8b96b3;
}

@media (max-width: 760px) {
    .utility-bar .u-right {
        display: none;
    }
}

@media (max-width: 560px) {
    .utility-bar .u-left span:nth-child(2) {
        display: none;
    }
}

/* ===== News Bar ===== */
.news-bar {
    background: linear-gradient(90deg, var(--void), var(--navy));
    color: #ffd77a;
    padding: 10px 0;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.news-bar i {
    color: var(--pulse);
    margin: 0 8px;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: var(--void);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), var(--pulse));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    animation: preloaderPulse 1.1s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 224, 199, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 14px rgba(0, 224, 199, 0);
    }
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--pulse));
    animation: preloaderFill 1.2s ease-in-out forwards;
}

@keyframes preloaderFill {
    to {
        width: 100%;
    }
}

.preloader-text {
    color: #9aa5c0;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== Scroll Progress ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--pulse));
    z-index: 2000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 224, 199, 0.6);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--void);
    color: var(--pulse);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(6, 11, 24, 0.35);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-4px);
}

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 900;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.float-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: waPing 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes waPing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .float-whatsapp {
        bottom: 78px;
        left: 18px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ===== Mobile Action Bar ===== */
.mobile-action-bar {
    display: none;
}

@media (max-width: 700px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 950;
        background: var(--void);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
    }

    .mobile-action-bar a,
    .mobile-action-bar button {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 10px 0 12px;
        color: white;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        background: none;
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .mobile-action-bar a i,
    .mobile-action-bar button i {
        font-size: 17px;
    }

    .mobile-action-bar a.ma-call i {
        color: var(--orange);
    }

    .mobile-action-bar a.ma-whatsapp i {
        color: #25D366;
    }

    .mobile-action-bar a.ma-plans i {
        color: var(--pulse);
    }

    .mobile-action-bar button.ma-recharge i {
        color: var(--gold-light);
    }

    .mobile-action-bar a+a,
    .mobile-action-bar button+a {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    body {
        padding-bottom: 62px;
    }
}

/* ===== Header ===== */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 0 rgba(16, 24, 38, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
    padding: 8px 5%;
    box-shadow: 0 8px 24px rgba(16, 24, 38, 0.09);
}

.logo img {
    height: 52px;
    display: block;
    transition: height 0.35s ease;
}

header.scrolled .logo img {
    height: 40px;
}

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

nav.main-nav a {
    margin: 0 6px;
    padding: 8px 6px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    transition: 0.25s;
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 2px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

nav.main-nav a:hover {
    color: var(--orange);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-recharge {
    background: linear-gradient(135deg, #10203f, #0d3aa8);
    color: white;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(13, 58, 168, 0.3);
}

.btn-recharge i {
    color: var(--pulse);
}

.btn-recharge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(13, 58, 168, 0.4);
}

.btn-quote {
    background: linear-gradient(135deg, var(--orange-2), var(--orange) 55%, #d84400);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 94, 20, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}

.nav-toggle span:nth-child(1) {
    top: 2px;
}

.nav-toggle span:nth-child(2) {
    top: 11px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

.nav-toggle.open span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
    background: var(--orange);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
    background: var(--orange);
}

@media (max-width: 900px) {
    nav.main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: var(--void);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px;
        transition: right 0.35s ease;
        z-index: 1100;
    }

    nav.main-nav.open {
        right: 0;
    }

    nav.main-nav a {
        color: white;
        width: 100%;
        padding: 14px 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-toggle {
        display: block;
    }

    .header-actions .btn-quote span.full-label {
        display: none;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: var(--void);
    color: white;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    transform: scale(1.08);
    animation: kenburns 12s ease-in-out infinite;
}

.hero-slide-bg.active {
    opacity: 1;
}

@keyframes kenburns {
    0% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(6, 11, 24, 0.94) 15%, rgba(6, 11, 24, 0.75) 50%, rgba(11, 27, 58, 0.55) 100%);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 1;
    animation: meshDrift 16s ease-in-out infinite;
}

.mesh-blob.mb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--pulse), transparent 70%);
    top: -120px;
    right: 8%;
    animation-duration: 18s;
}

.mesh-blob.mb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--orange), transparent 70%);
    bottom: -140px;
    right: 25%;
    animation-duration: 14s;
    animation-delay: 2s;
}

.mesh-blob.mb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--deep-blue), transparent 70%);
    top: 30%;
    left: -80px;
    animation-duration: 20s;
    animation-delay: 1s;
}

@keyframes meshDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.08);
    }
    66% {
        transform: translate(-24px, 20px) scale(0.96);
    }
}

@media (max-width: 700px) {
    .mesh-blob {
        display: none;
    }
}

.word-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.word-reveal span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: wordUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 60px 5%;
}

.hero-content .eyebrow {
    color: var(--pulse);
}

.hero-content .eyebrow::before {
    background: var(--pulse);
    animation: eyebrowPulse 1.8s ease-in-out infinite;
}

@keyframes eyebrowPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(0, 224, 199, 0);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 10px 2px rgba(0, 224, 199, 0.5);
    }
}

.hero-content h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.12;
    margin: 0 0 18px;
    font-weight: 700;
}

.hero-content h1 .hi-line {
    display: block;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 500;
    color: #cfd8ee;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.hero-content p.lead {
    color: #b9c3da;
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.btn-ghost-light {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.04);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--pulse);
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 26px;
}

.hero-stats .stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pulse);
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stats .stat-label {
    font-size: 12.5px;
    color: #9aa5c0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.hero-status-card {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 90px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    animation: statusFloat 4.5s ease-in-out infinite;
}

@keyframes statusFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-status-card .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22e08a;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(34, 224, 138, 0.6);
    animation: statusPing 1.8s ease-in-out infinite;
}

@keyframes statusPing {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 224, 138, 0.55);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(34, 224, 138, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 224, 138, 0);
    }
}

.hero-status-card .status-title {
    font-size: 13.5px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-status-card .status-sub {
    font-size: 11.5px;
    color: #b9c3da;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .hero-status-card {
        display: none;
    }
}

.float-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
    animation: floatOrb 7s ease-in-out infinite;
}

.float-orb.orb-1 {
    width: 10px;
    height: 10px;
    background: var(--pulse);
    top: 22%;
    left: 62%;
    box-shadow: 0 0 18px 6px rgba(0, 224, 199, 0.55);
    animation-duration: 8s;
}

.float-orb.orb-2 {
    width: 6px;
    height: 6px;
    background: var(--orange-2);
    top: 55%;
    left: 78%;
    box-shadow: 0 0 14px 5px rgba(255, 138, 61, 0.5);
    animation-duration: 6.5s;
    animation-delay: 1.2s;
}

.float-orb.orb-3 {
    width: 8px;
    height: 8px;
    background: var(--pulse);
    top: 72%;
    left: 55%;
    box-shadow: 0 0 16px 5px rgba(0, 224, 199, 0.45);
    animation-duration: 9s;
    animation-delay: 2.4s;
}

.float-orb.orb-4 {
    width: 5px;
    height: 5px;
    background: #ffd77a;
    top: 35%;
    left: 88%;
    box-shadow: 0 0 12px 4px rgba(255, 215, 122, 0.5);
    animation-duration: 7.5s;
    animation-delay: 0.6s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.7;
    }
    50% {
        transform: translate(-16px, -26px);
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .float-orb {
        display: none;
    }
}

/* ===== Section Base ===== */
section {
    padding: 90px 5%;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-head h2 {
    position: relative;
    padding-bottom: 18px;
}

.section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.7;
}

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

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Speed Test ===== */
.speedtest-section {
    background: var(--paper);
    text-align: center;
}

.speedtest-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--void);
    border-radius: 24px;
    padding: 40px 30px 34px;
    box-shadow: var(--shadow-lift);
    position: relative;
    overflow: hidden;
}

.speedtest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 224, 199, 0.12), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(255, 94, 20, 0.10), transparent 45%);
}

.st-topline {
    display: flex;
    justify-content: center;
    gap: 56px;
    position: relative;
    z-index: 1;
    margin-bottom: 6px;
}

.st-topline-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9aa5c0;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.st-topline-label i {
    font-size: 11px;
}

.st-topline-item:first-child .st-topline-label i {
    color: var(--pulse);
}

.st-topline-item:last-child .st-topline-label i {
    color: var(--gold-light);
}

.st-topline-label span {
    font-weight: 500;
    color: #6b7590;
}

.st-topline-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.st-midline {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #9aa5c0;
    margin: 8px 0 6px;
    position: relative;
    z-index: 1;
}

.st-midline i {
    color: var(--pulse);
    margin-right: 4px;
}

.st-midline b {
    color: white;
    font-weight: 600;
}

.gauge-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.gauge-stage {
    position: relative;
    width: 260px;
    height: 205px;
    margin: 6px auto 0;
    z-index: 1;
}

.gauge-wrap.gauge-hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.gauge-svg {
    width: 100%;
    height: 100%;
}

.gauge-track-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 9;
    stroke-linecap: round;
}

.gauge-track-fill {
    fill: none;
    stroke: url(#gaugeGradient);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 401;
    stroke-dashoffset: 401;
    transition: stroke-dashoffset 0.2s linear;
}

.gauge-tick {
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 1.5;
}

.gauge-tick-label {
    fill: #8b96b3;
    font-size: 9px;
    font-family: 'Space Grotesk', sans-serif;
}

.gauge-needle-group {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-needle {
    stroke: var(--orange-2);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.gauge-needle-hub {
    fill: var(--orange-2);
    stroke: white;
    stroke-width: 1.5;
}

.gauge-center-value {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    text-align: center;
}

.gauge-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.gauge-unit {
    font-size: 10.5px;
    color: #9aa5c0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.gauge-result-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.gauge-result-state.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gauge-result-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    background: linear-gradient(135deg, var(--pulse), #00b89f);
    box-shadow: 0 0 0 8px rgba(0, 224, 199, 0.12), 0 10px 26px rgba(0, 224, 199, 0.35);
    animation: gaugeCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes gaugeCheckPop {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.gauge-result-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.gauge-result-sub {
    font-size: 11.5px;
    color: #8b96b3;
}

.st-category-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin: 12px 0 18px;
    position: relative;
    z-index: 1;
}

.st-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 66px;
}

.st-category i {
    font-size: 16px;
    color: #cfd8ee;
}

.st-category span {
    font-size: 10px;
    color: #8b96b3;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.st-dots {
    display: flex;
    gap: 3px;
}

.st-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: block;
}

.st-dots span.filled {
    background: var(--pulse);
}

.speedtest-status {
    font-size: 13px;
    color: #b9c3da;
    min-height: 18px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.btn-speedtest {
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    color: white;
    background: linear-gradient(135deg, var(--orange-2), var(--orange) 60%, #d84400);
    box-shadow: 0 12px 26px rgba(255, 94, 20, 0.35);
    transition: 0.3s;
}

.btn-speedtest:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn-speedtest:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.st-isp-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.st-isp-row>div {
    font-size: 12.5px;
    color: #cfd8ee;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.st-isp-label {
    font-size: 10px;
    color: #7c869e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.speedtest-disclaimer {
    font-size: 11.5px;
    color: #7c869e;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

/* ===== Availability ===== */
.availability-section {
    background: var(--void);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.availability-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 224, 199, 0.10), transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(255, 94, 20, 0.08), transparent 45%);
}

.availability-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.availability-info {
    flex: 1;
    min-width: 300px;
}

.availability-info .eyebrow {
    color: var(--pulse);
}

.availability-info .eyebrow::before {
    background: var(--pulse);
}

.availability-info h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 16px;
}

.availability-info h2 .accent-word {
    color: var(--pulse);
}

.availability-info p {
    color: #b9c3da;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 460px;
}

.availability-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.availability-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfd8ee;
    font-size: 14.5px;
    font-weight: 500;
}

.availability-points i {
    color: var(--pulse);
    font-size: 16px;
}

.availability-card {
    flex: 0 0 auto;
    width: 360px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.availability-card .lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 164, 76, 0.16);
    border: 1px solid rgba(201, 164, 76, 0.4);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.availability-card h3 {
    color: white;
    font-size: 1.15rem;
    margin: 0 0 18px;
    font-weight: 600;
}

.availability-card input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.25s;
}

.availability-card input::placeholder {
    color: #8b96b3;
}

.availability-card input:focus {
    outline: none;
    border-color: var(--pulse);
    background: rgba(255, 255, 255, 0.1);
}

.availability-card .lead-note {
    font-size: 11.5px;
    color: #8b96b3;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 760px) {
    .availability-card {
        width: 100%;
    }

    .availability-wrap {
        gap: 40px;
    }
}

/* ===== Area Toggle & Autocomplete ===== */
.area-toggle {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.area-tab {
    flex: 1;
    padding: 8px 6px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #b9c3da;
    font-size: 11.5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: 0.25s;
}

.area-tab.active {
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    color: white;
    border-color: transparent;
}

.area-input-wrap {
    position: relative;
}

.area-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(11, 17, 33, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    max-height: 190px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.area-suggestions.show {
    display: block;
}

.area-suggestion-item {
    padding: 10px 13px;
    font-size: 13px;
    color: #e2e7f5;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.area-suggestion-item:last-child {
    border-bottom: none;
}

.area-suggestion-item:hover {
    background: rgba(0, 224, 199, 0.12);
}

.area-suggestion-item small {
    display: block;
    color: #8b96b3;
    font-size: 11px;
    margin-top: 2px;
}

.area-suggestion-empty {
    padding: 12px 13px;
    font-size: 12.5px;
    color: #8b96b3;
    text-align: center;
}

.block-select-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.block-select-wrap select {
    flex: 1;
    padding: 11px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    box-sizing: border-box;
}

.block-select-wrap select:disabled {
    opacity: 0.5;
}

.block-select-wrap select option {
    background: #0b1121;
    color: white;
}

/* ===== About ===== */
.about-section {
    background: var(--pearl);
    padding-top: 70px;
}

.about-card {
    background: var(--paper);
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before,
.contact-card-left::before,
.contact-card-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--pulse));
}

.about-card p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-features span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    background: var(--pearl);
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s, box-shadow 0.25s;
}

.about-section.in-view .about-features span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-features span:nth-child(1) {
    transition-delay: 0.05s;
}

.about-features span:nth-child(2) {
    transition-delay: 0.18s;
}

.about-features span:nth-child(3) {
    transition-delay: 0.31s;
}

.about-features span:nth-child(4) {
    transition-delay: 0.44s;
}

.about-features span:hover {
    background: #fff1e9;
    box-shadow: 0 6px 16px rgba(255, 94, 20, 0.15);
    transform: translateY(-3px);
}

.about-features i {
    color: var(--orange);
}

.chip-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.about-features span {
    padding: 8px 18px 8px 8px;
}

/* ===== Features ===== */
.features-section {
    background: var(--pearl);
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--paper);
    border-radius: 16px;
    padding: 34px 26px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(24px);
}

.features-section.in-view .feature-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.features-section.in-view .feature-card:nth-child(1) {
    transition-delay: 0.05s;
}

.features-section.in-view .feature-card:nth-child(2) {
    transition-delay: 0.18s;
}

.features-section.in-view .feature-card:nth-child(3) {
    transition-delay: 0.31s;
}

.features-section.in-view .feature-card:nth-child(4) {
    transition-delay: 0.44s;
}

.feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lift);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

.feature-card h3 {
    font-size: 1.05rem;
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* ===== Network Path ===== */
.network-path {
    background: var(--void);
    color: white;
    position: relative;
    overflow: hidden;
}

.network-path::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(0, 224, 199, 0.12), transparent 45%),
                radial-gradient(circle at 85% 70%, rgba(255, 94, 20, 0.10), transparent 45%);
}

.np-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.np-inner .eyebrow {
    color: var(--pulse);
    justify-content: center;
}

.np-inner .eyebrow::before {
    display: none;
}

.np-inner h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 44px;
}

.np-inner h2 .accent-word {
    color: var(--pulse);
}

.path-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.path-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.network-path.in-view .path-node {
    opacity: 1;
    transform: translateY(0);
}

.network-path.in-view .path-node:nth-child(1) {
    transition-delay: 0.1s;
}

.network-path.in-view .path-node:nth-child(3) {
    transition-delay: 0.35s;
}

.network-path.in-view .path-node:nth-child(5) {
    transition-delay: 0.6s;
}

.path-node .node-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    font-size: 26px;
    animation: iconBreathe 3s ease-in-out infinite;
}

.path-node:nth-child(1) .node-icon {
    color: var(--orange);
    animation-delay: 0s;
}

.path-node:nth-child(3) .node-icon {
    color: var(--pulse);
    animation-delay: 0.6s;
}

.path-node:nth-child(5) .node-icon {
    color: #ffd77a;
    animation-delay: 1.2s;
}

@keyframes iconBreathe {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.06);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.03);
        transform: scale(1.05);
    }
}

.path-node span.node-label {
    font-size: 13px;
    font-weight: 600;
    color: #cfd8ee;
    letter-spacing: 0.02em;
}

.path-link {
    flex: 1;
    min-width: 90px;
    max-width: 220px;
    height: 2px;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 94, 20, 0.5), rgba(0, 224, 199, 0.5));
    margin: 0 -4px;
    top: -18px;
}

.path-link .pulse-dot {
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pulse);
    box-shadow: 0 0 14px 4px rgba(0, 224, 199, 0.7);
    animation: travel 2.4s linear infinite;
}

@keyframes travel {
    0% {
        left: -4px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .path-row {
        flex-direction: column;
        gap: 26px;
    }

    .path-link {
        width: 2px;
        height: 50px;
        max-width: none;
        margin: 0;
        top: 0;
        transform: rotate(90deg) translateX(0);
    }

    .path-link {
        writing-mode: vertical-lr;
    }
}

.np-caption {
    margin-top: 40px;
    color: #9aa5c0;
    font-size: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Pricing ===== */
.pricing {
    background: var(--paper);
    text-align: center;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.price-card {
    background: var(--paper);
    border-radius: 22px;
    width: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease, transform 0.6s ease;
}

.pricing.in-view .price-card {
    opacity: 1;
    transform: translateY(0);
}

.pricing.in-view .price-card:nth-child(1) {
    transition-delay: 0.05s;
}

.pricing.in-view .price-card:nth-child(2) {
    transition-delay: 0.2s;
}

.pricing.in-view .price-card:nth-child(3) {
    transition-delay: 0.35s;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lift);
}

.price-card.featured {
    border: 2px solid var(--gold);
    animation: featuredGlow 2.6s ease-in-out infinite;
}

.pricing.in-view .price-card.featured {
    transform: scale(1.04);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
    animation-play-state: paused;
}

@keyframes featuredGlow {
    0%, 100% {
        box-shadow: var(--shadow-soft), 0 0 0 0 rgba(201, 164, 76, 0.35);
    }
    50% {
        box-shadow: var(--shadow-soft), 0 0 22px 3px rgba(201, 164, 76, 0.4);
    }
}

.popular-tag {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2a1f05;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 6px 16px rgba(201, 164, 76, 0.45);
}

.plan-tag {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-header {
    padding: 40px 26px 34px;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.card-header.lite {
    background: linear-gradient(135deg, var(--lite-color), #1c4fa0);
}

.card-header.pro {
    background: linear-gradient(135deg, var(--pro-color), #d84400);
}

.card-header.boost {
    background: linear-gradient(135deg, var(--boost-color), #05101f);
}

.card-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plan-price {
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span.amount {
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.plan-price span.per {
    font-size: 13px;
    opacity: 0.85;
}

.card-body {
    padding: 30px 26px 34px;
    text-align: left;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: #2ecc71;
    width: 16px;
}

.btn-plan {
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    transition: 0.3s;
    color: white;
}

.btn-plan.lite {
    background: linear-gradient(135deg, var(--lite-color), #1c4fa0);
}

.btn-plan.pro {
    background: linear-gradient(135deg, var(--orange-2), var(--orange) 60%, #d84400);
}

.btn-plan.boost {
    background: linear-gradient(135deg, #223a5e, var(--boost-color));
}

.btn-plan:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* ===== Contact ===== */
.contact-section-new {
    background: var(--pearl);
}

.new-contact-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.contact-card-left,
.contact-card-right {
    background: var(--paper);
    flex: 1;
    min-width: 320px;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-card-left h2,
.contact-card-right h2 {
    font-size: 1.5rem;
    margin-top: 0;
}

.info-item {
    margin-bottom: 11px;
    font-size: 14.5px;
    color: var(--ink);
}

.info-item strong {
    color: var(--ink-soft);
    font-weight: 600;
}

.info-item i {
    color: var(--orange);
    margin-right: 10px;
    width: 16px;
}

.sub-heading {
    color: var(--ink);
    font-size: 17px;
    margin: 28px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.sub-heading i {
    color: var(--orange);
}

.vision-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-style: italic;
    border-left: 3px solid var(--orange);
    padding-left: 14px;
}

.list-style-new {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.list-style-new li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-section-new.in-view .list-style-new li {
    opacity: 1;
    transform: translateX(0);
}

.list-style-new li:nth-child(1) {
    transition-delay: 0.05s;
}

.list-style-new li:nth-child(2) {
    transition-delay: 0.15s;
}

.list-style-new li:nth-child(3) {
    transition-delay: 0.25s;
}

.list-style-new li:nth-child(4) {
    transition-delay: 0.35s;
}

.list-style-new li i {
    color: var(--orange);
    margin-top: 3px;
}

.form-input-new {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 18px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.25s;
    background: var(--pearl);
}

.form-input-new:focus {
    outline: none;
    border-color: var(--orange);
    background: white;
}

.btn-blue-send {
    background: var(--deep-blue);
    color: #fff;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.btn-blue-send:hover {
    background: #0a2f88;
    transform: translateY(-2px);
}

.get-connected-footer {
    text-align: center;
    margin-top: 60px;
}

.get-connected-footer h2 {
    margin-bottom: 10px;
}

.get-connected-footer p {
    color: var(--ink-soft);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.btn-whatsapp-green {
    background: #25D366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
    transition: 0.3s;
}

.btn-whatsapp-green:hover {
    transform: translateY(-3px);
}

/* ===== Footer ===== */
footer {
    background: var(--void);
    color: white;
    padding: 80px 5% 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--pulse), var(--deep-blue));
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--orange);
    margin-bottom: 22px;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-col a {
    color: #cfd8ee;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
    font-size: 14.5px;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-col p {
    color: #9aa5c0;
    font-size: 13px;
}

.social-link i {
    margin-right: 10px;
    font-size: 17px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13.5px;
    color: #7c869e;
}

.footer-bottom a {
    color: #9aa5c0;
}

/* ===== Recharge Modal ===== */
.recharge-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(6, 11, 24, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recharge-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.recharge-modal {
    background: var(--void);
    border-radius: 0;
    max-width: 420px;
    width: 100%;
    height: 100%;
    padding: 32px 26px 26px;
    position: relative;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
}

.recharge-modal-overlay.show .recharge-modal {
    transform: translateX(0);
}

.recharge-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #cfd8ee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.25s;
}

.recharge-modal-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.recharge-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.recharge-modal-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.recharge-modal-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0 0 6px;
}

.recharge-modal-header p {
    color: #9aa5c0;
    font-size: 13px;
    margin: 0;
}

.recharge-login-step {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.upi-custid-box {
    max-width: 280px;
    margin: 0 auto 18px;
    text-align: left;
}

.upi-custid-box label {
    display: block;
    color: #9aa5c0;
    font-size: 11.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.upi-custid-box label span {
    font-weight: 400;
    opacity: 0.75;
}

.upi-custid-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 12px;
    color: white;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
}

.upi-custid-box input:focus {
    border-color: var(--pulse);
    background: rgba(255, 255, 255, 0.09);
}

.upi-custid-box input::placeholder {
    color: #5c6889;
}

.upi-pay-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    color: white;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    transition: 0.25s;
    white-space: nowrap;
}

.upi-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 94, 20, 0.4);
}

.upi-pay-btn i {
    font-size: 12px;
}

.recharge-plan-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recharge-current-plan-label {
    color: #9aa5c0;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 4px 0 10px;
}

.recharge-plan-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    transition: 0.25s;
    position: relative;
}

.recharge-plan-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--pulse);
    transform: translateX(3px);
}

.recharge-plan-btn.featured {
    border-color: var(--gold);
    background: rgba(201, 164, 76, 0.08);
}

.rpb-name {
    color: white;
    font-weight: 600;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rpb-tag {
    font-size: 9.5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2a1f05;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
}

.rpb-speed {
    color: #9aa5c0;
    font-size: 12px;
    margin-top: 3px;
}

.rpb-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rpb-price {
    color: var(--pulse);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
}

.rpb-right i {
    color: #6b7590;
    font-size: 13px;
    transition: 0.25s;
}

.recharge-plan-btn:hover .rpb-right i {
    color: var(--pulse);
    transform: translateX(3px);
}

.upi-tab-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    margin: 0 auto 20px;
    max-width: 280px;
}

.upi-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    color: #9aa5c0;
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s;
}

.upi-tab-btn.active {
    background: var(--pulse);
    color: var(--void);
}

.upi-tab-btn:not(.active):hover {
    color: white;
}

.upi-tab-content {
    display: none;
}

.upi-tab-content.show {
    display: block;
}

.upi-qr-view {
    display: none;
    text-align: center;
}

.upi-qr-view.show {
    display: block;
}

.upi-qr-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #9aa5c0;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    padding: 0;
    transition: 0.2s;
}

.upi-qr-back:hover {
    color: var(--pulse);
}

.upi-qr-view-plan {
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.upi-qr-view-amount {
    color: var(--pulse);
    font-weight: 700;
    font-size: 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
}

.upi-qr-canvas-wrap {
    width: 190px;
    height: 190px;
    background: white;
    border-radius: 16px;
    padding: 10px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.upi-qr-hint {
    color: #9aa5c0;
    font-size: 12px;
    margin-bottom: 16px;
}

.upi-id-big-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 18px 16px;
    margin: 0 auto 14px;
    max-width: 280px;
}

.upi-id-big-box span {
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    word-break: break-all;
}

.upi-id-copy {
    background: var(--pulse);
    color: var(--void);
    border: none;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: 0.25s;
    flex-shrink: 0;
}

.upi-id-copy:hover {
    transform: scale(1.08);
}

.upi-id-copy.copied {
    background: #3ddc84;
}

.upi-open-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange-2), var(--orange));
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    margin-bottom: 18px;
    transition: 0.25s;
}

.upi-open-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 94, 20, 0.4);
}

.ive-paid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    background: rgba(61, 220, 132, 0.12);
    border: 1px solid rgba(61, 220, 132, 0.4);
    color: #3ddc84;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 4px;
}

.ive-paid-btn:hover:not(:disabled) {
    background: rgba(61, 220, 132, 0.2);
    transform: translateY(-1px);
}

.ive-paid-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.ive-paid-hint {
    color: #9aa5c0;
    font-size: 11px;
    margin-top: 8px;
}

.ive-paid-message {
    margin-top: 12px;
    font-size: 12.5px;
}

.ive-paid-message.success {
    color: #3ddc84;
}

.ive-paid-message.error {
    color: #ff4a4a;
}

.cpr-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 18px 16px;
    animation: cprFadeIn 0.3s ease;
}

@keyframes cprFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cpr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.cpr-row+.cpr-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cpr-label {
    color: #9aa5c0;
    font-size: 12px;
}

.cpr-value {
    color: white;
    font-size: 13.5px;
    font-weight: 600;
    text-align: right;
}

.cpr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cpr-badge.active {
    background: rgba(61, 220, 132, 0.15);
    color: #3ddc84;
}

.cpr-badge.soon {
    background: rgba(255, 163, 26, 0.15);
    color: #ffa31a;
}

.cpr-badge.expired {
    background: rgba(255, 74, 74, 0.15);
    color: #ff4a4a;
}

.cpr-notfound {
    text-align: center;
    color: #9aa5c0;
    font-size: 13px;
    padding: 10px 4px;
}

.cpr-notfound i {
    display: block;
    font-size: 24px;
    color: #ff4a4a;
    margin-bottom: 10px;
}

.recharge-modal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 11.5px;
    color: #6b7590;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.recharge-modal-footer i {
    color: var(--pulse);
}

#rechargeAllPlans {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Glossy Button (for React, if used) ===== */
.glossy-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glossy-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) rotate(25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    20% {
        transform: translateX(100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

.glossy-btn:disabled::after {
    animation: none;
    opacity: 0.3;
}

/* ===== Responsive ===== */
@media (max-width: 560px) {
    .btn-recharge span.full-label {
        display: none;
    }

    .btn-recharge {
        padding: 12px 14px;
    }
}
