/* ==========================================================================
   GIGA NETWORK – PREMIUM CSS DESIGN SYSTEM v2.0 (PRODUCTION BUILD)
   ========================================================================== */

/* 1. DESIGN TOKENS & CUSTOM PROPERTIES */
:root {
    /* ── Core Colors ── */
    --color-bg:          #071A2E;
    --color-bg-deep:     #040f1c;
    --color-secondary:   #0C447C;
    --color-accent:      #00AEEF;
    --color-accent-dim:  rgba(0, 174, 239, 0.6);
    --color-white:       #FFFFFF;
    --color-gray:        #DDE7F2;
    --color-success:     #00E676;
    --color-error:       #FF5252;

    /* ── Spacing Scale ── */
    --space-2:   0.125rem;  /* 2px  */
    --space-4:   0.25rem;   /* 4px  */
    --space-8:   0.5rem;    /* 8px  */
    --space-12:  0.75rem;   /* 12px */
    --space-16:  1rem;      /* 16px */
    --space-24:  1.5rem;    /* 24px */
    --space-32:  2rem;      /* 32px */
    --space-48:  3rem;      /* 48px */
    --space-64:  4rem;      /* 64px */
    --space-80:  5rem;      /* 80px */
    --space-96:  6rem;      /* 96px */
    --space-120: 7.5rem;    /* 120px */

    /* ── Section / Component Rhythm ── */
    --section-py:      clamp(5.5rem, 10vw, 8.5rem);
    --section-gap:     clamp(3rem, 5vw, 5rem);
    --card-gap:        1.75rem;
    --header-gap:      clamp(3.2rem, 5vw, 4.8rem);

    /* ── Gradients ── */
    --gradient-primary:      linear-gradient(135deg, #00AEEF 0%, #0C447C 100%);
    --gradient-primary-rev:  linear-gradient(135deg, #0C447C 0%, #00AEEF 100%);
    --gradient-glow:         radial-gradient(circle at center, rgba(0,174,239,0.12) 0%, transparent 70%);
    --gradient-card-hover:   linear-gradient(135deg, rgba(0,174,239,0.15) 0%, rgba(12,68,124,0.05) 100%);
    --gradient-text:         linear-gradient(135deg, #00AEEF 0%, #00c6ff 50%, #0C447C 100%);
    --gradient-success-text: linear-gradient(135deg, #00E676 0%, #00c853 100%);

    /* ── Mesh Background Layers ── */
    --mesh-1: radial-gradient(ellipse 80% 60% at 15% 25%,  rgba(0,174,239,0.08) 0%, transparent 55%);
    --mesh-2: radial-gradient(ellipse 60% 80% at 85% 75%,  rgba(12,68,124,0.12) 0%, transparent 55%);
    --mesh-3: radial-gradient(ellipse 50% 50% at 50% 100%, rgba(0,230,118,0.04) 0%, transparent 60%);

    /* ── Typography ── */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:    'Inter',         -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono:    'JetBrains Mono', 'Courier New', monospace;

    /* ── Glassmorphism ── */
    --glass-bg:           rgba(12,  68, 124, 0.12);
    --glass-bg-medium:    rgba(7,   26,  46, 0.55);
    --glass-bg-heavy:     rgba(7,   26,  46, 0.85);
    --glass-border:       rgba(221,231,242, 0.07);
    --glass-border-hover: rgba(0,  174, 239, 0.35);
    --glass-blur:         blur(16px);
    --glass-blur-heavy:   blur(24px);

    /* ── Shadows ── */
    --shadow-card:        0 4px 6px rgba(0,0,0,0.07),
                          0 10px 20px rgba(0,0,0,0.18),
                          0 20px 40px rgba(0,0,0,0.1);
    --shadow-card-hover:  0 8px 12px rgba(0,174,239,0.08),
                          0 20px 40px rgba(0,0,0,0.28),
                          0 40px 80px rgba(0,0,0,0.15);
    --shadow-glow-sm:     0 0 20px rgba(0,174,239,0.2);
    --shadow-glow-md:     0 0 40px rgba(0,174,239,0.25);
    --shadow-glow-lg:     0 0 80px rgba(0,174,239,0.15);

    /* ── Transitions ── */
    --transition-fast:   all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1,    0.3,  1);
    --transition-slow:   all 0.7s cubic-bezier(0.16, 1,    0.3,  1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-tilt:   transform 0.1s ease-out;
}


/* ── 2. BASE RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-gray);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* ── UI/UX PRO MAX ACCESSIBILITY & INTERACTION ENHANCEMENTS ── */
a, button, .card, .pricing-card, .contact-channel-card, .info-card, .legal-card, .cycle-btn, select, input[type="submit"], input[type="checkbox"], input[type="radio"], .trust-item, .partner-logo {
    cursor: pointer;
}

*:focus-visible {
    outline: 2px solid var(--color-accent) !important;
    outline-offset: 4px !important;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 16px rgba(0, 174, 239, 0.25) !important;
}

/* Global mesh-gradient underlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--mesh-1), var(--mesh-2), var(--mesh-3);
    pointer-events: none;
    z-index: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
    border: 2px solid var(--color-bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw + 0.5rem, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw + 0.5rem, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw + 0.3rem, 2rem); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.2rem, 1.5rem); }

p {
    font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, video, svg { display: block; }

/* Accessibility skip link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10002;
    transition: top 0.3s cubic-bezier(0.16,1,0.3,1);
}
.skip-to-content:focus { top: 1.5rem; outline: none; }

/* WCAG Focus Ring */
:focus-visible {
    outline: 2px solid var(--color-accent) !important;
    outline-offset: 3px !important;
    border-radius: 4px;
}


/* ── 3. PRELOADER ──────────────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), visibility 0.6s;
}

.preloader-content {
    text-align: center;
    max-width: 320px;
    width: 90%;
}

.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.g-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0,174,239,0.5));
}

.outer-ring-anim {
    transform-origin: center;
    animation: rotateRing 3s linear infinite;
}

.g-path-anim {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawG 2s ease-in-out infinite alternate;
}

.pulse-glow {
    position: absolute;
    top: 10%; left: 10%;
    width: 80%; height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,174,239,0.25) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.loader-brand {
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.loader-brand span { color: var(--color-accent); }

.loader-status {
    font-size: 0.8rem;
    color: rgba(221,231,242,0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    min-height: 1.2em;
}

.loader-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(221,231,242,0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.loader-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0,174,239,0.6);
}

.loader-percentage {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 700;
}

@keyframes rotateRing { to { transform: rotate(360deg); } }
@keyframes drawG {
    0%   { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}
@keyframes pulseGlow {
    0%   { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 1; }
}


/* ── 4. CUSTOM CURSOR ──────────────────────────────────────────────────── */
.custom-cursor-dot,
.custom-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.custom-cursor-dot {
    width: 7px; height: 7px;
    background-color: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent);
}

.custom-cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(0,174,239,0.5);
    transition: width 0.3s ease, height 0.3s ease,
                background-color 0.3s ease, border-color 0.3s ease;
}

body.hovering-link .custom-cursor-ring {
    width: 56px; height: 56px;
    background: rgba(0,174,239,0.06);
    border-color: var(--color-accent);
}
body.hovering-link .custom-cursor-dot {
    transform: translate(-50%,-50%) scale(1.5);
}
body.hovering-success .custom-cursor-ring {
    border-color: var(--color-success);
    background: rgba(0,230,118,0.06);
    width: 48px; height: 48px;
}
body.hovering-success .custom-cursor-dot {
    background-color: var(--color-success);
    box-shadow: 0 0 12px var(--color-success);
}

@media (max-width: 1024px) {
    .custom-cursor-dot, .custom-cursor-ring { display: none !important; }
}


/* ── 5. GLASSMORPHISM SYSTEM ───────────────────────────────────────────── */
.glassmorphic {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.glassmorphic-heavy {
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.glassmorphic-light {
    background: rgba(255,255,255,0.028);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.glassmorphic-medium {
    background: var(--glass-bg-medium);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(0,174,239,0.12);
    box-shadow: var(--shadow-card);
}

/* ── UI/UX Pro Max Card Hover Elevation System ── */
.card, .solution-card, .pricing-card, .metric-card, .contact-channel-card, .industry-card, .infra-card, .legal-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover, .solution-card:hover, .metric-card:hover, .industry-card:hover, .infra-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(0, 174, 239, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 174, 239, 0.18);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 174, 239, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 32px rgba(0, 174, 239, 0.25);
}

.contact-channel-card:hover, .legal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 174, 239, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 174, 239, 0.15);
}


/* ── 6. BUTTONS ────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

.btn span {
    position: relative;
    z-index: 3;
    display: block;
}

/* Primary */
.btn-primary {
    color: var(--color-white);
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(0,174,239,0.25), 0 2px 8px rgba(0,0,0,0.2);
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-primary-rev);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.btn-primary:hover {
    box-shadow: 0 10px 28px rgba(0,174,239,0.4), 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0px); }

/* Outline */
.btn-outline {
    color: var(--color-white);
    background: rgba(221,231,242,0.025);
    border-color: rgba(221,231,242,0.18);
}
.btn-outline::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.btn-outline:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0,174,239,0.18);
    transform: translateY(-2px);
}
.btn-outline:hover::before { opacity: 1; }

