    /* Hero Section */
    .hero-section {
        min-height: auto;
        /*display: flex;*/
        align-items: center;
        position: relative;
        overflow: hidden;
        background: #ffffff;
        padding: 8rem 0 2rem;
    }

    /* Sunset sun circle - fixed px so it won't scale with page zoom */
    .hero-section::before {
        content: '';
        position: absolute;
        width: 2500px;
        height: 2500px;
        top: -1000px;
        left: -1060px;
        background: radial-gradient(circle at 50% 50%,
            rgba(234, 88, 12, 0.52) 0%,
            rgba(239, 108, 40, 0.4) 15%,
            rgba(249, 115, 22, 0.3) 30%,
            rgba(251, 146, 60, 0.18) 45%,
            rgba(253, 186, 116, 0.08) 60%,
            transparent 75%);
        z-index: 0;
        pointer-events: none;
    }

    /* Inner sun core glow - fixed px, centered near header */
    .hero-section::after {
        content: '';
        position: absolute;
        width: 1500px;
        height: 1500px;
        top: -650px;
        left: -600px;
        border-radius: 50%;
        background: radial-gradient(circle at 50% 50%,
            rgba(234, 88, 12, 0.35) 0%,
            rgba(249, 115, 22, 0.2) 25%,
            rgba(251, 146, 60, 0.08) 50%,
            transparent 70%);
        z-index: 0;
        pointer-events: none;
    }

    /* Decorative shapes layer */
    .hero-decor {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .hero-decor-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        display: none;
    }

    .hero-decor-shape:nth-child(1) {
        width: 200px;
        height: 160px;
        top: 15%;
        right: 12%;
        background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, 0.7) 0%, rgba(224, 242, 254, 0.2) 50%, transparent 80%);
        border: none;
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
        animation-delay: 0.3s;
        animation-duration: 18s;
        animation-name: shapeAppear, shapeDrift;
        animation-iteration-count: 1, infinite;
        animation-timing-function: ease-out, ease-in-out;
        animation-fill-mode: forwards, none;
        animation-delay: 0.3s, 1.8s;
        filter: blur(8px);
    }

    .hero-decor-shape:nth-child(2) {
        width: 150px;
        height: 100px;
        bottom: 20%;
        left: 8%;
        background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.65) 0%, rgba(254, 243, 199, 0.15) 50%, transparent 80%);
        border: none;
        border-radius: 50% 60% 55% 45% / 45% 50% 55% 50%;
        animation-delay: 0.6s;
        filter: blur(6px);
    }

    .hero-decor-shape:nth-child(3) {
        width: 100px;
        height: 70px;
        top: 35%;
        left: 15%;
        background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, rgba(186, 230, 253, 0.1) 60%, transparent 80%);
        border: none;
        border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
        animation-delay: 0.9s;
        animation-duration: 20s;
        animation-name: shapeAppear, shapeDrift;
        animation-iteration-count: 1, infinite;
        animation-timing-function: ease-out, ease-in-out;
        animation-fill-mode: forwards, none;
        animation-delay: 0.9s, 2.4s;
        filter: blur(5px);
    }

    .hero-decor-shape:nth-child(4) {
        width: 120px;
        height: 80px;
        top: 65%;
        right: 20%;
        background: radial-gradient(ellipse, rgba(255, 255, 255, 0.55) 0%, rgba(254, 249, 195, 0.12) 50%, transparent 80%);
        border: none;
        border-radius: 50% 55% 45% 50% / 55% 45% 50% 55%;
        animation-delay: 1.2s;
        filter: blur(6px);
    }

    @keyframes shapeAppear {
        from { opacity: 0; transform: scale(0.5); }
        to { opacity: 1; transform: scale(1); }
    }

    @keyframes shapeDrift {
        0%, 100% { transform: translate(0, 0); }
        25% { transform: translate(10px, -15px); }
        50% { transform: translate(-8px, 10px); }
        75% { transform: translate(12px, 5px); }
    }

    @keyframes shapeSpin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Soft light ray overlay */
    .hero-grid-pattern {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            linear-gradient(to bottom,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 75%,
                rgba(255, 255, 255, 0.5) 85%,
                rgba(255, 255, 255, 0.85) 93%,
                #ffffff 100%),
            radial-gradient(ellipse 50% 80% at 75% 10%, rgba(255, 251, 235, 0.5) 0%, transparent 60%),
            radial-gradient(ellipse 40% 60% at 20% 80%, rgba(224, 242, 254, 0.3) 0%, transparent 50%),
            radial-gradient(circle, rgba(200, 200, 220, 0.03) 1px, transparent 1px);
        background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    /* ===== Solar System Background ===== */
    .hero-solar-system {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 1000px;
        z-index: 0;
        pointer-events: none;
        opacity: 1;
    }

    /* The Sun - Solis brand orange */
    .solar-sun {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle at 38% 38%,
            #fffbeb 0%,
            #fde68a 12%,
            #fbbf24 30%,
            #f59e0b 50%,
            #f97316 70%,
            #ea580c 100%);
        box-shadow:
            0 0 80px rgba(245, 158, 11, 0.5),
            0 0 160px rgba(249, 115, 22, 0.25),
            0 0 260px rgba(234, 88, 12, 0.1),
            inset -12px -12px 30px rgba(234, 88, 12, 0.25),
            inset 0 0 50px rgba(255, 251, 235, 0.35);
    }

    /* Sun outer corona glow */
    .solar-sun::before {
        content: '';
        position: absolute;
        inset: -100px;
        border-radius: 50%;
        background: radial-gradient(circle,
            rgba(245, 158, 11, 0.18) 0%,
            rgba(249, 115, 22, 0.08) 35%,
            rgba(251, 191, 36, 0.03) 55%,
            transparent 70%);
    }

    /* Sun highlight */
    .solar-sun::after {
        content: '';
        position: absolute;
        top: 16%;
        left: 20%;
        width: 32%;
        height: 24%;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(255, 255, 255, 0.5) 0%, transparent 80%);
        filter: blur(3px);
    }

    /* Main orbit */
    .solar-orbit-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 750px;
        height: 750px;
        transform: translate(-50%, -50%) scaleY(0.55);
    }

    /* Visible orbital ring - orange brand color */
    .solar-orbit-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(245, 158, 11, 0.25);
        box-shadow:
            0 0 30px rgba(245, 158, 11, 0.05),
            inset 0 0 30px rgba(245, 158, 11, 0.03);
    }

    /* Orbit dashed outer glow */
    .solar-orbit-ring::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px dashed rgba(249, 115, 22, 0.12);
    }

    /* Second (outer) orbit */
    .solar-orbit-2 {
        width: 950px;
        height: 950px;
        transform: translate(-50%, -50%) scaleY(0.5) rotate(8deg);
    }

    .solar-orbit-ring-2 {
        border-style: dashed;
        border-width: 1.5px;
        border-color: rgba(249, 115, 22, 0.12);
    }

    .solar-orbit-ring-2::before {
        display: none;
    }

    /* Earth - static position, no orbit animation */
    .solar-earth-wrapper {
        position: absolute;
        inset: 0;
    }

    /* Earth */
    .solar-earth {
        position: absolute;
        top: -16px;
        left: 50%;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        transform: translateX(-50%) scaleY(1.818);
        background: radial-gradient(circle at 35% 35%,
            #bbf7d0 0%,
            #4ade80 15%,
            #60a5fa 35%,
            #3b82f6 55%,
            #1d4ed8 75%,
            #1e3a5f 100%);
        box-shadow:
            0 0 12px rgba(59, 130, 246, 0.6),
            0 0 30px rgba(59, 130, 246, 0.25);
    }

    /* Earth atmosphere glow */
    .solar-earth::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: radial-gradient(circle,
            rgba(147, 197, 253, 0.45) 0%,
            rgba(96, 165, 250, 0.15) 50%,
            transparent 70%);
    }

    @keyframes solarSunPulse {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1);
            box-shadow:
                0 0 80px rgba(245, 158, 11, 0.5),
                0 0 160px rgba(249, 115, 22, 0.25),
                0 0 260px rgba(234, 88, 12, 0.1),
                inset -12px -12px 30px rgba(234, 88, 12, 0.25),
                inset 0 0 50px rgba(255, 251, 235, 0.35);
        }
        50% {
            transform: translate(-50%, -50%) scale(1.06);
            box-shadow:
                0 0 100px rgba(245, 158, 11, 0.6),
                0 0 200px rgba(249, 115, 22, 0.3),
                0 0 320px rgba(234, 88, 12, 0.15),
                inset -12px -12px 30px rgba(234, 88, 12, 0.25),
                inset 0 0 60px rgba(255, 251, 235, 0.45);
        }
    }

    @keyframes solarCoronaPulse {
        0%, 100% { opacity: 0.6; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.08); }
    }

    .hero-content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(248, 248, 248, 0.932);
        border: 1px solid rgba(13, 148, 136, 0.3);
        color: var(--primary-color);
        padding: 0.6rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2rem;
        animation: fadeInDown 0.6s ease-out, badgeGlow 3s ease-in-out 1.5s infinite;
    }

    @keyframes badgeGlow {
        0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
        50% { box-shadow: 0 0 16px 2px rgba(13, 148, 136, 0.15); }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-text h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }

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

    .hero-text h1 .gradient-text {
        background: linear-gradient(
            90deg,
            #f59e0b 0%,
            #f97316 30%,
            #fbbf24 50%,
            #f59e0b 70%,
            #f97316 100%
        );
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        animation: gradientShimmer 4s ease-in-out infinite;
    }

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

    .hero-description {
        font-size: 1.3rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        animation: fadeInUp 0.6s ease-out 0.4s both;
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        animation: fadeInUp 0.6s ease-out 0.6s both;
    }

    .hero-buttons .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .trust-badges {
        display: flex;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 90, 99, 0.08);
        animation: fadeInUp 0.6s ease-out 0.8s both;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgb(0 140 153);
    }

    .trust-badge-icon {
        width: 24px;
        height: 24px;
        background: var(--gradient-2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.85rem;
        font-weight: bold;
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
        animation: fadeIn 0.8s ease-out 0.4s both;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .proxy-dashboard {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 252, 0.96) 100%),
            #ffffff;
        border: 1px solid rgba(18, 53, 92, 0.12);
        border-radius: 20px;
        padding: 1.75rem;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1), 0 10px 24px rgba(18, 53, 92, 0.08);
        backdrop-filter: blur(20px);
        transition: transform 0.35s cubic-bezier(.17,.67,.35,.96), box-shadow 0.35s ease;
        will-change: transform;
    }

    .proxy-dashboard::before {
        content: '';
        position: absolute;
        inset: 0 0 auto;
        height: 5px;
        background: linear-gradient(90deg, #1d5f9f, #2f83d4, #f28a00);
        pointer-events: none;
    }

    .proxy-dashboard:hover {
        box-shadow: 0 28px 76px rgba(15, 23, 42, 0.14), 0 12px 28px rgba(18, 53, 92, 0.1);
    }

    .dashboard-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(18, 53, 92, 0.12);
    }

    .dashboard-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #142033;
    }

    .dashboard-subtitle {
        margin-top: 0.25rem;
        color: #64748b;
        font-size: 0.82rem;
    }

    .dashboard-dots {
        display: flex;
        gap: 0.5rem;
    }

    /* Live indicator */
    .dashboard-header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .live-indicator {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #1d5f9f;
        text-transform: none;
        letter-spacing: 0.05em;
        padding: 0.35rem 0.65rem;
        border-radius: 999px;
        background: rgba(29, 95, 159, 0.09);
    }

    .live-dot {
        width: 8px;
        height: 8px;
        background: #1d5f9f;
        border-radius: 50%;
        position: relative;
        animation: livePulse 2s ease-in-out infinite;
    }

    .live-dot::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        border: 2px solid #1d5f9f;
        animation: livePulseRing 2s ease-in-out infinite;
    }

    @keyframes livePulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    @keyframes livePulseRing {
        0% { transform: scale(1); opacity: 0.6; }
        50% { transform: scale(1.6); opacity: 0; }
        100% { transform: scale(1); opacity: 0; }
    }

    /* Floating network particles - disabled */
    .hero-particles {
        display: none;
    }

    .h-particle {
        display: none;
    }

    .h-particle:nth-child(1) { left: 8%; top: 90%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: 0s; }
    .h-particle:nth-child(2) { left: 18%; top: 85%; animation-duration: 11s; animation-delay: 1.5s; }
    .h-particle:nth-child(3) { left: 30%; top: 95%; width: 3px; height: 3px; animation-duration: 16s; animation-delay: 0.8s; background: rgba(245, 158, 11, 0.35); box-shadow: 0 0 8px rgba(245, 158, 11, 0.2); }
    .h-particle:nth-child(4) { left: 42%; top: 88%; animation-duration: 12s; animation-delay: 3s; }
    .h-particle:nth-child(5) { left: 55%; top: 92%; width: 6px; height: 6px; animation-duration: 15s; animation-delay: 2s; background: rgba(245, 158, 11, 0.3); box-shadow: 0 0 10px rgba(245, 158, 11, 0.2); }
    .h-particle:nth-child(6) { left: 65%; top: 87%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 4s; }
    .h-particle:nth-child(7) { left: 75%; top: 93%; animation-duration: 10s; animation-delay: 1s; }
    .h-particle:nth-child(8) { left: 85%; top: 86%; width: 5px; height: 5px; animation-duration: 17s; animation-delay: 2.5s; background: rgba(139, 92, 246, 0.3); box-shadow: 0 0 8px rgba(139, 92, 246, 0.2); }
    .h-particle:nth-child(9) { left: 92%; top: 90%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 3.5s; }
    .h-particle:nth-child(10) { left: 25%; top: 80%; animation-duration: 18s; animation-delay: 5s; background: rgba(139, 92, 246, 0.25); box-shadow: 0 0 6px rgba(139, 92, 246, 0.15); }
    .h-particle:nth-child(11) { left: 50%; top: 95%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 6s; }
    .h-particle:nth-child(12) { left: 70%; top: 82%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: 0.5s; background: rgba(245, 158, 11, 0.3); box-shadow: 0 0 8px rgba(245, 158, 11, 0.2); }

    @keyframes particleFloat {
        0% {
            transform: translateY(0) translateX(0) scale(0);
            opacity: 0;
        }
        5% {
            opacity: 0.8;
            transform: translateY(-5vh) translateX(5px) scale(1);
        }
        50% {
            opacity: 0.5;
            transform: translateY(-45vh) translateX(-15px) scale(0.8);
        }
        95% {
            opacity: 0.3;
            transform: translateY(-85vh) translateX(10px) scale(0.4);
        }
        100% {
            transform: translateY(-95vh) translateX(0) scale(0);
            opacity: 0;
        }
    }

    /* Respect reduced motion preferences */
    @media (prefers-reduced-motion: reduce) {
        .h-particle,
        .hero-decor-shape,
        .hero-section::before,
        .hero-section::after,
        .solar-sun,
        .solar-sun::before,
        .solar-earth-wrapper,
        .hero-solar-system { animation: none !important; opacity: 0 !important; }
        .hero-text h1 .gradient-text { animation: none; }
        .hero-badge { animation: fadeInDown 0.6s ease-out; }
        .stat-card { animation: none; opacity: 1; }
        .live-dot, .live-dot::after { animation: none; }
        .proxy-dashboard { transition: none; }
    }

    .dash-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--text-secondary);
        opacity: 0.3;
    }

    .dashboard-hero-metric {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 132px;
        gap: 1.25rem;
        align-items: center;
        padding: 1.25rem;
        border-radius: 16px;
        background:
            radial-gradient(circle at 92% 12%, rgba(242, 138, 0, 0.22), transparent 31%),
            linear-gradient(135deg, #1b4f86 0%, #2476bf 58%, #3c98e8 100%);
        color: #ffffff;
    }

    .metric-eyebrow {
        display: block;
        margin-bottom: 0.45rem;
        color: rgba(232, 245, 255, 0.9);
        font-size: 0.82rem;
        font-weight: 700;
    }

    .dashboard-hero-metric strong {
        display: block;
        color: #ffffff;
        font-size: 3.2rem;
        line-height: 1;
        letter-spacing: 0;
    }

    .dashboard-hero-metric p {
        max-width: 280px;
        margin: 0.7rem 0 0;
        color: rgba(244, 249, 255, 0.84);
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .metric-ring {
        width: 116px;
        height: 116px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background:
            radial-gradient(circle at center, #2476bf 57%, transparent 58%),
            conic-gradient(#f28a00 0 96%, rgba(255, 255, 255, 0.2) 96% 100%);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    }

    .metric-ring span {
        color: #ffffff;
        font-size: 1.35rem;
        font-weight: 800;
    }

    .metric-ring small {
        margin-top: 0.2rem;
        color: rgba(244, 249, 255, 0.78);
        font-weight: 600;
    }

    .dashboard-mini-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.85rem;
        margin-top: 1rem;
    }

    .mini-stat {
        padding: 0.95rem 1rem;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(18, 53, 92, 0.12);
    }

    .mini-stat span {
        display: block;
        color: #64748b;
        font-size: 0.78rem;
        font-weight: 600;
    }

    .mini-stat strong {
        display: block;
        margin-top: 0.45rem;
        color: #f28a00;
        font-size: 1.55rem;
        line-height: 1;
    }

    .dashboard-regions {
        display: grid;
        gap: 0.8rem;
        margin-top: 1.1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(18, 53, 92, 0.12);
    }

    .region-row {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr) 42px;
        gap: 0.75rem;
        align-items: center;
        color: #334155;
        font-size: 0.82rem;
        font-weight: 600;
    }

    .region-bar {
        height: 8px;
        overflow: hidden;
        border-radius: 999px;
        background: #e8eef5;
    }

    .region-bar i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #1d5f9f, #2f83d4, #f28a00);
    }

    .region-row strong {
        color: #12355c;
        text-align: right;
    }

    .dashboard-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        background: rgba(70, 195, 207, 0.03);
        border: 1px solid rgba(0, 90, 99, 0.06);
        border-radius: 12px;
        padding: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: statCardPop 0.5s cubic-bezier(.34,1.56,.64,1) both;
    }

    .stat-card:nth-child(1) { animation-delay: 0.8s; }
    .stat-card:nth-child(2) { animation-delay: 1.0s; }
    .stat-card:nth-child(3) { animation-delay: 1.2s; }
    .stat-card:nth-child(4) { animation-delay: 1.4s; }

    @keyframes statCardPop {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.92);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 90, 99, 0.08);
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
    }

    .stat-value {
        font-size: 2rem;
        font-weight: 800;
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-trend {
        font-size: 0.85rem;
        color: var(--accent-color);
        margin-top: 0.5rem;
    }

    /* Hero Image Section */
    .hero-image-section {
        position: relative;
        z-index: 1;
        margin-top: 2rem;
        padding: 0;
    }

    .hero-image-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 90, 99, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
        animation: fadeInUp 0.8s ease-out 1s both;
        background: #ffffff;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 90, 99, 0.08);
        position: relative;
    }

    .hero-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .hero-image-wrapper:hover .hero-image {
        transform: scale(1.02);
    }

    .hero-network-showcase {
        min-height: 248px;
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        align-items: center;
        gap: 2.5rem;
        padding: 2rem 3.5rem;
        background:
            linear-gradient(90deg, rgba(242, 138, 0, 0.18), transparent 30%),
            radial-gradient(circle at 92% 16%, rgba(255, 255, 255, 0.12), transparent 24%),
            linear-gradient(112deg, #1b4f86 0%, #2476bf 52%, #3c98e8 100%);
        border: 1px solid rgba(18, 53, 92, 0.18);
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16), 0 10px 24px rgba(18, 53, 92, 0.1);
        color: #ffffff;
    }

    .hero-network-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
        background-size: 104px 104px;
        opacity: 0.46;
        mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
        pointer-events: none;
    }

    .hero-network-showcase::after {
        content: '';
        position: absolute;
        right: -95px;
        top: -120px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        border: 56px solid rgba(255, 255, 255, 0.08);
        pointer-events: none;
    }

    .network-showcase-map,
    .showcase-badge,
    .showcase-copy {
        position: relative;
        z-index: 1;
    }

    .network-showcase-map {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .map-dot,
    .map-line {
        position: absolute;
        display: block;
    }

    .map-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14), 0 0 26px rgba(255, 255, 255, 0.42);
    }

    .map-line {
        height: 1px;
        transform-origin: left center;
        background: rgba(255, 255, 255, 0.32);
    }

    .dot-a { left: 12%; top: 20%; }
    .dot-b { left: 24%; bottom: 22%; }
    .dot-c { left: 42%; top: 30%; }
    .dot-d { right: 26%; top: 20%; }
    .dot-e { right: 14%; bottom: 30%; }
    .map-line-a { left: 12%; top: 22%; width: 310px; transform: rotate(22deg); }
    .map-line-b { left: 24%; bottom: 24%; width: 380px; transform: rotate(-18deg); }
    .map-line-c { right: 14%; bottom: 32%; width: 290px; transform: rotate(-34deg); }

    .showcase-badge {
        width: 142px;
        height: 142px;
        margin-left: 3.25rem;
        border-radius: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 42px;
        letter-spacing: 0;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1)),
            rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.42);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 22px 46px rgba(0, 20, 45, 0.28);
        backdrop-filter: blur(12px);
    }

    .showcase-globe {
        position: absolute;
        width: 86px;
        height: 86px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.76);
        background:
            linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.7) 48% 52%, transparent 53%),
            linear-gradient(transparent 47%, rgba(255, 255, 255, 0.7) 48% 52%, transparent 53%);
    }

    .showcase-globe::before,
    .showcase-globe::after {
        content: '';
        position: absolute;
        inset: 12px 22px;
        border: 2px solid rgba(255, 255, 255, 0.48);
        border-top: 0;
        border-bottom: 0;
        border-radius: 50%;
    }

    .showcase-globe::after {
        inset: 22px 12px;
        border: 2px solid rgba(255, 255, 255, 0.42);
        border-left: 0;
        border-right: 0;
    }

    .showcase-badge strong {
        position: relative;
        z-index: 1;
        padding: 0.2rem 0.55rem;
        border-radius: 10px;
        background: #f28a00;
        color: #ffffff;
        font-size: 24px;
        line-height: 1;
    }

    .showcase-kicker {
        display: inline-flex;
        margin-bottom: 1rem;
        color: #ffd99e;
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .showcase-copy h2 {
        max-width: 680px;
        margin: 0;
        color: #ffffff;
        font-size: clamp(2.2rem, 3.2vw, 3.4rem);
        line-height: 1.02;
        letter-spacing: 0;
        font-weight: 800;
    }

    .showcase-copy p {
        max-width: 680px;
        margin: 0.75rem 0 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 1rem;
        line-height: 1.55;
    }

    .showcase-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        margin-top: 1.15rem;
    }

    .showcase-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 1.25rem;
        border-radius: 8px;
        color: #ffffff;
        background: linear-gradient(135deg, #f28a00, #ff7a00);
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 14px 26px rgba(255, 122, 0, 0.26);
    }

    .showcase-actions span {
        color: rgba(255, 255, 255, 0.86);
        font-weight: 700;
    }

    /* Hero Banner Overlay - Traditional Chinese Text */
    .hero-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        pointer-events: none;
    }

    .hero-banner-overlay::before {
        content: '';
        position: absolute;
        inset: 8%;
        border-radius: 22px;
        background: linear-gradient(135deg, rgba(6, 24, 56, 0.62), rgba(20, 56, 48, 0.62));
        backdrop-filter: blur(3px);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .banner-text-container {
        text-align: center;
        padding: 2rem;
        position: relative;
        z-index: 3;
        max-width: 980px;
    }

    .banner-title {
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .banner-text-line {
        display: block;
        font-size: 3.5rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        color: #ffffff;
        text-shadow:
            0 0 20px rgba(13, 148, 136, 0.8),
            0 0 40px rgba(13, 148, 136, 0.5),
            0 4px 8px rgba(0, 0, 0, 0.5);
        animation: textGlowPulse 3s ease-in-out infinite;
    }

    .banner-text-1 {
        animation-delay: 0s;
        background: linear-gradient(135deg, #ffffff 0%, #a29bfe 50%, #6c5ce7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: textGlowPulse 3s ease-in-out infinite, gradientShift 4s ease infinite;
    }

    .banner-text-2 {
        animation-delay: 0.3s;
        background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: textGlowPulse 3s ease-in-out infinite 0.3s, gradientShift 4s ease infinite 0.5s;
    }

    @keyframes textGlowPulse {
        0%, 100% {
            filter: brightness(1) drop-shadow(0 0 10px rgba(13, 148, 136, 0.6));
            transform: translateY(0);
        }
        50% {
            filter: brightness(1.2) drop-shadow(0 0 20px rgba(13, 148, 136, 0.9));
            transform: translateY(-2px);
        }
    }

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

    .banner-subtitle {
        font-size: 1.2rem;
        font-weight: 600;
        color: rgba(255, 251, 245, 0.97);
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        animation: fadeInUp 0.8s ease-out 0.5s both;
    }

    .banner-subtitle-line {
        display: inline-block;
        position: relative;
        padding: 0.3rem 0.8rem;
        background: rgba(13, 148, 136, 0.2);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: subtitleFloat 3s ease-in-out infinite;
    }

    .banner-subtitle-line:nth-child(1) {
        animation-delay: 0s;
    }

    .banner-subtitle-line:nth-child(3) {
        animation-delay: 0.3s;
    }

    .banner-subtitle-line:nth-child(5) {
        animation-delay: 0.6s;
    }

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

    .banner-subtitle-dot {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
    }

    .banner-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }

    .banner-feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        animation: featureSlideIn 0.6s ease-out both;
    }

    .banner-feature-item:nth-child(1) {
        animation-delay: 1s;
    }

    .banner-feature-item:nth-child(2) {
        animation-delay: 1.2s;
    }

    .banner-feature-item:nth-child(3) {
        animation-delay: 1.4s;
    }

    @keyframes featureSlideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .banner-feature-item:hover {
        background: rgba(13, 148, 136, 0.3);
        border-color: rgba(13, 148, 136, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
    }

    .feature-icon-pulse {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {
        0%, 100% {
            transform: scale(1);
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
        }
        50% {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
        }
    }

    /* Animated Background Effects */
    .banner-bg-effects {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .bg-gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.3;
        animation: orbFloat 8s ease-in-out infinite;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(13, 148, 136, 0.6) 0%, transparent 70%);
        top: -10%;
        left: -5%;
        animation-delay: 0s;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(0, 184, 148, 0.5) 0%, transparent 70%);
        bottom: -10%;
        right: -5%;
        animation-delay: 2s;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(116, 185, 255, 0.4) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: 4s;
    }

    @keyframes orbFloat {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        33% {
            transform: translate(30px, -30px) scale(1.1);
        }
        66% {
            transform: translate(-30px, 30px) scale(0.9);
        }
    }

    .bg-particle-container {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .bg-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: particleFloat 6s ease-in-out infinite;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    .bg-particle:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        animation-duration: 5s;
    }

    .bg-particle:nth-child(2) {
        top: 60%;
        left: 80%;
        animation-delay: 1s;
        animation-duration: 6s;
    }

    .bg-particle:nth-child(3) {
        top: 40%;
        left: 30%;
        animation-delay: 2s;
        animation-duration: 7s;
    }

    .bg-particle:nth-child(4) {
        top: 80%;
        left: 60%;
        animation-delay: 3s;
        animation-duration: 5.5s;
    }

    .bg-particle:nth-child(5) {
        top: 30%;
        left: 90%;
        animation-delay: 4s;
        animation-duration: 6.5s;
    }

    @keyframes particleFloat {
        0%, 100% {
            transform: translate(0, 0);
            opacity: 0.3;
        }
        25% {
            transform: translate(20px, -20px);
            opacity: 0.8;
        }
        50% {
            transform: translate(-10px, 10px);
            opacity: 0.5;
        }
        75% {
            transform: translate(15px, 15px);
            opacity: 0.9;
        }
    }

    /* Partners Section */
    .partners-section {
        background: linear-gradient(180deg, #f59e0b 0%, #e67e22 35%, #6d28d9 100%);
        padding: 3rem 0;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .partners-title {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        margin-bottom: 2rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .partners-slider {
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }

    .partners-track {
        display: flex;
        align-items: center;
        gap: 5rem;
        animation: scroll 40s linear infinite;
        width: max-content;
        will-change: transform;
    }

    .partners-track:hover {
        animation-play-state: paused;
    }

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

    .partner-logo {
        height: 28px;
        width: auto;
        opacity: 0.6;
        transition: opacity 0.3s ease;
        filter: brightness(0) invert(1);
        flex-shrink: 0;
    }

    .partner-logo:hover {
        opacity: 1;
    }

    /* Stats Counter Section */
    .stats-section {
        padding: 6rem 0;
        background: var(--dark-card);
    }

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

    .stat-box {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        transition: all 0.3s;
    }

    .stat-box:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
        background: rgba(13, 148, 136, 0.05);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0.75rem;
    }

    .stat-label-large {
        color: var(--text-secondary);
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Products Section */
    .products-section {
        padding: 6rem 0;
        position: relative;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .product-card {
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 20px;
        padding: 0; /* Padding moved to wrapper */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .product-content-wrapper {
        padding: 2.5rem;
        z-index: 2;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-card-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 1;
        transition: all 0.5s ease;
        opacity: 0;
    }

    .product-card:hover .product-card-bg {
        opacity: 1;
    }

    /* Card Specific Styles & Effects */
    .product-card-residential {
        grid-column: span 2;
        position: relative;
        overflow: hidden;
    }

    /* Residential Card - Animated Network Illustration */
    .residential-animation {
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        width: 280px;
        height: 280px;
        pointer-events: none;
        z-index: 1;
        opacity: 0.8;
    }

    .network-globe {
        position: relative;
        width: 100%;
        height: 100%;
        animation: rotate-globe 30s linear infinite;
    }

    @keyframes rotate-globe {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Globe rings */
    .globe-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        border: 2px solid rgba(41, 121, 255, 0.3);
        border-radius: 50%;
        animation: pulse-ring 3s ease-in-out infinite;
    }

    .globe-ring-2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(60deg);
        width: 200px;
        height: 80px;
        border: 2px solid rgba(41, 121, 255, 0.2);
        border-radius: 50%;
        animation: pulse-ring 3s ease-in-out infinite 0.5s;
    }

    @keyframes pulse-ring {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.3;
        }
        50% {
            transform: translate(-50%, -50%) scale(1.05);
            opacity: 0.6;
        }
    }

    /* Network nodes */
    .network-node {
        position: absolute;
        width: 14px;
        height: 14px;
        background: #2979ff;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(41, 121, 255, 0.8), 0 0 40px rgba(41, 121, 255, 0.4);
        animation: node-pulse 2s ease-in-out infinite;
    }

    @keyframes node-pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 20px rgba(41, 121, 255, 0.8), 0 0 40px rgba(41, 121, 255, 0.4);
        }
        50% {
            transform: scale(1.3);
            box-shadow: 0 0 30px rgba(41, 121, 255, 1), 0 0 60px rgba(41, 121, 255, 0.6);
        }
    }

    .node-1 {
        top: 20%;
        left: 35%;
        animation-delay: 0s;
    }

    .node-2 {
        top: 35%;
        right: 25%;
        animation-delay: 0.4s;
    }

    .node-3 {
        bottom: 25%;
        left: 25%;
        animation-delay: 0.8s;
    }

    .node-4 {
        bottom: 30%;
        right: 30%;
        animation-delay: 1.2s;
    }

    .node-5 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 18px;
        height: 18px;
        animation-delay: 0.6s;
        background: linear-gradient(135deg, #2979ff, #00e676);
    }

    /* Connection lines */
    .connection-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, rgba(41, 121, 255, 0), rgba(41, 121, 255, 0.6), rgba(41, 121, 255, 0));
        transform-origin: left center;
        animation: line-flow 2s ease-in-out infinite;
    }

    @keyframes line-flow {
        0%, 100% {
            opacity: 0.3;
        }
        50% {
            opacity: 0.8;
        }
    }

    .line-1 {
        top: 25%;
        left: 38%;
        width: 120px;
        transform: rotate(25deg);
        animation-delay: 0s;
    }

    .line-2 {
        top: 45%;
        left: 30%;
        width: 100px;
        transform: rotate(-30deg);
        animation-delay: 0.7s;
    }

    .line-3 {
        bottom: 35%;
        left: 35%;
        width: 110px;
        transform: rotate(15deg);
        animation-delay: 1.4s;
    }

    /* Data particles */
    .data-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #00e676;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 230, 118, 0.8);
        animation: particle-flow 3s linear infinite;
    }

    @keyframes particle-flow {
        0% {
            transform: translate(0, 0) scale(0);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translate(150px, -80px) scale(1.5);
            opacity: 0;
        }
    }

    .particle-1 {
        top: 30%;
        left: 40%;
        animation-delay: 0s;
    }

    .particle-2 {
        top: 50%;
        left: 35%;
        animation-delay: 1s;
    }

    .particle-3 {
        bottom: 35%;
        left: 30%;
        animation-delay: 2s;
    }

    /* Solar system responsive */
    @media (max-width: 1200px) {
        .hero-solar-system {
            width: 750px;
            height: 750px;
        }
        .solar-sun {
            width: 150px;
            height: 150px;
        }
        .solar-orbit-container {
            width: 580px;
            height: 580px;
        }
        .solar-orbit-2 {
            width: 730px;
            height: 730px;
        }
    }

    @media (max-width: 768px) {
        .hero-solar-system {
            width: 500px;
            height: 500px;
        }
        .solar-sun {
            width: 110px;
            height: 110px;
        }
        .solar-orbit-container {
            width: 400px;
            height: 400px;
        }
        .solar-orbit-2 {
            display: none;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .residential-animation {
            width: 220px;
            height: 220px;
            right: 20px;
        }

        .globe-ring {
            width: 160px;
            height: 160px;
        }

        .globe-ring-2 {
            width: 160px;
            height: 60px;
        }
    }

    @media (max-width: 768px) {
        .residential-animation {
            display: none;
        }
    }

    /* Residential - Blue Theme */
    .product-card-residential .product-icon {
        background: rgba(41, 121, 255, 0.1);
        color: #2979ff;
    }
    .product-card-residential:hover {
        border-color: rgba(41, 121, 255, 0.5);
        box-shadow: 0 20px 60px rgba(41, 121, 255, 0.15);
    }
    .product-card-residential .product-card-bg {
        background: radial-gradient(800px circle at top right, rgba(41, 121, 255, 0.08), transparent 40%);
    }
    .product-card-residential .btn-product:hover {
        background: #2979ff;
        border-color: #2979ff;
    }

    /* ISP - Green Theme */
    .product-card-isp .product-icon {
        background: rgba(0, 230, 118, 0.1);
        color: #00e676;
    }
    .product-card-isp:hover {
        border-color: rgba(0, 230, 118, 0.5);
        box-shadow: 0 20px 60px rgba(0, 230, 118, 0.15);
    }
    .product-card-isp .product-card-bg {
        background: radial-gradient(600px circle at top right, rgba(0, 230, 118, 0.08), transparent 40%);
    }
    .product-card-isp .btn-product:hover {
        background: #00e676;
        border-color: #00e676;
        color: #fff;
    }

    /* Datacenter - Orange Theme */
    .product-card-datacenter .product-icon {
        background: rgba(255, 145, 0, 0.1);
        color: #ff9100;
    }
    .product-card-datacenter:hover {
        border-color: rgba(255, 145, 0, 0.5);
        box-shadow: 0 20px 60px rgba(255, 145, 0, 0.15);
    }
    .product-card-datacenter .product-card-bg {
        background: radial-gradient(600px circle at top right, rgba(255, 145, 0, 0.08), transparent 40%);
    }
    .product-card-datacenter .btn-product:hover {
        background: #ff9100;
        border-color: #ff9100;
        color: #fff;
    }

    /* Dynamic - Purple Theme */
    .product-card-dynamic .product-icon {
        background: rgba(101, 31, 255, 0.1);
        color: #651fff;
    }
    .product-card-dynamic:hover {
        border-color: rgba(101, 31, 255, 0.5);
        box-shadow: 0 20px 60px rgba(101, 31, 255, 0.15);
    }
    .product-card-dynamic .product-card-bg {
        background: radial-gradient(600px circle at top right, rgba(101, 31, 255, 0.08), transparent 40%);
    }
    .product-card-dynamic .btn-product:hover {
        background: #651fff;
        border-color: #651fff;
    }

    /* Unlimited - Pink Theme */
    .product-card-unlimited .product-icon {
        background: rgba(245, 0, 87, 0.1);
        color: #f50057;
    }
    .product-card-unlimited:hover {
        border-color: rgba(245, 0, 87, 0.5);
        box-shadow: 0 20px 60px rgba(245, 0, 87, 0.15);
    }
    .product-card-unlimited .product-card-bg {
        background: radial-gradient(600px circle at top right, rgba(245, 0, 87, 0.08), transparent 40%);
    }
    .product-card-unlimited .btn-product:hover {
        background: #f50057;
        border-color: #f50057;
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-1);
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(13, 148, 136, 0.25);
        border-color: rgba(13, 148, 136, 0.4);
    }

    .product-card:hover::before {
        transform: scaleX(1);
    }

    .product-icon {
        width: 70px;
        height: 70px;
        background: rgba(13, 148, 136, 0.1);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.4s;
    }

    .product-card:hover .product-icon {
        background: var(--gradient-1);
        transform: scale(1.1) rotate(5deg);
    }

    .product-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .product-card p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .product-price {
        font-size: 1.1rem;
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .product-features {
        list-style: none;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .product-features li {
        padding: 0.5rem 0;
        color: var(--text-secondary);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .product-features li::before {
        content: "✓";
        width: 20px;
        height: 20px;
        background: var(--gradient-2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .btn-product {
        width: 100%;
        padding: 1rem;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
        border-radius: 12px;
        font-weight: 700;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
        display: block;
    }

    .btn-product:hover {
        background: var(--gradient-1);
        border-color: transparent;
        transform: translateY(-2px);
    }

    /* Features Section */
    .features-section {
        padding: 6rem 0;
        background: var(--dark-card);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .feature-card {
        background: var(--dark-bg);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 2.5rem;
        transition: all 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color);
    }

    .feature-icon-large {
        width: 80px;
        height: 80px;
        background: rgba(13, 148, 136, 0.1);
        border: 2px solid rgba(13, 148, 136, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s;
    }

    .feature-card:hover .feature-icon-large {
        background: var(--gradient-1);
        border-color: transparent;
        transform: scale(1.1);
    }

    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        color: var(--text-secondary);
        line-height: 1.8;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 6rem 0;
        overflow: hidden;
    }

    /* Left-Right Layout */
    .testimonials-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: start;
    }

    /* Left Column - Header */
    .testimonials-left {
        position: sticky;
        top: 120px;
    }

    .testimonials-left .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-align: left;
    }

    .testimonials-left .section-subtitle {
        font-size: 1.15rem;
        color: var(--text-secondary);
        line-height: 1.8;
        text-align: left;
        margin-bottom: 2rem;
    }

    /* Customer Satisfaction Card */
    .satisfaction-card {
        background: var(--dark-card);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 2rem;
        margin-top: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .satisfaction-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .satisfaction-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .satisfaction-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        animation: icon-glow 2s ease-in-out infinite;
    }

    @keyframes icon-glow {
        0%, 100% {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        50% {
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
        }
    }

    .satisfaction-label {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Score Display */
    .satisfaction-score {
        display: flex;
        align-items: baseline;
        justify-content: center;
        margin: 2rem 0;
    }

    .score-number {
        font-size: 5rem;
        font-weight: 800;
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .score-percent {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-left: 0.5rem;
    }

    /* Rating Bars */
    .satisfaction-bars {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .bar-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .bar-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
    }

    .bar-label span:first-child {
        color: var(--text-secondary);
        font-weight: 500;
    }

    .bar-value {
        color: var(--primary-color);
        font-weight: 600;
    }

    .bar-track {
        height: 8px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        border-radius: 10px;
        transition: width 1.5s ease-out;
        animation: bar-grow 1.5s ease-out;
        position: relative;
        overflow: hidden;
    }

    @keyframes bar-grow {
        from {
            width: 0 !important;
        }
    }

    .bar-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 2s infinite;
    }

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

    /* Footer Stats */
    .satisfaction-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-stat {
        text-align: center;
    }

    .footer-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }

    .footer-label {
        font-size: 0.85rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

    /* Right Column - Two Scrolling Columns */
    .testimonials-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        height: 600px;
    }

    .testimonials-scroll-column {
        position: relative;
        height: 100%;
        overflow: hidden;
        mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    }

    .testimonials-scroll-track {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        animation: scroll-up-1 25s linear infinite;
        will-change: transform;
    }

    .testimonials-scroll-track-2 {
        animation: scroll-up-2 30s linear infinite;
        animation-delay: -5s;
    }

    @keyframes scroll-up-1 {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }

    @keyframes scroll-up-2 {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }

    .testimonials-scroll-track:hover {
        animation-play-state: paused;
    }

    .testimonial-card {
        background: var(--dark-card);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s;
        flex-shrink: 0;
        min-height: auto;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        border-color: var(--primary-color);
    }

    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        background: var(--gradient-1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
    }

    .testimonial-author h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .testimonial-author p {
        color: var(--text-secondary);
        font-size: 0.85rem;
    }

    .testimonial-stars {
        color: #FFD700;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-text {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 0.95rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 6rem 0;
        /*background: var(--dark-card);*/
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .hero-section {
            padding: 5rem 0 1.5rem;
        }

        .hero-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-visual {
            order: 1;
        }

        .hero-image-wrapper {
            max-width: 100%;
        }

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

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

        .testimonials-layout {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .testimonials-left {
            position: static;
        }

        .testimonials-left .section-title,
        .testimonials-left .section-subtitle {
            text-align: center;
        }

        .satisfaction-card {
            max-width: 500px;
            margin: 2rem auto 0;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 4rem 0 1rem;
        }

        .hero-visual {
            display: none;
        }

        .hero-text h1 {
            font-size: 2.5rem;
        }

        .hero-image-section {
            margin-top: 1.5rem;
            padding: 0;
        }

        .hero-image-wrapper {
            border-radius: 12px;
        }

        .hero-network-showcase {
            min-height: auto;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            padding: 1.6rem 1.25rem;
            text-align: center;
        }

        .showcase-badge {
            width: 116px;
            height: 116px;
            margin: 0 auto;
            border-radius: 22px;
        }

        .showcase-globe {
            width: 72px;
            height: 72px;
        }

        .showcase-badge strong {
            font-size: 20px;
        }

        .showcase-copy h2 {
            font-size: 2rem;
        }

        .showcase-copy p {
            font-size: 0.94rem;
        }

        .showcase-actions {
            justify-content: center;
        }

        /* Banner Overlay Responsive */
        .banner-text-line {
            font-size: 2rem;
        }

        .banner-subtitle {
            font-size: 0.9rem;
            gap: 0.5rem;
        }

        .banner-subtitle-line {
            padding: 0.2rem 0.6rem;
            font-size: 0.85rem;
        }

        .banner-features {
            gap: 1rem;
        }

        .banner-feature-item {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .feature-icon-pulse {
            width: 20px;
            height: 20px;
        }

        .bg-gradient-orb {
            filter: blur(40px);
        }

        .orb-1 {
            width: 200px;
            height: 200px;
        }

        .orb-2 {
            width: 150px;
            height: 150px;
        }

        .orb-3 {
            width: 120px;
            height: 120px;
        }

        .partners-section {
            padding: 2rem 0;
        }

        .partners-title {
            font-size: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .partner-logo {
            height: 22px;
        }

        .partners-track {
            gap: 3rem;
        }

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

        .product-card-residential {
            grid-column: auto;
        }

        .testimonials-right {
            grid-template-columns: 1fr;
            height: 500px;
        }

        .satisfaction-card {
            padding: 1.5rem;
        }

        .score-number {
            font-size: 4rem;
        }

        .score-percent {
            font-size: 2rem;
        }

        .satisfaction-footer {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .cta-content h2 {
            font-size: 2rem;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        .banner-text-line {
            font-size: 1.5rem;
        }

        .banner-subtitle {
            font-size: 0.75rem;
            flex-direction: column;
            gap: 0.3rem;
        }

        .banner-subtitle-dot {
            display: none;
        }

        .banner-features {
            flex-direction: column;
            gap: 0.8rem;
        }

        .banner-feature-item {
            width: 100%;
            justify-content: center;
        }
    }

    /* Scroll Animation */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animated Shapes Section - Network Theme */
    .animated-shapes-section {
        padding: 4rem 0;
        margin: 0;
        position: relative;
        /* background removed to fix full width issue */
    }

    .network-section-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
        
        /* Boxed Layout Styles - Light Theme */
        background: radial-gradient(circle at 75% center, rgba(13, 148, 136, 0.1) 0%, rgba(255, 255, 255, 0.98) 70%);
        background-color: #ffffff;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 24px;
        padding: 4rem;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(13, 148, 136, 0.15);
    }

    /* Left Side Content Styles */
    .network-content-side {
        padding-right: 1rem;
    }

    .network-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: linear-gradient(120deg, #2d3436 0%, #6C5CE7 20%, #00e676 40%, #0984e3 60%, #6C5CE7 80%, #2d3436 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: textShine 4s linear infinite;
    }

    @keyframes textShine {
        to {
            background-position: 200% center;
        }
    }

    .network-description {
        font-size: 1.1rem;
        color: #636e72;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }

    .network-features {
        list-style: none;
        padding: 0;
        margin: 0 0 2.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .network-features li.feature-card {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        background: #f8f9fa;
        border: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1.25rem;
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(5px);
    }

    .network-features li.feature-card:hover {
        background: #ffffff;
        border-color: rgba(13, 148, 136, 0.5);
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
        filter: drop-shadow(0 0 10px rgba(13, 148, 136, 0.2));
    }

    .feature-illustration {
        width: 100%;
        height: 100%;
    }

    /* Remove old feature icon styles */
    .feature-icon {
        display: none;
    }

    .feature-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0.2rem;
    }

    .feature-text strong {
        color: #2d3436;
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .feature-text span {
        color: #636e72;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Right Side Visual Styles */
    .network-visual-side {
        position: relative;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .network-animation-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .network-system {
        position: relative;
        width: 500px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* Ensure it scales on smaller screens if needed */
        transform-origin: center center;
    }

    /* Central Hub */
    .central-hub {
        position: absolute;
        z-index: 10;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hub-core {
        position: absolute;
        width: 40px;
        height: 40px;
        background: var(--gradient-1);
        border-radius: 50%;
        box-shadow: 0 0 40px rgba(13, 148, 136, 0.8);
        z-index: 2;
        animation: pulse-core 3s ease-in-out infinite;
    }

    .hub-glow {
        position: absolute;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
        animation: pulse-glow 4s ease-in-out infinite;
    }

    .hub-ring {
        position: absolute;
        border: 1px solid rgba(13, 148, 136, 0.2);
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(13, 148, 136, 0.05);
    }

    .orbit-dot {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        left: 50%;
        top: -3px; /* Position on the ring border */
        transform: translateX(-50%);
        box-shadow: 0 0 8px currentColor;
    }

    .ring-1 {
        width: 80px;
        height: 80px;
        border-top-color: transparent;
        border-left-color: transparent;
        animation: spin-ring 10s linear infinite;
    }

    .ring-2 {
        width: 140px;
        height: 140px;
        border: 1px dashed rgba(0, 184, 148, 0.2);
        animation: spin-ring 15s linear infinite reverse;
    }

    .ring-2 .orbit-dot {
        width: 8px;
        height: 8px;
        background-color: #2dd4bf;
        color: #2dd4bf;
    }

    .ring-3 {
        width: 220px;
        height: 220px;
        border-color: rgba(255, 107, 53, 0.15);
        border-bottom-color: transparent;
        animation: spin-ring 20s linear infinite;
    }

    .ring-3 .orbit-dot {
        background-color: #FF6B35;
        color: #FF6B35;
    }

    .ring-3 .dot-large {
        width: 10px;
        height: 10px;
        top: auto;
        bottom: -5px;
        left: 50%;
    }

    .ring-3 .dot-small {
        width: 4px;
        height: 4px;
        top: 50%;
        left: -2px;
        transform: translateY(-50%);
    }

    @keyframes pulse-core {
        0%, 100% { transform: scale(1); opacity: 0.9; box-shadow: 0 0 40px rgba(13, 148, 136, 0.6); }
        50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 60px rgba(13, 148, 136, 0.9); }
    }

    @keyframes pulse-glow {
        0%, 100% { transform: scale(0.8); opacity: 0.3; }
        50% { transform: scale(1.1); opacity: 0.6; }
    }

    @keyframes spin-ring {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Node Arms */
    .node-arm {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        display: flex;
        align-items: center;
        transform-origin: center center;
    }

    .conn-line {
        position: absolute;
        left: 30px; /* Start from hub radius */
        height: 2px;
        background: rgba(255, 5555, 555, 00505);
        transform-origin: left center;
        overflow: hidden;
    }

    .data-flow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.8), transparent);
        transform: translateX(-100%);
        animation: data-travel 2s linear infinite;
    }

    .proxy-node {
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--dark-bg);
        border: 2px solid;
        border-radius: 50%;
        box-shadow: 0 0 15px currentColor;
        z-index: 5;
        /* Positioned at the end of the line */
        right: -5px; 
        top: -4px;
        animation: node-pulse-blink 3s ease-in-out infinite;
    }

    @keyframes node-pulse-blink {
        0%, 100% {
            transform: scale(1);
            opacity: 0.8;
            box-shadow: 0 0 15px currentColor;
        }
        50% {
            transform: scale(1.3);
            opacity: 1;
            box-shadow: 0 0 25px currentColor, 0 0 10px white;
        }
    }

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

    /* Arm Configurations */
    .arm-1 { transform: rotate(0deg); }
    .arm-1 .conn-line { width: 140px; }
    .arm-1 .proxy-node { left: 170px; border-color: #6C5CE7; color: rgba(13, 148, 136, 0.5); width: 12px; height: 12px; top: -5px; animation-delay: 0s; }
    .arm-1 .data-flow { animation-delay: 0s; }

    .arm-2 { transform: rotate(60deg); }
    .arm-2 .conn-line { width: 110px; }
    .arm-2 .proxy-node { left: 140px; border-color: #2dd4bf; color: rgba(0, 184, 148, 0.5); width: 8px; height: 8px; top: -3px; animation-delay: 1.2s; }
    .arm-2 .data-flow { animation-delay: 0.5s; }

    .arm-3 { transform: rotate(120deg); }
    .arm-3 .conn-line { width: 160px; }
    .arm-3 .proxy-node { left: 190px; border-color: #FF6B35; color: rgba(255, 107, 53, 0.5); width: 14px; height: 14px; top: -6px; animation-delay: 0.5s; }
    .arm-3 .data-flow { animation-delay: 1s; }

    .arm-4 { transform: rotate(180deg); }
    .arm-4 .conn-line { width: 130px; }
    .arm-4 .proxy-node { left: 160px; border-color: #0984e3; color: rgba(9, 132, 227, 0.5); width: 9px; height: 9px; top: -3.5px; animation-delay: 2s; }
    .arm-4 .data-flow { animation-delay: 1.5s; }

    .arm-5 { transform: rotate(240deg); }
    .arm-5 .conn-line { width: 150px; }
    .arm-5 .proxy-node { left: 180px; border-color: #e17055; color: rgba(225, 112, 85, 0.5); width: 11px; height: 11px; top: -4.5px; animation-delay: 0.8s; }
    .arm-5 .data-flow { animation-delay: 0.8s; }

    .arm-6 { transform: rotate(300deg); }
    .arm-6 .conn-line { width: 120px; }
    .arm-6 .proxy-node { left: 150px; border-color: #fdcb6e; color: rgba(253, 203, 110, 0.5); width: 13px; height: 13px; top: -5.5px; animation-delay: 1.5s; }
    .arm-6 .data-flow { animation-delay: 1.8s; }

    /* Background Particles */
    .bg-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 5555, 555, 033);
        border-radius: 50%;
        animation: float-particle 10s ease-in-out infinite;
    }

    .bp-1 { top: 20%; left: 20%; animation-duration: 15s; }
    .bp-2 { bottom: 30%; right: 10%; animation-duration: 20s; }
    .bp-3 { top: 10%; right: 30%; animation-duration: 12s; }

    @keyframes float-particle {
        0%, 100% { transform: translate(0, 0); opacity: 0.3; }
        50% { transform: translate(20px, -20px); opacity: 0.6; }
    }

    @keyframes mesh-shift {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.1);
        }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .animated-shapes-section {
            padding: 3rem 0;
            height: auto;
            margin: 0;
        }

        .network-section-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
            text-align: center;
        }

        .network-content-side {
            padding-right: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .network-features {
            align-items: center;
            width: 100%;
        }

        .network-features li {
            width: 100%;
            max-width: 400px;
            justify-content: flex-start;
            background: rgba(255, 255, 255, 0.03);
            padding: 1rem;
            border-radius: 12px;
        }

        .network-visual-side {
            height: 400px;
        }

        .network-system {
            transform: scale(0.7);
        }
    }

    @media (max-width: 480px) {
        .network-visual-side {
            height: 350px;
        }
        .network-system {
            transform: scale(0.55);
        }
        
        .network-title {
            font-size: 2rem;
        }
    }

    /* Worldwide Proxies Section */
    .worldwide-proxies-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
        overflow: hidden;
    }

    .worldwide-proxies-section .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .worldwide-proxies-section .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 4rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Countries Scroll Container */
    .countries-scroll-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .countries-scroll-container::before,
    .countries-scroll-container::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .countries-scroll-container::before {
        left: 0;
        background: linear-gradient(to right, #f8f9ff, transparent);
    }

    .countries-scroll-container::after {
        right: 0;
        background: linear-gradient(to left, #ffffff, transparent);
    }

    .countries-scroll-track {
        display: flex;
        gap: 1.5rem;
        width: fit-content;
    }

    .countries-scroll-track-1 {
        animation: scroll-left-1 35s linear infinite;
    }

    .countries-scroll-track-2 {
        animation: scroll-left-2 40s linear infinite;
    }

    .countries-scroll-track-3 {
        animation: scroll-left-3 38s linear infinite;
    }

    .countries-scroll-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll-left-1 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes scroll-left-2 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes scroll-left-3 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Country Card */
    .country-card {
        flex-shrink: 0;
        width: 280px;
        background: white;
        border-radius: 16px;
        padding: 2rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .country-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(41, 121, 255, 0.15);
    }

    .country-flag {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .country-flag svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .country-info {
        flex: 1;
    }

    .country-info h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 0.5rem 0;
    }

    .country-info p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin: 0;
        font-weight: 500;
    }

    /* CTA Button */
    .worldwide-cta {
        text-align: center;
    }

    .btn-gradient {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #9B59B6 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-gradient:hover::before {
        left: 100%;
    }

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .worldwide-proxies-section {
            padding: 4rem 0;
        }

        .worldwide-proxies-section .section-title {
            font-size: 2rem;
        }

        .worldwide-proxies-section .section-subtitle {
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .country-card {
            width: 240px;
            padding: 1.5rem;
        }

        .country-flag {
            width: 50px;
            height: 50px;
        }

        .country-info h3 {
            font-size: 1.1rem;
        }

        .country-info p {
            font-size: 0.85rem;
        }

        .countries-scroll-container::before,
        .countries-scroll-container::after {
            width: 50px;
        }
    }