/* Success / WhatsApp */
.btn-success {
    color: var(--color-white);
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    box-shadow: 0 6px 20px rgba(0,230,118,0.25);
}
.btn-success:hover {
    box-shadow: 0 10px 28px rgba(0,230,118,0.4);
    transform: translateY(-2px);
}

/* Header Recharge CTA */
.header-recharge-btn {
    background:
        linear-gradient(rgba(7,26,46,0.65), rgba(7,26,46,0.65)) padding-box,
        var(--gradient-primary) border-box !important;
    border: 1.5px solid transparent !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--color-white) !important;
    box-shadow: 0 4px 16px rgba(0,174,239,0.18), inset 0 1px 1px rgba(255,255,255,0.08);
    transition: var(--transition-smooth);
    font-weight: 600;
}
.header-recharge-btn::before { display: none !important; }
.header-recharge-btn:hover {
    background:
        linear-gradient(rgba(0,174,239,0.15), rgba(0,174,239,0.15)) padding-box,
        linear-gradient(135deg, #00AEEF 0%, #00E676 100%) border-box !important;
    box-shadow: 0 0 28px rgba(0,174,239,0.5), inset 0 1px 2px rgba(255,255,255,0.15) !important;
    transform: translateY(-2px);
}

.mobile-only-recharge { display: none; }

.full-width { width: 100%; }


/* ── 7. NAVIGATION ─────────────────────────────────────────────────────── */
/* ── TOP BAR STYLING ── */
.top-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1010;
    background: rgba(4, 15, 28, 0.96);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    font-size: 0.825rem;
    height: 38px;
    display: flex;
    align-items: center;
}
.top-bar-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.top-bar-item {
    color: rgba(221, 231, 242, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition-fast);
    font-weight: 500;
}
.top-bar-item i {
    color: var(--color-accent);
    font-size: 0.85rem;
}
.top-bar-item:hover {
    color: var(--color-accent);
}
.top-bar-login-btn {
    color: var(--color-white);
    background: rgba(0, 174, 239, 0.15);
    border: 1px solid rgba(0, 174, 239, 0.35);
    padding: 0.2rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}
.top-bar-login-btn i {
    color: var(--color-accent);
}
.top-bar-login-btn:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow-sm);
}

.main-header {
    position: fixed;
    top: 38px; left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(4,15,28,0.92) !important;
    border-bottom-color: rgba(0,174,239,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-logo-svg { width: 40px; height: 40px; }

.nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.4));
    transition: var(--transition-fast);
}
.nav-logo-img:hover {
    transform: scale(1.05);
}
.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 12px rgba(0, 174, 239, 0.35));
}
.loader-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 174, 239, 0.7));
    position: relative;
    z-index: 2;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-white);
}
.logo-accent { color: var(--color-accent); }

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(221,231,242,0.75);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-link:hover {
    color: var(--color-white);
    background: rgba(0,174,239,0.06);
}
.nav-link:hover::after { width: calc(100% - 1.5rem); }
.nav-link.active { color: var(--color-accent); }
.nav-link.active::after { width: calc(100% - 1.5rem); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.875rem;
    min-height: 44px;
    white-space: nowrap;
}
.nav-phone i { color: var(--color-accent); }
.nav-phone:hover { color: var(--color-accent); }

/* ── Mobile Nav Toggle ── */
.mobile-nav-toggle {
    display: none;
    background: rgba(0,174,239,0.08);
    border: 1px solid rgba(0,174,239,0.15);
    cursor: pointer;
    border-radius: 10px;
    padding: 0;
    z-index: 1200;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.mobile-nav-toggle:hover { background: rgba(0,174,239,0.15); }

.hamburger-bar {
    width: 22px; height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
    display: block;
}

/* ── Mobile Nav Overlay Backdrop ── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4,9,16,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.nav-overlay.visible { opacity: 1; visibility: visible; }

/* ── Full-Screen Mobile Nav ── */
.nav-menu {
    display: flex;
    align-items: center;
}


/* ── 8. HERO SECTION ───────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 125px;
}

#three-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-glow-effects {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0,174,239,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(12,68,124,0.08) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 80px);
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    gap: 3rem;
}

.hero-content {
    max-width: 740px;
    pointer-events: auto;
    padding-bottom: 1rem;
}

.hero-badge { pointer-events: auto; }

.hero-headline {
    margin: 1rem 0 1.75rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.reveal-text {
    display: block;
    overflow: hidden;
}

/* Word-level wrappers injected by JS */
.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.word-inner { display: inline-block; }

.accent-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.2vw + 0.8rem, 1.3rem);
    color: rgba(221,231,242,0.8);
    margin-bottom: 2.5rem;
    max-width: 640px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    pointer-events: auto;
    flex-wrap: wrap;
}

/* ── Hero Floating Glass Cards ── */
.hero-float-cards {
    position: absolute;
    right: clamp(0.5rem, 6%, 5rem);
    top: 50%;
    transform: translateY(-45%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 4;
    pointer-events: auto;
}

.hero-float-card {
    background: rgba(7,26,46,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,174,239,0.18);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    min-width: 175px;
    max-width: 200px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,174,239,0.05);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.hero-float-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.4), transparent);
}

.hero-float-card:nth-child(1) { animation: heroCardFloat1 6s  ease-in-out infinite; }
.hero-float-card:nth-child(2) { animation: heroCardFloat2 7s  ease-in-out infinite 0.5s; }
.hero-float-card:nth-child(3) { animation: heroCardFloat3 8s  ease-in-out infinite 1s; }

.hero-float-card:hover {
    border-color: rgba(0,174,239,0.4);
    transform: translateX(-6px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--shadow-glow-sm);
}

.fc-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(221,231,242,0.45);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.fc-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.fc-sub {
    font-size: 0.72rem;
    color: rgba(221,231,242,0.55);
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fc-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 6px var(--color-success);
    animation: blinkDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.fc-spark {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    margin-top: 0.4rem;
    height: 20px;
}

.fc-spark-bar {
    width: 4px;
    background: rgba(0,174,239,0.3);
    border-radius: 2px 2px 0 0;
    animation: sparkBar 2s ease-in-out infinite;
}
.fc-spark-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
.fc-spark-bar:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.fc-spark-bar:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.fc-spark-bar:nth-child(4) { height: 18px; animation-delay: 0.1s; }
.fc-spark-bar:nth-child(5) { height: 12px; animation-delay: 0.25s; }
.fc-spark-bar:nth-child(6) { height: 16px; animation-delay: 0.05s; }
.fc-spark-bar:nth-child(7) { height: 9px;  animation-delay: 0.35s; }

@keyframes sparkBar {
    0%, 100% { background: rgba(0,174,239,0.3); }
    50%       { background: rgba(0,174,239,0.8); }
}

/* ── Trust Indicators ── */
.hero-trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    pointer-events: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(7,26,46,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(221,231,242,0.06);
    padding: 0.875rem 1rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.trust-item:hover {
    border-color: rgba(0,174,239,0.25);
    background: rgba(12,68,124,0.18);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-sm);
}
.trust-item:hover::before { transform: scaleX(1); }

.trust-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,174,239,0.1);
    border-radius: 10px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.trust-item:hover .trust-icon {
    background: rgba(0,174,239,0.2);
    box-shadow: 0 0 16px rgba(0,174,239,0.3);
}

.trust-text { display: flex; flex-direction: column; }
.trust-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-white);
    line-height: 1.2;
}
.trust-lbl {
    font-size: 0.72rem;
    color: rgba(221,231,242,0.55);
    margin-top: 2px;
    line-height: 1.3;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}
.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: rgba(221,231,242,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(221,231,242,0.25);
    border-radius: 12px;
    position: relative;
}
.wheel {
    width: 3px; height: 7px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%   { top: 5px;  opacity: 1; }
    50%  { top: 16px; opacity: 0; }
    100% { top: 5px;  opacity: 1; }
}


/* ── 9. GLOBAL LAYOUT ──────────────────────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3;
}

.section-padding {
    padding: var(--section-py) 0;
    position: relative;
}

/* ── Section Contrast & Alternating Surface System ── */
.section-surface-elevated {
    background: linear-gradient(180deg, rgba(12, 68, 124, 0.09) 0%, rgba(7, 26, 46, 0.55) 50%, rgba(12, 68, 124, 0.09) 100%);
    border-top: 1px solid rgba(0, 174, 239, 0.12);
    border-bottom: 1px solid rgba(0, 174, 239, 0.12);
    position: relative;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.section-divider-wrap {
    width: 100%;
    padding: 1.5rem 0;
    position: relative;
    z-index: 5;
}

.section-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 174, 239, 0.25) 30%, rgba(0, 174, 239, 0.6) 50%, rgba(0, 174, 239, 0.25) 70%, transparent 100%);
    position: relative;
}

.section-divider-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent), 0 0 4px var(--color-white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 100vw; height: 100%;
    background: var(--gradient-glow);
    z-index: 1;
    pointer-events: none;
}

/* ── Badge ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.25);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.35rem;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.1);
    transition: var(--transition-fast);
}

.badge:hover {
    border-color: rgba(0, 174, 239, 0.45);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.2);
}

.badge-dot {
    width: 7px; height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
    animation: blinkDot 1.6s ease-in-out infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50%       { opacity: 1; transform: scale(1.15); }
}

/* ── Section Header ── */
.section-header {
    max-width: 680px;
    margin-bottom: var(--header-gap);
}
.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-title { margin-bottom: 1.25rem; }
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
.section-desc { color: rgba(221,231,242,0.68); margin-bottom: 1.25rem; }
.section-desc.max-width-center {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}


/* ── 10. PARTNERS MARQUEE ──────────────────────────────────────────────── */
.partners-section {
    background: rgba(4,9,16,0.5);
    border-top:    1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.partners-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.partners-marquee {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 4rem;
    animation: scrollMarquee 30s linear infinite;
}
.partners-marquee-container:hover .partners-marquee { animation-play-state: paused; }
.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(221,231,242,0.35);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition-fast);
}
.partner-logo i { font-size: 1.5rem; }
.partner-logo:hover { color: var(--color-accent); }
@keyframes scrollMarquee {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}


/* ── 11. ABOUT SECTION ─────────────────────────────────────────────────── */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 0;
}

.visual-card {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.5), transparent);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(221,231,242,0.04);
    padding-bottom: 0.75rem;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.red    { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green  { background: #27c93f; }
.browser-title {
    font-size: 0.72rem;
    color: rgba(221,231,242,0.35);
    margin-left: auto;
    font-family: var(--font-mono);
}

.visual-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.stat-circle {
    position: relative;
    width: 170px; height: 170px;
    display: flex; align-items: center; justify-content: center;
}
.progress-ring-svg {
    position: absolute; width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.stat-progress-bar { filter: drop-shadow(0 0 8px rgba(0,174,239,0.5)); }
.stat-circle-content {
    display: flex; flex-direction: column; align-items: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem; font-weight: 700;
    color: var(--color-white); line-height: 1;
}
.stat-unit { font-size: 0.9rem; color: var(--color-accent); font-weight: 600; letter-spacing: 1px; }

.visual-chart {
    width: 100%;
    background: rgba(7,26,46,0.6);
    border: 1px solid rgba(221,231,242,0.04);
    border-radius: 14px;
    padding: 1rem;
}
.chart-line-bg {
    height: 55px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.chart-pulse-path {
    width: 200%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60'%3E%3Cpath d='M0,30 L60,30 L70,10 L80,50 L90,20 L100,40 L110,30 L180,30 L190,15 L200,45 L210,10 L220,50 L230,30 L300,30' fill='none' stroke='%2300AEEF' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 50% 100%;
    position: absolute;
    animation: movePulseChart 3s linear infinite;
}
@keyframes movePulseChart {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: rgba(221,231,242,0.45);
}

.floating-stat {
    position: absolute;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    z-index: 10;
    min-width: 155px;
}
.stat-1 { top: 8%;  left: -18%; }
.stat-2 { bottom: 8%; right: -18%; }

.float-stat-val {
    font-size: 1.5rem; font-weight: 700;
    line-height: 1.1; margin-bottom: 0.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.float-stat-lbl {
    font-size: 0.72rem;
    color: rgba(221,231,242,0.65);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.about-content .section-desc { max-width: 520px; }
.about-actions { margin-top: 2rem; }


/* ── 12. SOLUTIONS GRID & CARD 3D TILT ────────────────────────────────── */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
}

/* 3D Tilt Container */
.card-3d-wrap {
    perspective: 1000px;
    height: 100%;
}

.solution-card {
    position: relative;
    border-radius: 20px;
    padding: 2.25rem 1.875rem;
    cursor: pointer;
    z-index: 1;
    height: 100%;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    background: rgba(12,68,124,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Gradient border overlay on hover */
.card-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    background: var(--gradient-primary);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Glare overlay */
.card-glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255,255,255,0.06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 4;
}

.solution-card:hover { box-shadow: var(--shadow-card-hover); }
.solution-card:hover .card-border-glow { opacity: 1; filter: blur(1px); }
.solution-card:hover .card-glare { opacity: 1; }

.card-content {
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    height: 100%;
    display: flex; flex-direction: column;
    position: relative; z-index: 2;
}

.card-icon-wrap {
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    background: rgba(0,174,239,0.08);
    border: 1px solid rgba(0,174,239,0.12);
    transition: var(--transition-smooth);
}
.solution-card:hover .card-icon-wrap {
    background: rgba(0,174,239,0.16);
    border-color: rgba(0,174,239,0.3);
    box-shadow: 0 0 20px rgba(0,174,239,0.2);
    transform: scale(1.1) rotate(-3deg);
}

.card-icon {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.card-title { margin-bottom: 0.875rem; font-size: 1.25rem; }
.card-desc {
    color: rgba(221,231,242,0.65);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}
.card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    transition: var(--transition-fast);
}
.card-link i { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.card-link:hover i { transform: translateX(8px); }


/* ── 13. INFRASTRUCTURE SECTION ────────────────────────────────────────── */
.infrastructure-interactive {
    background: rgba(4,9,16,0.4);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.infrastructure-interactive::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.4), transparent);
}

.svg-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.infra-svg { width: 100%; height: auto; overflow: visible; }

.infra-node {
    cursor: pointer;
    transition: r 0.3s ease, stroke-width 0.3s ease;
}
.infra-node:hover {
    filter: url(#glow);
}

/* Pulse ring animation around nodes */
.infra-node-ring {
    transform-origin: center;
    animation: nodeRingPulse 2.5s ease-out infinite;
    opacity: 0;
}
.infra-node-ring.ring-2 { animation-delay: 0.8s; }
.infra-node-ring.ring-3 { animation-delay: 1.6s; }

@keyframes nodeRingPulse {
    0%   { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0;   transform: scale(2.8); }
}

.pulse-path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
}

/* Animated data-packet dot on paths */
.data-packet {
    opacity: 0;
}

.infra-step {
    position: absolute;
    top: calc(150px / 300px * 100% + 44px);
    transform: translateX(-50%);
    width: 200px;
    z-index: 10;
}

.infra-card {
    padding: 1.25rem 1rem;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.infra-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.3), transparent);
}
.infra-step:hover .infra-card {
    transform: translateY(-6px);
    border-color: rgba(0,174,239,0.3);
    box-shadow: 0 12px 30px rgba(0,174,239,0.15);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(0,174,239,0.1);
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(0,174,239,0.2);
}
.infra-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.infra-card p  { font-size: 0.72rem; color: rgba(221,231,242,0.45); margin-bottom: 0.5rem; line-height: 1.4; }
.counter-holder {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 700;
}


/* ── 14. WHY GIGA SECTION ──────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
}

.metric-card {
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.metric-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.metric-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-card-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}
.metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,174,239,0.25);
    box-shadow: var(--shadow-card-hover);
}
.metric-card:hover::before { transform: scaleX(1); }
.metric-card:hover::after  { opacity: 1; }

.metric-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    height: 64px; width: 64px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0,174,239,0.07);
    border-radius: 50%;
    border: 1px solid rgba(0,174,239,0.12);
    position: relative; z-index: 1;
    transition: var(--transition-smooth);
}
.metric-card:hover .metric-icon {
    background: rgba(0,174,239,0.15);
    box-shadow: 0 0 20px rgba(0,174,239,0.25);
    transform: scale(1.1);
}

.metric-title { font-size: 1.15rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.metric-desc  { font-size: 0.875rem; color: rgba(221,231,242,0.6); margin-bottom: 1.25rem; line-height: 1.55; position: relative; z-index: 1; }
.metric-counter {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative; z-index: 1;
}


/* ── 15. INDUSTRIES GRID ───────────────────────────────────────────────── */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
}

.industry-card {
    border-radius: 18px;
    padding: 1.875rem 1.375rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.industry-card::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-card-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}
.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0,174,239,0.3);
    box-shadow: 0 16px 40px rgba(0,174,239,0.15);
}
.industry-card:hover::before { opacity: 1; }

.industry-icon {
    font-size: 1.75rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    height: 56px; width: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0,174,239,0.07);
    border-radius: 14px;
    border: 1px solid rgba(0,174,239,0.1);
    transition: var(--transition-smooth);
    position: relative; z-index: 1;
}
.industry-card:hover .industry-icon {
    background: rgba(0,174,239,0.15);
    box-shadow: 0 0 18px rgba(0,174,239,0.3);
    transform: scale(1.12) rotate(-5deg);
}
.industry-name { font-size: 1.05rem; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.industry-card p { font-size: 0.8rem; color: rgba(221,231,242,0.5); line-height: 1.5; position: relative; z-index: 1; }


/* ── 16. BROADBAND PLANS ───────────────────────────────────────────────── */
.term-toggle-container {
    display: inline-flex;
    padding: 5px;
    border-radius: 50px;
    gap: 4px;
    margin-bottom: 2rem;
}

.term-btn {
    border: none;
    background: transparent;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(221,231,242,0.55);
    cursor: pointer;
    transition: var(--transition-fast);
    min-height: 40px;
}
.term-btn:hover { color: var(--color-white); }
.term-btn.active {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(0,174,239,0.3);
}

.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    border-color: rgba(0,230,118,0.25);
    color: var(--color-success);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 1;
    transition: var(--transition-smooth);
}
.promo-banner.hidden {
    opacity: 0; transform: scale(0.9);
    pointer-events: none; height: 0; padding: 0; margin: 0;
}
.pulse-icon { animation: scalePulse 1.5s infinite alternate; }
@keyframes scalePulse {
    0%   { transform: scale(1); }
    100% { transform: scale(1.22); }
}

/* ── Plans Grid ── */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
    margin-top: 2.5rem;
    align-items: start;
}

.pricing-card {
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.2), transparent);
}

.pricing-card.highlighted {
    border-color: rgba(0,174,239,0.45);
    background: linear-gradient(180deg, rgba(0,174,239,0.1) 0%, rgba(12,68,124,0.15) 40%, rgba(7,26,46,0.8) 100%);
    box-shadow: 0 0 0 1px rgba(0,174,239,0.2),
                0 20px 60px rgba(0,174,239,0.2),
                0 40px 100px rgba(0,0,0,0.3);
    transform: scale(1.04) translateY(-8px);
    z-index: 2;
}

/* Most Popular ribbon */
.pricing-card.highlighted::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.35rem 1.25rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 16px rgba(0,174,239,0.4);
    white-space: nowrap;
}

.pricing-card:hover {
    border-color: rgba(0,174,239,0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.pricing-card.highlighted:hover {
    transform: scale(1.04) translateY(-14px);
    box-shadow: 0 0 0 1px rgba(0,174,239,0.3),
                0 24px 70px rgba(0,174,239,0.25),
                0 48px 120px rgba(0,0,0,0.3);
}

.plan-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.22rem 0.7rem;
    background: rgba(221,231,242,0.04);
    border: 1px solid rgba(221,231,242,0.08);
    border-radius: 50px;
    color: rgba(221,231,242,0.5);
}
.pricing-card.highlighted .plan-badge { display: none; }

.plan-name { font-size: 1.35rem; margin-bottom: 1.25rem; margin-top: 0.5rem; }

.plan-speed {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}
.speed-num {
    font-size: 2.8rem; font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    font-family: var(--font-heading);
}
.pricing-card.highlighted .speed-num {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.speed-unit { font-size: 1.1rem; color: var(--color-accent); font-weight: 600; }

.plan-price { display: flex; align-items: baseline; margin-bottom: 0.75rem; }
.currency { font-size: 1.3rem; font-weight: 600; margin-right: 2px; color: rgba(221,231,242,0.7); }
.price-val { font-size: 2rem; font-weight: 800; color: var(--color-white); font-family: var(--font-heading); }
.duration { font-size: 0.8rem; color: rgba(221,231,242,0.45); margin-left: 4px; }

.validity-bonus {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-success);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
    display: flex; align-items: center; gap: 4px;
}
.validity-bonus::before { content: '🎁'; font-size: 0.75rem; }

.plan-features {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}
.plan-features li {
    display: flex; align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(221,231,242,0.8);
}
.plan-features li i { color: var(--color-accent); font-size: 0.9rem; flex-shrink: 0; }
.pricing-card.highlighted .plan-features li i { color: var(--color-success); }
.card-footer { margin-top: auto; }


/* ── 17. INSTALLATION TRUST ────────────────────────────────────────────── */
.installation-trust-container {
    margin-top: 4rem;
    background: rgba(4,9,16,0.4);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.75rem 2.5rem;
    position: relative;
    z-index: 10;
}
.installation-trust-container::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,230,118,0.4), transparent);
}

.trust-banner-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 2.25rem;
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.install-card {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.625rem;
    transition: var(--transition-smooth);
}
.install-card:hover { transform: translateY(-5px); }

.install-icon {
    font-size: 1.6rem;
    color: var(--color-success);
    background: rgba(0,230,118,0.07);
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.375rem;
    border: 1px solid rgba(0,230,118,0.12);
    transition: var(--transition-smooth);
}
.install-card:hover .install-icon {
    background: var(--color-success);
    color: var(--color-bg);
    box-shadow: 0 0 20px rgba(0,230,118,0.4);
    transform: scale(1.1);
}
.install-card h4 { font-size: 1.05rem; color: var(--color-white); }
.install-card p  { font-size: 0.8rem; color: rgba(221,231,242,0.55); line-height: 1.45; }


/* ── 18. TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials-slider { padding: 1.5rem 0 4rem; }

.testimonial-card {
    border-radius: 24px;
    padding: 2.5rem 2.25rem;
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.25), transparent);
}
.testimonial-card:hover {
    border-color: rgba(0,174,239,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.swiper-slide { height: auto; }
.quote-icon { font-size: 2.2rem; color: rgba(0,174,239,0.12); line-height: 1; margin-bottom: 1.25rem; }
.rating { display: flex; gap: 3px; margin-bottom: 1.25rem; color: #ffb300; }
.feedback {
    font-size: 0.975rem;
    font-style: italic;
    color: rgba(221,231,242,0.82);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}
.client-info { display: flex; align-items: center; gap: 0.875rem; }
.client-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(0,174,239,0.1);
    border: 1px solid rgba(0,174,239,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-accent);
    font-size: 1.1rem;
}
.client-details h4 { font-size: 0.95rem; margin-bottom: 0.1rem; }
.client-role { font-size: 0.72rem; color: rgba(221,231,242,0.45); }
.testimonials-slider .swiper-pagination-bullet { background: rgba(221,231,242,0.2); opacity: 1; }
.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--color-accent);
    width: 20px; border-radius: 10px;
    transition: var(--transition-fast);
}


/* ── 19. FAQ ACCORDION ─────────────────────────────────────────────────── */
.faq-accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item:hover { border-color: rgba(0,174,239,0.15); }

.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.375rem 1.875rem;
    display: flex; justify-content: space-between; align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    min-height: 48px;
    gap: 1rem;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,174,239,0.07);
    border-radius: 50%;
    border: 1px solid rgba(0,174,239,0.15);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
    padding: 0 1.875rem;
}
.faq-body p { font-size: 0.9rem; color: rgba(221,231,242,0.7); line-height: 1.65; padding-bottom: 1.5rem; }
.faq-item.active { border-color: rgba(0,174,239,0.22); }
.faq-item.active .faq-header { color: var(--color-accent); }
.faq-item.active .faq-icon { transform: rotate(45deg); background: rgba(0,174,239,0.15); }


/* ── 20. CONTACT SECTION ───────────────────────────────────────────────── */
.contact-grid { align-items: start; gap: 3rem; }

.contact-form-container {
    border-radius: 24px;
    padding: 2.75rem;
    position: relative;
    overflow: hidden;
}
.contact-form-container::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.4), transparent);
}

.form-group {
    margin-bottom: 1.375rem;
    display: flex; flex-direction: column; gap: 0.45rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group label {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(221,231,242,0.75);
    letter-spacing: 0.3px;
}
.form-group label .required { color: var(--color-error); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(7,26,46,0.65);
    border: 1px solid rgba(221,231,242,0.1);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    width: 100%;
    min-height: 44px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(221,231,242,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
    outline: none;
    background: rgba(7,26,46,0.85);
}
.form-group select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300AEEF'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    cursor: pointer;
}
.form-group select option { background: #071A2E; color: var(--color-white); }
.error-msg { color: var(--color-error); font-size: 0.72rem; display: none; margin-top: 0.2rem; }

.form-status {
    display: flex; gap: 1rem;
    padding: 1.375rem 1.25rem;
    border-radius: 14px;
    margin-top: 1.25rem;
    transition: var(--transition-smooth);
}
.form-status.hidden  { display: none !important; }
.form-status.success { border-color: rgba(0,230,118,0.3); color: var(--color-success); }
.form-status.error   { border-color: rgba(255,82,82,0.3); color: var(--color-error); }
.form-status i { font-size: 1.6rem; margin-top: 0.1rem; flex-shrink: 0; }
.status-content h4 { margin-bottom: 0.2rem; color: inherit; font-size: 1rem; }
.status-content p  { font-size: 0.8rem; color: rgba(221,231,242,0.7); line-height: 1.4; }

/* ── Contact Info Panel ── */
.contact-info-panel { display: flex; flex-direction: column; gap: 1.125rem; }

.info-card {
    border-radius: 16px;
    padding: 1.375rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-smooth);
}
.info-card:hover {
    border-color: rgba(0,174,239,0.18);
    transform: translateX(4px);
}

.info-icon {
    font-size: 1.25rem;
    color: var(--color-accent);
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,174,239,0.07);
    border: 1px solid rgba(0,174,239,0.12);
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.info-card:hover .info-icon {
    background: rgba(0,174,239,0.15);
    box-shadow: 0 0 16px rgba(0,174,239,0.25);
}
.info-text h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.info-text p  { font-size: 0.875rem; color: rgba(221,231,242,0.65); line-height: 1.5; }
.info-text p a { color: var(--color-accent); }
.info-text p a:hover { text-decoration: underline; }

.direct-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.maps-placeholder {
    border-radius: 18px;
    overflow: hidden;
    height: 220px;
    position: relative;
    border: 1px solid var(--glass-border);
}
.map-inner { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; }
.map-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; transition: var(--transition-smooth); border: 0; }
.map-inner iframe:hover { opacity: 1; }


/* ── 21. STICKY MOBILE CTA BAR ─────────────────────────────────────────── */
.sticky-cta-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.6rem 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 0.625rem;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.45);
}

.sticky-cta-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.775rem;
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    border-radius: 28px;
    color: var(--color-white);
    flex: 1; text-align: center;
    min-height: 42px;
    transition: var(--transition-fast);
}
.sticky-cta-btn.phone-btn {
    background: rgba(12,68,124,0.45);
    border: 1px solid rgba(221,231,242,0.1);
}
.sticky-cta-btn.phone-btn:hover { background: rgba(12,68,124,0.7); }
.sticky-cta-btn.whatsapp-btn {
    background: #25d366;
    box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.sticky-cta-btn.whatsapp-btn:hover { background: #20b958; }
.sticky-cta-btn.cta-btn {
    background: var(--gradient-primary);
    box-shadow: 0 4px 14px rgba(0,174,239,0.25);
}
.sticky-cta-btn.cta-btn:hover { box-shadow: 0 6px 20px rgba(0,174,239,0.4); }


/* ── 22. FOOTER ────────────────────────────────────────────────────────── */
.main-footer {
    background: var(--color-bg-deep);
    border-top: 1px solid rgba(221,231,242,0.04);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 10;
}
.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 40%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,174,239,0.3), transparent);
}

.footer-top { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-logo-svg { width: 40px; height: 40px; }
.brand-pitch { font-size: 0.875rem; color: rgba(221,231,242,0.55); margin-bottom: 1.5rem; line-height: 1.6; max-width: 260px; }

.footer-links-grid { display: contents; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 1.25rem; letter-spacing: 0.5px; color: var(--color-white); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
    font-size: 0.85rem;
    color: rgba(221,231,242,0.5);
    min-height: 36px;
    display: inline-flex; align-items: center;
    transition: var(--transition-fast);
}
.footer-col ul a:hover { color: var(--color-accent); padding-left: 5px; }
.footer-col p { font-size: 0.82rem; color: rgba(221,231,242,0.45); margin-bottom: 1rem; line-height: 1.5; }

.newsletter-form {
    display: flex;
    border: 1px solid rgba(221,231,242,0.1);
    background: rgba(7,26,46,0.55);
    border-radius: 50px;
    overflow: hidden;
    padding: 3px;
}
.newsletter-form input {
    background: transparent; border: none;
    padding: 0.55rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    flex-grow: 1;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(221,231,242,0.3); }
.newsletter-form button {
    border: none; width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.newsletter-form button:hover { transform: scale(1.08); }

.footer-bottom { border-top: 1px solid rgba(221,231,242,0.04); padding-top: 1.75rem; }
.bottom-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.775rem; color: rgba(221,231,242,0.35);
}
.legal-links { display: flex; gap: 0.75rem; align-items: center; }
.legal-links .separator { color: rgba(221,231,242,0.15); }
.legal-links a { min-height: 36px; display: inline-flex; align-items: center; }
.legal-links a:hover { color: var(--color-accent); }


/* ── 23. BACKGROUND SYSTEM & ANIMATIONS ───────────────────────────────── */

/* Ambient Blob Glows */
.blob-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,174,239,0.06) 0%, transparent 70%);
    animation: blobFloat1 18s ease-in-out infinite;
}
.blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(12,68,124,0.1) 0%, transparent 70%);
    animation: blobFloat2 22s ease-in-out infinite 2s;
}
.blob-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,230,118,0.04) 0%, transparent 70%);
    animation: blobFloat3 26s ease-in-out infinite 4s;
}

/* Section-specific blob positions */
.about-section    .blob-1 { top: -20%;  left: -15%; }
.solutions-section .blob-1 { top: 10%;  right: -15%; }
.infrastructure-section .blob-1 { top: 20%; left: 30%; }
.why-section      .blob-1 { bottom: 0%; right: 0%; }
.industries-section .blob-1 { top: 0%;  left: -10%; }
.plans-section    .blob-1 { top: 10%;  right: -10%; }
.testimonials-section .blob-1 { top: 0%; left: 30%; }
.contact-section  .blob-1 { bottom: 0%; right: 0%; }

/* Keyframe Animations */
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0,  0)   scale(1);   }
    33%       { transform: translate(40px, -30px) scale(1.1); }
    66%       { transform: translate(-20px, 20px) scale(0.9); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0,  0)   scale(1);   }
    50%       { transform: translate(-35px, 25px) scale(1.08); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(0,  0)   scale(1);   }
    40%       { transform: translate(20px, -20px) scale(1.06); }
    80%       { transform: translate(-15px, 15px) scale(0.94); }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%;   }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%;   }
}

@keyframes heroCardFloat1 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes heroCardFloat2 {
    0%, 100% { transform: translateY(-5px); }
    50%       { transform: translateY(8px); }
}
@keyframes heroCardFloat3 {
    0%, 100% { transform: translateY(3px); }
    50%       { transform: translateY(-8px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0,174,239,0.15); }
    50%       { box-shadow: 0 0 50px rgba(0,174,239,0.4); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* GSAP Reveal helper classes */
.gsap-reveal {
    opacity: 0;
    transform: translateY(24px);
}
.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
}
.gsap-reveal-right {
    opacity: 0;
    transform: translateX(30px);
}
.gsap-reveal-scale {
    opacity: 0;
    transform: scale(0.94);
}


/* ── 24. RESPONSIVE BREAKPOINTS ────────────────────────────────────────── */

/* ──── 1440px+ ──── */
@media (min-width: 1440px) {
    .container { max-width: 1400px; }
}

/* ──── 1280px–1440px ──── */
@media (min-width: 1280px) and (max-width: 1440px) {
    .hero-float-cards { right: 2rem; }
}

/* ──── 1024px–1280px ──── */
@media (min-width: 1024px) and (max-width: 1280px) {
    .solutions-grid { gap: 1.25rem; }
    .plans-grid { gap: 1rem; grid-template-columns: repeat(4, 1fr); }
    .pricing-card { padding: 2rem 1.4rem; }
    .plan-features li { font-size: 0.82rem; }
    .speed-num { font-size: 2.4rem; }
    .price-val { font-size: 1.8rem; }
    .footer-top { grid-template-columns: 1.2fr repeat(4, 1fr); gap: 2rem; }
    .hero-float-cards { display: none; }
}

/* ──── 768px–1024px (Tablet) ──── */
@media (min-width: 768px) and (max-width: 1024px) {
    :root { --section-py: clamp(4rem, 8vw, 6rem); }
    .nav-list { gap: 0; }
    .nav-link { font-size: 0.82rem; padding: 0.5rem 0.5rem; }
    .nav-actions { gap: 0.75rem; }
    .nav-phone { display: none; }
    .hero-trust-indicators { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .pricing-card.highlighted { transform: scale(1); }
    .pricing-card.highlighted:hover { transform: translateY(-8px) scale(1); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .installation-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-float-cards { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .direct-actions { grid-template-columns: 1fr 1fr; }
}

/* ──── Max 768px (Mobile) ──── */
@media (max-width: 768px) {
    :root {
        --section-py: clamp(3.5rem, 8vw, 5rem);
        --header-gap: clamp(2rem, 5vw, 3rem);
    }

    body { padding-bottom: 70px; }

    /* Nav */
    .mobile-nav-toggle { display: flex; }
    .nav-phone { display: none; }
    .nav-actions .nav-phone,
    .nav-actions .header-recharge-btn,
    .nav-actions .btn { display: none; }

    /* Full-Screen Mobile Nav */
    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: rgba(4,9,16,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 6rem 2.5rem 3rem;
        border: none;
        /* Clip-path reveal: closed state */
        clip-path: circle(0% at calc(100% - 30px) 30px);
        transition: clip-path 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
    }
    .nav-menu.open {
        clip-path: circle(150% at calc(100% - 30px) 30px);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    .nav-list li { opacity: 0; transform: translateX(30px); }
    .nav-menu.open .nav-list li {
        opacity: 1; transform: translateX(0);
    }
    .nav-menu.open .nav-list li:nth-child(1) { transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s; }
    .nav-menu.open .nav-list li:nth-child(2) { transition: opacity 0.4s ease 0.27s, transform 0.4s ease 0.27s; }
    .nav-menu.open .nav-list li:nth-child(3) { transition: opacity 0.4s ease 0.34s, transform 0.4s ease 0.34s; }
    .nav-menu.open .nav-list li:nth-child(4) { transition: opacity 0.4s ease 0.41s, transform 0.4s ease 0.41s; }
    .nav-menu.open .nav-list li:nth-child(5) { transition: opacity 0.4s ease 0.48s, transform 0.4s ease 0.48s; }
    .nav-menu.open .nav-list li:nth-child(6) { transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s; }
    .nav-menu.open .nav-list li:nth-child(7) { transition: opacity 0.4s ease 0.62s, transform 0.4s ease 0.62s; }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        padding: 0.875rem 0;
        width: 100%;
        color: rgba(221,231,242,0.75);
        border-radius: 0;
        border-bottom: 1px solid rgba(221,231,242,0.05);
    }
    .nav-link::after { display: none; }
    .nav-link:hover { color: var(--color-accent); background: none; }

    .mobile-only-recharge {
        display: block;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0,174,239,0.12);
    }
    .mobile-only-recharge .header-recharge-btn {
        display: flex; width: 100%;
        text-align: center; justify-content: center;
    }

    /* Hamburger → X */
    .mobile-nav-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7px)  rotate(45deg); }
    .mobile-nav-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .mobile-nav-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Layout */
    .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { order: -1; }
    .floating-stat { position: static; margin-top: 1rem; width: 100%; }
    .stat-1, .stat-2 { position: static; }

    /* Grids */
    .solutions-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .pricing-card.highlighted {
        transform: scale(1);
        order: -1;
    }
    .pricing-card.highlighted:hover { transform: translateY(-6px) scale(1); }
    .installation-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .bottom-row { flex-direction: column; gap: 1rem; text-align: center; }

    /* Hero */
    .hero-float-cards { display: none; }
    .hero-trust-indicators { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .hero-ctas { flex-direction: column; gap: 0.75rem; }
    .hero-ctas .btn { width: 100%; }

    /* Infrastructure */
    .infrastructure-interactive { padding: 2rem 1rem 1.5rem; }
    .svg-container { display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
    .infra-svg { display: none; }
    .infra-step { position: static; transform: none; width: 100%; max-width: 340px; }
    .infra-card { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
    .infra-card h4 { font-size: 1rem; }
    .infra-card p  { font-size: 0.82rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-container { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .direct-actions { grid-template-columns: 1fr 1fr; }

    /* Sticky CTA Bar */
    .sticky-cta-bar { display: flex; }
}

/* ──── Max 480px (Large Mobile) ──── */
@media (max-width: 480px) {
    :root { --section-py: 3.5rem; }
    .container { padding: 0 1rem; }
    .nav-container { padding: 0.875rem 1rem; }
    .btn { padding: 0.8rem 1.6rem; font-size: 0.875rem; }
    .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .hero-trust-indicators { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
    .trust-item { padding: 0.75rem; gap: 0.6rem; }
    .trust-val { font-size: 0.95rem; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
    .installation-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .direct-actions { grid-template-columns: 1fr; gap: 0.75rem; }
    .info-card { padding: 1rem; }
    .contact-form-container { padding: 1.5rem 1.25rem; }
    .pricing-card { padding: 2rem 1.375rem; }
    .hero-headline { letter-spacing: -0.025em; }
    .footer-top { gap: 2rem; }
    .installation-trust-container { padding: 2rem 1.5rem; }
    .maps-placeholder { height: 200px; }
}

/* ──── Max 375px (Standard Mobile) ──── */
@media (max-width: 375px) {
    :root { --section-py: 3rem; }
    .logo-text { font-size: 1.15rem; }
    .hero-trust-indicators { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .trust-icon { width: 34px; height: 34px; font-size: 1rem; }
    .industry-grid { gap: 0.625rem; }
    .footer-top { gap: 1.75rem; }
    .why-grid, .solutions-grid { gap: 1rem; }
    .nav-link { font-size: 1.3rem; }
}

/* ──── Max 320px (Small Mobile) ──── */
@media (max-width: 320px) {
    :root { --section-py: 2.5rem; }
    .container { padding: 0 0.875rem; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.55rem; }
    .hero-trust-indicators { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .trust-item { padding: 0.625rem 0.5rem; }
    .trust-lbl { font-size: 0.65rem; }
    .industry-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .installation-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
    .pricing-card { padding: 1.75rem 1.125rem; }
}

/* ==========================================================================
   19. SUBPAGES & LEGAL POLICIES SYSTEM
   ========================================================================== */

/* ── Breadcrumb Navigation ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}
.breadcrumb a:hover {
    color: var(--color-white);
    text-decoration: underline;
}
.breadcrumb-separator {
    color: rgba(221, 231, 242, 0.4);
}

/* ── Page Hero Header ── */
.subpage-hero {
    position: relative;
    padding: calc(115px + var(--section-py) * 0.4) 0 calc(var(--section-py) * 0.5);
    background: radial-gradient(circle at 50% 0%, rgba(0, 174, 239, 0.15) 0%, rgba(7, 26, 46, 0.98) 70%);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}
.subpage-hero-content {
    max-width: 800px;
}
.subpage-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-16);
}
.subpage-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-gray);
    opacity: 0.9;
    line-height: 1.6;
}
.page-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.3);
    border-radius: 50px;
    font-size: 0.825rem;
    color: var(--color-accent);
    margin-top: var(--space-16);
}

/* ── Legal Layout (Terms, Privacy, Refund) ── */
.legal-section {
    padding: var(--section-py) 0;
}
.legal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-48);
    align-items: start;
}
@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
.legal-sidebar {
    position: sticky;
    top: 100px;
    padding: var(--space-24);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-blur);
}
.legal-nav-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--glass-border);
}
.legal-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}
.legal-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
}
.legal-nav-link:hover,
.legal-nav-link.active {
    background: rgba(0, 174, 239, 0.15);
    color: var(--color-accent);
    font-weight: 600;
}

.legal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
}
.legal-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 20px;
    background: var(--glass-bg-heavy);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}
.legal-card:hover {
    border-color: var(--glass-border-hover);
}
.legal-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-16);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.legal-card-title i {
    color: var(--color-accent);
}
.legal-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-gray);
    margin-bottom: var(--space-16);
}
.legal-card p:last-child {
    margin-bottom: 0;
}
.legal-card ul, .legal-card ol {
    margin-left: 1.5rem;
    margin-bottom: var(--space-16);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.legal-card li {
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--color-gray);
}
.policy-notice {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 174, 239, 0.08);
    border-left: 4px solid var(--color-accent);
    margin: var(--space-20) 0;
}
.policy-notice.warning {
    background: rgba(255, 82, 82, 0.08);
    border-left-color: var(--color-error);
}
.policy-notice.success {
    background: rgba(0, 230, 118, 0.08);
    border-left-color: var(--color-success);
}
.policy-notice-title {
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.35rem;
}
.policy-notice p {
    margin-bottom: 0;
    font-size: 0.925rem;
}

/* ── Plan Comparison Table (Pricing Page) ── */
.pricing-cycle-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-48);
    background: rgba(7, 26, 46, 0.8);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}
.cycle-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    border: none;
    background: transparent;
    color: var(--color-gray);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.cycle-btn.active {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-sm);
}
.cycle-btn .discount-tag {
    background: var(--color-success);
    color: #040f1c;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 10px;
    text-transform: uppercase;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-heavy);
    margin-top: var(--space-48);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
}
.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}
.comparison-table th {
    background: rgba(12, 68, 124, 0.25);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
}
.comparison-table tr:hover td {
    background: rgba(0, 174, 239, 0.04);
}
.comparison-table td {
    color: var(--color-gray);
    font-size: 0.95rem;
}
.check-icon { color: var(--color-success); font-weight: 800; }
.times-icon { color: rgba(221, 231, 242, 0.3); }

/* ── Contact Page Grid & Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-48);
    align-items: start;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
}
@media (max-width: 576px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}
.contact-channel-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--glass-bg-heavy);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-fast);
}
.contact-channel-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}
.contact-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 174, 239, 0.12);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.contact-channel-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
}
.contact-channel-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;
}
.contact-channel-card a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

/* ──── Reduced Motion ──── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-float-card { animation: none !important; }
    .blob-glow { animation: none !important; }
    .partners-marquee { animation-play-state: paused !important; }
    .scroll-indicator { display: none; }
}

