
        /* Base Variables */
        :root {
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            --bg-dark: #0d163e;
            --bg-dark-light: #1a1f3a;
            --text-light: #ffffff;
            --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
            --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
            --border-orange: rgba(255, 95, 21, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 20px;
            --muted: rgba(255, 255, 255, 0.7);
            --muted-2: rgba(255, 255, 255, 0.5);
            --card: rgba(255, 255, 255, 0.06);
            --border: rgba(255, 95, 21, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
        }

        h4 {
            font-size: clamp(1.2rem, 3vw, 2rem);
        }

        p {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        /* Hero Section - Updated Background */
        .partner-hero-section {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: clamp(80px, 15vw, 100px) 0;
            overflow: hidden;
            margin-top: 5rem;
            border-bottom: 4px solid var(--primary-orange);
            border-radius: 0 0 30px 30px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
            z-index: 0;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: -3%;
            animation-delay: 2s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 5;
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }



        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid rgba(255, 95, 21, 0.3);
            color: var(--secondary-orange);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0;
            backdrop-filter: blur(10px);
            animation: slideInLeft 1s ease-out;
            width: fit-content;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInLeft 1.2s ease-out 0.3s both;
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 35px;
            max-width: 700px;
            animation: slideInLeft 1.2s ease-out 0.6s both;
            text-align: justify;
        }


        /* Hero Actions */
        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease-out 0.9s both;
        }

        .hero-btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: white;
            text-decoration: none;
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 16px 35px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-3px);
            text-decoration: none;
        }





        /* Partner Hero Visual - Unique Design */
        .hero-visual {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ============================================
   COMPLETELY REDESIGNED PARTNERSHIP VISUAL
   ============================================ */

        .partnership-ecosystem-new {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1500px;
        }

        .network-globe-container {
            position: relative;
            width: 500px;
            height: 500px;
            transform-style: preserve-3d;
        }

        /* Background Particles */
        .bg-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .bg-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, #FFA802, transparent);
            border-radius: 50%;
            left: var(--x);
            top: var(--y);
            animation: floatParticle var(--duration) ease-in-out infinite;
            animation-delay: var(--delay);
            opacity: 0.6;
            box-shadow: 0 0 10px #FFA802;
        }

        @keyframes floatParticle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translate(20px, -20px) scale(1.5);
                opacity: 0.8;
            }
        }

        /* Central 3D Hub */
        .central-hub-3d {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            transform-style: preserve-3d;
            animation: hubRotate 30s linear infinite;
        }

        @keyframes hubRotate {
            from {
                transform: translate(-50%, -50%) rotateY(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotateY(360deg);
            }
        }

        /* Rotating Orbit Rings */
        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border: 2px solid rgba(255, 168, 2, 0.3);
            transform-style: preserve-3d;
        }

        .ring-outer {
            width: 400px;
            height: 400px;
            transform: translate(-50%, -50%) rotateX(70deg);
            animation: ringRotate 20s linear infinite;
        }

        .ring-middle {
            width: 320px;
            height: 320px;
            transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg);
            animation: ringRotate 15s linear infinite reverse;
            border-color: rgba(255, 95, 21, 0.4);
        }

        .ring-inner {
            width: 240px;
            height: 240px;
            transform: translate(-50%, -50%) rotateX(70deg) rotateY(120deg);
            animation: ringRotate 10s linear infinite;
            border-color: rgba(255, 168, 2, 0.5);
        }

        @keyframes ringRotate {
            from {
                transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
            }
        }

        .ring-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            /* background: linear-gradient(90deg, transparent, #FFA802, transparent); */
            filter: blur(4px);
            opacity: 0.6;
            animation: glowPulse 3s ease-in-out infinite;
        }

        /* Hub Core with Holographic Effect */
        .hub-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            z-index: 10;
            transform-style: preserve-3d;
        }

        .hologram-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.2), rgba(255, 168, 2, 0.2));
            border-radius: 50%;
            border: 2px solid rgba(255, 168, 2, 0.4);
        }

        .layer-1 {
            transform: translateZ(20px) scale(1.1);
            animation: hologramFloat 4s ease-in-out infinite;
        }

        .layer-2 {
            transform: translateZ(10px) scale(1.05);
            animation: hologramFloat 4s ease-in-out infinite 0.5s;
        }

        .layer-3 {
            transform: translateZ(0px);
            animation: hologramFloat 4s ease-in-out infinite 1s;
        }

        @keyframes hologramFloat {

            0%,
            100% {
                opacity: 0.3;
                transform: translateZ(20px) scale(1.1);
            }

            50% {
                opacity: 0.6;
                transform: translateZ(30px) scale(1.15);
            }
        }

        .core-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            /* background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 40px rgba(255, 95, 21, 0.6),
                0 0 80px rgba(255, 168, 2, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
            animation: coreGlow 3s ease-in-out infinite;
        }

        @keyframes coreGlow {

            0%,
            100% {
                box-shadow:
                    0 0 40px rgba(255, 95, 21, 0.6),
                    0 0 80px rgba(255, 168, 2, 0.4),
                    inset 0 0 30px rgba(255, 255, 255, 0.2);
            }

            50% {
                box-shadow:
                    0 0 60px rgba(255, 95, 21, 0.8),
                    0 0 120px rgba(255, 168, 2, 0.6),
                    inset 0 0 40px rgba(255, 255, 255, 0.3);
            }
        }

        .core-content img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .core-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: 3px solid #FFA802;
            border-radius: 50%;
            animation: pulsateCore 2s ease-out infinite;
        }

        @keyframes pulsateCore {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Energy Waves */
        .energy-waves {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
        }

        .wave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            border: 2px solid rgba(255, 168, 2, 0.5);
            border-radius: 50%;
            animation: waveExpand 3s ease-out infinite;
        }

        .wave-1 {
            animation-delay: 0s;
        }

        .wave-2 {
            animation-delay: 1s;
        }

        .wave-3 {
            animation-delay: 2s;
        }

        @keyframes waveExpand {
            0% {
                width: 120px;
                height: 120px;
                opacity: 0.8;
            }

            100% {
                width: 300px;
                height: 300px;
                opacity: 0;
            }
        }

        /* Partnership Nodes */
        .partnership-node {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 90px;
            height: 90px;
            transform-style: preserve-3d;
            animation: nodeOrbit 12s linear infinite;
        }

        /* Node Positions */
        .node-pos-1 {
            transform: translate(-50%, -50%) rotate(0deg) translateX(200px);
            animation-delay: 0s;
        }

        .node-pos-2 {
            transform: translate(-50%, -50%) rotate(45deg) translateX(200px);
            animation-delay: -1.5s;
        }

        .node-pos-3 {
            transform: translate(-50%, -50%) rotate(90deg) translateX(200px);
            animation-delay: -3s;
        }

        .node-pos-4 {
            transform: translate(-50%, -50%) rotate(135deg) translateX(200px);
            animation-delay: -4.5s;
        }

        .node-pos-5 {
            transform: translate(-50%, -50%) rotate(180deg) translateX(200px);
            animation-delay: -6s;
        }

        .node-pos-6 {
            transform: translate(-50%, -50%) rotate(225deg) translateX(200px);
            animation-delay: -7.5s;
        }

        .node-pos-7 {
            transform: translate(-50%, -50%) rotate(270deg) translateX(200px);
            animation-delay: -9s;
        }

        .node-pos-8 {
            transform: translate(-50%, -50%) rotate(315deg) translateX(200px);
            animation-delay: -10.5s;
        }

        @keyframes nodeOrbit {
            from {
                transform: translate(-50%, -50%) rotate(0deg) translateX(200px);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg) translateX(200px);
            }
        }

        .node-orbit-trail {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            border: 1px dashed rgba(255, 168, 2, 0.2);
            border-radius: 50%;
            pointer-events: none;
        }

        .node-card {
            position: relative;
            width: 90px;
            height: 90px;
            background: rgba(13, 22, 62, 0.95);
            border: 2px solid rgba(255, 168, 2, 0.5);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            backdrop-filter: blur(20px);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(255, 168, 2, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            transform: rotate(0deg);
            animation: nodeCardFloat 3s ease-in-out infinite;
        }

        @keyframes nodeCardFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(0deg);
            }
        }

        .node-card:hover {
            transform: translateY(-15px) scale(1.15) rotate(0deg);
            border-color: #FF5F15;
            box-shadow:
                0 15px 50px rgba(255, 95, 21, 0.6),
                0 0 40px rgba(255, 168, 2, 0.5);
            background: rgba(255, 95, 21, 0.2);
        }

        .node-icon-wrapper {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 12px;
            opacity: 0.3;
            animation: iconBgPulse 2s ease-in-out infinite;
        }

        @keyframes iconBgPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        .node-icon-wrapper i {
            font-size: 20px;
            color: #FFA802;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .node-card:hover .node-icon-wrapper i {
            animation: iconBounce 0.6s ease;
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3);
            }
        }

        .node-label {
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .node-stats {
            font-size: 10px;
            font-weight: 600;
            color: #FFA802;
            background: rgba(255, 168, 2, 0.1);
            padding: 2px 8px;
            border-radius: 10px;
            border: 1px solid rgba(255, 168, 2, 0.3);
        }

        /* Connection Beams */
        .connection-beam {
            position: absolute;
            bottom: 100%;
            left: 50%;
            width: 2px;
            height: 100px;
            background: linear-gradient(to top, #FFA802, transparent);
            transform: translateX(-50%);
            opacity: 0.5;
            animation: beamPulse 2s ease-in-out infinite;
        }

        @keyframes beamPulse {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 0.8;
            }
        }

        /* Data Streams */
        .data-stream-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .data-stream {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .stream-1 {
            transform: rotate(30deg);
        }

        .stream-2 {
            transform: rotate(150deg);
        }

        .stream-3 {
            transform: rotate(270deg);
        }

        .data-packet {
            position: absolute;
            top: 50%;
            left: 10%;
            width: 6px;
            height: 6px;
            background: #FFA802;
            border-radius: 50%;
            box-shadow: 0 0 15px #FFA802, 0 0 30px rgba(255, 168, 2, 0.5);
            animation: packetFlow 3s linear infinite;
        }

        @keyframes packetFlow {
            0% {
                left: 10%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                left: 90%;
                opacity: 0;
            }
        }

        /* Ambient Light Effects */
        .ambient-lights {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .light-spot {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: lightMove 10s ease-in-out infinite;
        }

        .spot-1 {
            background: radial-gradient(circle, #FF5F15, transparent);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .spot-2 {
            background: radial-gradient(circle, #FFA802, transparent);
            bottom: 10%;
            right: 10%;
            animation-delay: 3.33s;
        }

        .spot-3 {
            background: radial-gradient(circle, #FF5F15, transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 6.66s;
        }

        @keyframes lightMove {

            0%,
            100% {
                transform: translate(0, 0);
            }

            33% {
                transform: translate(30px, -30px);
            }

            66% {
                transform: translate(-30px, 30px);
            }
        }

        /* Network Grid Background */
        .network-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.3;
        }

        .grid-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, #FFA802, transparent);
        }

        .grid-line.horizontal {
            width: 100%;
            height: 1px;
            animation: gridScanH 4s ease-in-out infinite;
        }

        .grid-line.vertical {
            width: 1px;
            height: 100%;
            animation: gridScanV 4s ease-in-out infinite;
        }

        @keyframes gridScanH {

            0%,
            100% {
                opacity: 0.2;
                transform: scaleX(0.8);
            }

            50% {
                opacity: 0.6;
                transform: scaleX(1);
            }
        }

        @keyframes gridScanV {

            0%,
            100% {
                opacity: 0.2;
                transform: scaleY(0.8);
            }

            50% {
                opacity: 0.6;
                transform: scaleY(1);
            }
        }

        /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

        @media (max-width: 1200px) {
            .network-globe-container {
                width: 450px;
                height: 450px;
            }

            .central-hub-3d {
                width: 450px;
                height: 450px;
            }

            .ring-outer {
                width: 360px;
                height: 360px;
            }

            .ring-middle {
                width: 290px;
                height: 290px;
            }

            .ring-inner {
                width: 220px;
                height: 220px;
            }

            .node-card {
                width: 80px;
                height: 80px;
            }

            .node-icon-wrapper {
                width: 36px;
                height: 36px;
            }

            .node-icon-wrapper i {
                font-size: 18px;
            }
        }

        @media (max-width: 992px) {
            .network-globe-container {
                width: 400px;
                height: 400px;
            }

            .central-hub-3d {
                width: 400px;
                height: 400px;
            }

            .ring-outer {
                width: 320px;
                height: 320px;
            }

            .ring-middle {
                width: 260px;
                height: 260px;
            }

            .ring-inner {
                width: 200px;
                height: 200px;
            }

            .hub-core {
                width: 130px;
                height: 130px;
            }

            .core-content {
                width: 100px;
                height: 100px;
            }

            .core-content img {
                width: 65px;
                height: 65px;
            }

            .node-card {
                width: 70px;
                height: 70px;
            }

            .node-pos-1,
            .node-pos-2,
            .node-pos-3,
            .node-pos-4,
            .node-pos-5,
            .node-pos-6,
            .node-pos-7,
            .node-pos-8 {
                animation: nodeOrbit 12s linear infinite;
            }

            @keyframes nodeOrbit {
                from {
                    transform: translate(-50%, -50%) rotate(0deg) translateX(170px);
                }

                to {
                    transform: translate(-50%, -50%) rotate(360deg) translateX(170px);
                }
            }
        }

        @media (max-width: 768px) {
            .hero-visual {
                height: 400px;
            }

            .network-globe-container {
                width: 350px;
                height: 350px;
            }

            .central-hub-3d {
                width: 350px;
                height: 350px;
            }

            .ring-outer {
                width: 280px;
                height: 280px;
            }

            .ring-middle {
                width: 230px;
                height: 230px;
            }

            .ring-inner {
                width: 180px;
                height: 180px;
            }

            .hub-core {
                width: 110px;
                height: 110px;
            }

            .core-content {
                width: 85px;
                height: 85px;
            }

            .core-content img {
                width: 55px;
                height: 55px;
            }

            .node-card {
                width: 65px;
                height: 65px;
            }

            .node-icon-wrapper {
                width: 32px;
                height: 32px;
            }

            .node-icon-wrapper i {
                font-size: 16px;
            }

            .node-label {
                font-size: 10px;
            }

            .node-stats {
                font-size: 9px;
                padding: 2px 6px;
            }

            @keyframes nodeOrbit {
                from {
                    transform: translate(-50%, -50%) rotate(0deg) translateX(145px);
                }

                to {
                    transform: translate(-50%, -50%) rotate(360deg) translateX(145px);
                }
            }

            .light-spot {
                width: 150px;
                height: 150px;
                filter: blur(50px);
            }
        }

        @media (max-width: 576px) {
            .hero-visual {
                height: 350px;
            }

            .network-globe-container {
                width: 300px;
                height: 300px;
            }

            .central-hub-3d {
                width: 300px;
                height: 300px;
            }

            .ring-outer {
                width: 240px;
                height: 240px;
            }

            .ring-middle {
                width: 200px;
                height: 200px;
            }

            .ring-inner {
                width: 160px;
                height: 160px;
            }

            .hub-core {
                width: 95px;
                height: 95px;
            }

            .core-content {
                width: 75px;
                height: 75px;
            }

            .core-content img {
                width: 48px;
                height: 48px;
            }

            .node-card {
                width: 60px;
                height: 60px;
            }

            .node-icon-wrapper {
                width: 28px;
                height: 28px;
            }

            .node-icon-wrapper i {
                font-size: 14px;
            }

            .node-label {
                font-size: 9px;
            }

            .node-stats {
                font-size: 8px;
                padding: 2px 5px;
            }

            @keyframes nodeOrbit {
                from {
                    transform: translate(-50%, -50%) rotate(0deg) translateX(125px);
                }

                to {
                    transform: translate(-50%, -50%) rotate(360deg) translateX(125px);
                }
            }

            .connection-beam {
                height: 80px;
            }

            .light-spot {
                width: 120px;
                height: 120px;
                filter: blur(40px);
            }

            .bg-particle {
                width: 3px;
                height: 3px;
            }
        }

        @media (max-width: 480px) {
            .hero-visual {
                height: 320px;
            }

            .network-globe-container {
                width: 260px;
                height: 260px;
            }

            .central-hub-3d {
                width: 260px;
                height: 260px;
            }

            .ring-outer {
                width: 210px;
                height: 210px;
            }

            .ring-middle {
                width: 175px;
                height: 175px;
            }

            .ring-inner {
                width: 140px;
                height: 140px;
            }

            .hub-core {
                width: 85px;
                height: 85px;
            }

            .core-content {
                width: 65px;
                height: 65px;
            }

            .core-content img {
                width: 42px;
                height: 42px;
            }

            .node-card {
                width: 55px;
                height: 55px;
            }

            .node-icon-wrapper {
                width: 26px;
                height: 26px;
            }

            .node-icon-wrapper i {
                font-size: 13px;
            }

            .node-label {
                font-size: 8px;
            }

            .node-stats {
                font-size: 7px;
                padding: 1px 4px;
            }

            @keyframes nodeOrbit {
                from {
                    transform: translate(-50%, -50%) rotate(0deg) translateX(110px);
                }

                to {
                    transform: translate(-50%, -50%) rotate(360deg) translateX(110px);
                }
            }

            .connection-beam {
                height: 70px;
                width: 1.5px;
            }
        }

        @media (max-width: 375px) {
            .network-globe-container {
                width: 240px;
                height: 240px;
            }

            .central-hub-3d {
                width: 240px;
                height: 240px;
            }

            .ring-outer {
                width: 190px;
                height: 190px;
            }

            .ring-middle {
                width: 160px;
                height: 160px;
            }

            .ring-inner {
                width: 130px;
                height: 130px;
            }

            .hub-core {
                width: 75px;
                height: 75px;
            }

            .core-content {
                width: 60px;
                height: 60px;
            }

            .core-content img {
                width: 38px;
                height: 38px;
            }

            .node-card {
                width: 50px;
                height: 50px;
            }

            @keyframes nodeOrbit {
                from {
                    transform: translate(-50%, -50%) rotate(0deg) translateX(100px);
                }

                to {
                    transform: translate(-50%, -50%) rotate(360deg) translateX(100px);
                }
            }
        }

        /* Performance Optimization */
        @media (prefers-reduced-motion: reduce) {

            .central-hub-3d,
            .partnership-node,
            .data-packet,
            .bg-particle,
            .light-spot,
            .grid-line,
            .orbit-ring,
            .hologram-layer,
            .core-content,
            .wave,
            .core-pulse,
            .node-card {
                animation: none !important;
            }
        }

        /* Print Styles */
        @media print {

            .bg-particles,
            .data-stream-container,
            .ambient-lights,
            .network-grid,
            .energy-waves,
            .connection-beam,
            .node-orbit-trail {
                display: none !important;
            }
        }

        /* Premium Benefits Section */
        .premium-benefits-section {
            padding: clamp(100px, 12vw, 150px) 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #1a2556 100%);
        }

        .premium-benefits-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 95, 21, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 168, 2, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            background: rgba(255, 95, 21, 0.1);
            border: 1px solid rgba(255, 95, 21, 0.3);
            color: var(--secondary-orange);
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 25px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .section-subtitle {
            font-size: 22px;
            color: white;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .premium-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
            position: relative;
            z-index: 2;
        }

        .premium-benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            padding: 50px 40px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .premium-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .premium-benefit-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--primary-orange);
            box-shadow: 0 30px 70px rgba(255, 95, 21, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .premium-benefit-card:hover::before {
            left: 100%;
        }

        .benefit-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .premium-benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .premium-benefit-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .premium-benefit-card:hover .premium-benefit-icon::after {
            left: 100%;
        }

        .benefit-title-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .benefit-subtitle {
            font-size: 1rem;
            color: var(--secondary-orange);
            font-weight: 600;
        }

        .benefit-description {
            font-size: 22px;
            color: white;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
            text-align: justify;
        }

        .benefit-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .benefit-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 21px;
        }

        .benefit-features li i {
            color: var(--secondary-orange);
            font-size: 14px;
            width: 20px;
        }

        .benefit-cta {
            margin-top: auto;
        }

        .benefit-btn {
            background: transparent;
            color: var(--secondary-orange);
            border: 2px solid rgba(255, 168, 2, 0.5);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .benefit-btn:hover {
            background: rgba(255, 168, 2, 0.1);
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateX(5px);
        }




        /* Partnership Models Section */
        .models-section {
            padding: clamp(80px, 10vw, 120px) 0;
            background: rgba(255, 95, 21, 0.08);
            border-top: 2px solid rgba(255, 95, 21, 0.2);
            border-bottom: 2px solid rgba(255, 95, 21, 0.2);
            position: relative;
            overflow: hidden;
        }

        .models-container {
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
        }

        .models-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .model-tab {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 50px;
            padding: 15px 30px;
            font-weight: 600;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .model-tab.active,
        .model-tab:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-orange);
            transform: translateY(-3px);
        }

        .model-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .model-content.active {
            display: block;
            /* width: 700px; */
            margin: auto;
        }


        /* <CHANGE> Responsive layout for model cards with side-by-side content and image */
        .model-card .row {
            display: flex;
            align-items: stretch;
        }

        .model-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            min-height: 350px;
            overflow: hidden;
        }

        .model-placeholder-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        /* Responsive adjustments for tablets and mobile */
        @media (max-width: 991.98px) {
            .model-image-container {
                min-height: 300px;
                margin-top: 1rem;
            }
        }

        @media (max-width: 576px) {
            .model-image-container {
                min-height: 250px;
            }

            .model-placeholder-image {
                border-radius: 6px;
            }
        }

        .model-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            padding: 40px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .model-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            box-shadow: 0 20px 40px rgba(255, 95, 21, 0.2);
        }

        .model-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .model-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
        }

        .model-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }

        .model-subtitle {
            font-size: 1.3rem;
            color: var(--secondary-orange);
            font-weight: 600;
        }

        .model-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .model-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: white;
            font-size: 20px;
            text-align: justify;

        }

        .model-features li i {
            color: var(--secondary-orange);
            font-size: 18px;
        }

        .model-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Partnership Form Section */
        .partnership-form-section {
            padding: clamp(80px, 10vw, 120px) 0;
            position: relative;
            overflow: hidden;
        }

        .form-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: start;
        }

        .form-section-left {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 30px;
            padding: 50px 40px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            height: 100%;
        }

        .modern-contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-row-dual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .input-group-modern {
            position: relative;
            margin-bottom: 5px;
        }

        .input-group-modern input,
        .input-group-modern select,
        .input-group-modern textarea {
            width: 100%;
            padding: 15px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
            font-weight: 500;
        }

        .input-group-modern input::placeholder,
        .input-group-modern textarea::placeholder {
            color: transparent;
        }

        .input-group-modern label {
            position: absolute;
            left: 12px;
            top: 15px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 21px;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            padding: 0 6px;
            z-index: 1;
        }

        .input-group-modern label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, #1a2556 0%, #2D365E 80%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .input-group-modern input:focus,
        .input-group-modern select:focus,
        .input-group-modern textarea:focus {
            border-color: var(--secondary-orange);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 95, 21, 0.15);
        }

        .input-group-modern input:focus~label,
        .input-group-modern select:focus~label,
        .input-group-modern textarea:focus~label {
            top: -11px;
            left: 10px;
            font-size: 16px;
            font-weight: 600;
            color: var(--secondary-orange);
            padding: 0 6px;
            background: #152c5d;
        }

        .input-group-modern input:focus~label::before,
        .input-group-modern input:not(:placeholder-shown)~label::before,
        .input-group-modern select:valid:not([value=""])~label::before,
        .input-group-modern textarea:not(:placeholder-shown)~label::before {
            opacity: 1;
        }

        .input-group-modern input:not(:placeholder-shown)~label,
        .input-group-modern select:valid:not([value=""])~label,
        .input-group-modern textarea:not(:placeholder-shown)~label {
            top: -11px;
            left: 10px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            padding: 0 6px;
        }

        .input-group-modern textarea {
            resize: vertical;
            min-height: 120px;
        }

        .input-group-modern select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            padding-right: 35px;
        }

        .input-group-modern select option {
            background: #0d163e;
            color: white;
            padding: 10px;
        }

        .select-arrow {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.5);
            pointer-events: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .input-group-modern select:focus~.select-arrow {
            color: var(--secondary-orange);
            transform: translateY(-50%) rotate(180deg);
        }

        .modern-submit-btn {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 18px 40px;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }

        .modern-submit-btn::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.6s ease;
        }

        .modern-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
        }

        .modern-submit-btn:hover::before {
            left: 100%;
        }

        .btn-icon {
            transition: transform 0.3s ease;
        }

        .modern-submit-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        .form-section-right {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card-modern {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 20px;
            padding: 30px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .info-card-modern:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            box-shadow: 0 15px 30px rgba(255, 95, 21, 0.2);
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .info-card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
        }

        .info-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: orange;
            margin: 0;
        }

        .info-card-text {
            font-size: 22px;
            color: white;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }

        /* Success Stories Section */
        .success-section {
            padding: clamp(80px, 10vw, 120px) 0;
            background: rgba(255, 95, 21, 0.08);
            position: relative;
            overflow: hidden;
        }

        .success-container {
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
        }

        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .success-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .success-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: 0 25px 60px rgba(255, 95, 21, 0.3);
        }

        .success-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-orange);
            overflow: hidden;
        }

        .success-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .success-quote {
            font-size: 22px;
            color: white;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: justify;
        }

        .success-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }

        .success-role {
            font-size: 0.9rem;
            color: var(--secondary-orange);
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            padding: clamp(80px, 10vw, 120px) 0;
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active {
            border-color: var(--primary-orange);
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.2);
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        .faq-answer p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: clamp(80px, 10vw, 120px) 0;
            background: var(--gradient-primary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            background: white;
            color: var(--primary-orange);
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--primary-orange);
        }

        .cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
        }

        .cta-btn-secondary:hover {
            background: white;
            color: var(--primary-orange);
            transform: translateY(-3px);
        }

        /* ============================================
   RESPONSIVE DESIGN - UPDATED
   ============================================ */

        /* Extra Large Screens (1400px+) */
        @media (max-width: 1400px) {

            .hero-content-wrapper,
            .premium-benefits-grid,
            .models-container,
            .form-container,
            .success-container {
                max-width: 1200px;
                padding: 0 40px;
            }

            .premium-benefits-grid {
                gap: 40px;
            }
        }

        /* Large Screens (1200px - 1400px) */
        @media (max-width: 1200px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .hero-left {
                align-items: center;
            }

            .hero-badge {
                margin: 0 auto;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-visual {
                order: -1;
                height: 450px;
                margin-top: 40px;
            }

            .network-container {
                width: 380px;
                height: 380px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .form-section-right {
                order: -1;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .premium-benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 35px;
            }

            .stats-counter {
                gap: 40px;
            }
        }

        /* Medium Screens (992px - 1200px) */
        @media (max-width: 992px) {
            h1 {
                font-size: clamp(2rem, 5vw, 3rem);
            }

            h2 {
                font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            }

            .partner-hero-section {
                padding: 60px 0;
                min-height: 75vh;
            }

            .network-container {
                width: 320px;
                height: 320px;
            }

            .central-hub {
                width: 100px;
                height: 100px;
            }

            .central-hub img {
                width: 70px;
                height: 70px;
            }

            .central-hub i {
                font-size: 32px;
            }

            .partner-node {
                width: 60px;
                height: 60px;
            }

            .partner-node i {
                font-size: 20px;
            }

            .connection-line {
                height: 1.5px;
            }

            .line-1,
            .line-2 {
                width: 130px;
            }

            .line-3,
            .line-4 {
                width: 150px;
            }

            .models-tabs {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .model-tab {
                width: 100%;
                justify-content: center;
                padding: 18px 30px;
            }

            .model-content.active {
                width: 100%;
            }

            .model-card {
                padding: 35px 30px;
            }

            .model-features li {
                font-size: 18px;
            }

            .premium-benefit-card {
                padding: 40px 30px;
            }

            .premium-benefits-section,
            .models-section,
            .partnership-form-section,
            .success-section,
            .faq-section,
            .cta-section {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 60px;
            }
        }

        /* Tablet Screens (768px - 992px) */
        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }

            .partner-hero-section {
                padding: 50px 0;
                min-height: auto;
                margin-top: 4rem;
            }

            .hero-content-wrapper {
                padding: 0 25px;
                gap: 40px;
            }

            .hero-title {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                margin-bottom: 20px;
            }

            .hero-subtitle {
                font-size: clamp(1rem, 2.5vw, 1.2rem);
                margin-bottom: 30px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                width: 100%;
                max-width: 350px;
                justify-content: center;
                padding: 16px 30px;
            }

            .hero-visual {
                height: 380px;
            }

            .network-container {
                width: 280px;
                height: 280px;
            }

            .central-hub {
                width: 85px;
                height: 85px;
            }

            .central-hub img {
                width: 60px;
                height: 60px;
            }

            .partner-node {
                width: 50px;
                height: 50px;
            }

            .partner-node i {
                font-size: 18px;
            }

            .floating-element {
                width: 35px !important;
                height: 35px !important;
            }

            .floating-element i {
                font-size: 16px;
            }

            .stats-counter {
                flex-direction: row;
                justify-content: space-around;
                gap: 20px;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 2rem;
            }

            .premium-benefits-grid,
            .success-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .premium-benefit-card,
            .success-card {
                padding: 35px 25px;
            }

            .premium-benefit-icon {
                width: 65px;
                height: 65px;
                font-size: 26px;
            }

            .benefit-title-content h3 {
                font-size: 1.4rem;
            }

            .benefit-subtitle {
                font-size: 0.95rem;
            }

            .form-section-left {
                padding: 35px 25px;
            }

            .form-section-right {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-row-dual {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .modern-submit-btn {
                padding: 16px 35px;
                font-size: 16px;
            }

            .model-header {
                flex-wrap: wrap;
                gap: 15px;
            }

            .model-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .model-title {
                font-size: 1.6rem;
            }

            .model-subtitle {
                font-size: 1.1rem;
            }

            .model-cta {
                flex-direction: column;
                gap: 12px;
            }

            .model-cta .hero-btn-primary,
            .model-cta .hero-btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                max-width: 350px;
                justify-content: center;
            }

            .faq-question {
                padding: 20px 25px;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 25px;
            }

            .faq-item.active .faq-answer {
                padding: 0 25px 20px;
            }
        }

        /* Small Tablet (576px - 768px) */
        @media (max-width: 576px) {

            .hero-content-wrapper,
            .premium-benefits-grid,
            .models-container,
            .form-container,
            .success-container,
            .faq-container,
            .cta-container {
                padding: 0 20px;
            }

            .partner-hero-section {
                padding: 40px 0;
                margin-top: 3.5rem;
                border-radius: 0 0 20px 20px;
            }

            .hero-badge {
                padding: 10px 20px;
                font-size: 12px;
            }

            .hero-title {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: clamp(0.95rem, 2.5vw, 1.1rem);
                margin-bottom: 25px;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                padding: 14px 25px;
                font-size: 14px;
                max-width: 100%;
            }

            .hero-visual {
                height: 320px;
            }

            .network-container {
                width: 240px;
                height: 240px;
            }

            .central-hub {
                width: 70px;
                height: 70px;
            }

            .central-hub img {
                width: 50px;
                height: 50px;
            }

            .partner-node {
                width: 45px;
                height: 45px;
            }

            .partner-node i {
                font-size: 16px;
            }

            .connection-line {
                height: 1px;
            }

            .line-1,
            .line-2 {
                width: 100px;
            }

            .line-3,
            .line-4 {
                width: 120px;
            }

            .floating-element {
                display: none;
            }

            .stats-counter {
                flex-direction: column;
                gap: 25px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            .section-badge {
                padding: 8px 20px;
                font-size: 12px;
            }

            .section-title {
                font-size: clamp(1.6rem, 5vw, 2.5rem);
                margin-bottom: 18px;
            }

            .section-subtitle {
                font-size: clamp(1rem, 2.5vw, 1.2rem);
            }

            .section-header {
                margin-bottom: 50px;
            }

            .premium-benefits-section,
            .models-section,
            .partnership-form-section,
            .success-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }

            .premium-benefit-card,
            .model-card,
            .success-card,
            .info-card-modern {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .benefit-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .premium-benefit-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                border-radius: 15px;
            }

            .benefit-title-content h3 {
                font-size: 1.3rem;
            }

            .benefit-subtitle {
                font-size: 0.9rem;
            }

            .benefit-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .benefit-features li {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .benefit-btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            .model-tab {
                padding: 15px 25px;
                font-size: 14px;
            }

            .model-header {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .model-icon {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .model-title {
                font-size: 1.4rem;
            }

            .model-subtitle {
                font-size: 1rem;
            }

            .model-features li {
                font-size: 16px;
                text-align: left;
            }

            .form-section-left {
                padding: 30px 20px;
                border-radius: 25px;
            }

            .modern-contact-form {
                gap: 12px;
            }

            .input-group-modern input,
            .input-group-modern select,
            .input-group-modern textarea {
                padding: 14px 12px;
                font-size: 15px;
            }

            .input-group-modern label {
                font-size: 15px;
                top: 14px;
            }

            .input-group-modern textarea {
                min-height: 100px;
            }

            .modern-submit-btn {
                padding: 15px 30px;
                font-size: 15px;
                gap: 10px;
            }

            .info-card-modern {
                padding: 25px 20px;
            }

            .info-card-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .info-card-title {
                font-size: 1.1rem;
            }

            .info-card-text {
                font-size: 0.9rem;
            }

            .success-avatar {
                width: 80px;
                height: 80px;
                margin-bottom: 15px;
            }

            .success-quote {
                font-size: 0.95rem;
                margin-bottom: 15px;
            }

            .success-name {
                font-size: 1.1rem;
            }

            .success-role {
                font-size: 0.85rem;
            }

            .faq-question {
                padding: 18px 20px;
                font-size: 0.95rem;
            }

            .faq-answer {
                padding: 0 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 18px;
            }

            .cta-title {
                font-size: clamp(1.6rem, 5vw, 2.5rem);
                margin-bottom: 15px;
            }

            .cta-subtitle {
                font-size: clamp(0.95rem, 2.5vw, 1.15rem);
                margin-bottom: 30px;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                padding: 15px 30px;
                font-size: 14px;
                max-width: 100%;
            }
        }

        /* Extra Small Devices (320px - 576px) */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .hero-visual {
                height: 280px;
            }

            .network-container {
                width: 200px;
                height: 200px;
            }

            .central-hub {
                width: 60px;
                height: 60px;
            }

            .central-hub img {
                width: 42px;
                height: 42px;
            }

            .partner-node {
                width: 38px;
                height: 38px;
            }

            .partner-node i {
                font-size: 14px;
            }

            .line-1,
            .line-2 {
                width: 80px;
            }

            .line-3,
            .line-4 {
                width: 95px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }

            .premium-benefit-card {
                padding: 25px 18px;
            }

            .benefit-title-content h3 {
                font-size: 1.2rem;
            }

            .model-title {
                font-size: 1.3rem;
            }

            .form-section-left,
            .model-card {
                padding: 25px 18px;
            }

            .input-group-modern input,
            .input-group-modern select,
            .input-group-modern textarea {
                padding: 12px 10px;
                font-size: 14px;
            }

            .info-card-modern {
                padding: 20px 18px;
            }

            .cta-title {
                font-size: 1.5rem;
            }
        }

        /* Very Small Devices (< 375px) */
        @media (max-width: 375px) {
            .hero-content-wrapper {
                padding: 0 15px;
            }

            .hero-badge {
                padding: 8px 16px;
                font-size: 11px;
            }

            .network-container {
                width: 180px;
                height: 180px;
            }

            .central-hub {
                width: 55px;
                height: 55px;
            }

            .central-hub img {
                width: 38px;
                height: 38px;
            }

            .partner-node {
                width: 35px;
                height: 35px;
            }

            .partner-node i {
                font-size: 12px;
            }

            .premium-benefits-grid,
            .models-container,
            .form-container,
            .success-container,
            .faq-container {
                padding: 0 15px;
            }

            .premium-benefit-icon {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .model-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        /* Landscape Mode for Small Devices */
        @media (max-height: 600px) and (orientation: landscape) {
            .partner-hero-section {
                min-height: auto;
                padding: 40px 0;
            }

            .hero-visual {
                height: 320px;
            }

            .network-container {
                width: 220px;
                height: 220px;
            }
        }

        /* Print Styles */
        @media print {

            .hero-shapes,
            .floating-elements,
            .connection-line {
                display: none;
            }
        }




        /* Carousel Wrapper */
        .premium-benefits-carousel-wrapper {
            position: relative;
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(80px, 5vw);
        }

        .premium-benefits-carousel {
            display: flex;
            gap: 50px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 20px 0;
        }

        .premium-benefits-carousel::-webkit-scrollbar {
            display: none;
        }

        .premium-benefits-carousel .premium-benefit-card {
            min-width: calc(33.333% - 34px);
            /* flex-shrink: 0; */
        }

        /* Carousel Navigation Buttons */
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(255, 95, 21, 0.3);
        }

        .carousel-nav-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 95, 21, 0.5);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        /* Responsive Carousel */
        @media (max-width: 1400px) {
            .premium-benefits-carousel .premium-benefit-card {
                min-width: calc(50% - 25px);
            }
        }

        @media (max-width: 992px) {
            .premium-benefits-carousel .premium-benefit-card {
                min-width: calc(100% - 40px);
            }

            .carousel-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .premium-benefits-carousel-wrapper {
                padding: unset;
            }

            .carousel-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }
        }

        @media (max-width: 576px) {
            .premium-benefits-carousel-wrapper {
                padding: unset;
            }

            .carousel-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .prev-btn {
                left: 5px;
            }

            .next-btn {
                right: 5px;
            }
        }




        /* ============================================
   PARTNERSHIP GROWTH VISUAL - NEW DESIGN
   ============================================ */

        .partnership-growth-visual {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        .growth-ecosystem {
            position: relative;
            width: 550px;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Partnership Tower (Central Element) */
        .partnership-tower {
            position: relative;
            width: 280px;
            height: 550px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            z-index: 10;
            gap: 15px;
            padding-bottom: 20px;
        }

        /* Tower Base */
        .tower-base {
            position: relative;
            width: 100%;
            height: 60px;
            background: linear-gradient(135deg, #1a2556 0%, #0d163e 100%);
            border: 2px solid rgba(255, 168, 2, 0.4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .base-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 168, 2, 0.2), transparent);
            animation: glowSlide 3s linear infinite;
        }

        @keyframes glowSlide {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        .base-text {
            font-size: 14px;
            font-weight: 700;
            color: #FFA802;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        /* Tower Levels */
        .tower-level {
            position: relative;
            width: 100%;
            animation: levelRise 1s ease-out backwards;
        }

        .level-1 {
            animation-delay: 0.2s;
        }

        .level-2 {
            animation-delay: 0.4s;
        }

        .level-3 {
            animation-delay: 0.6s;
        }

        .level-4 {
            animation-delay: 0.8s;
        }

        @keyframes levelRise {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .level-card {
            position: relative;
            background: rgba(13, 22, 62, 0.95);
            border: 2px solid rgba(255, 168, 2, 0.4);
            border-radius: 18px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            cursor: pointer;
            overflow: hidden;
        }

        .level-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 168, 2, 0.15), transparent);
            transition: left 0.6s ease;
        }

        .level-card:hover {
            transform: translateX(-10px) scale(1.05);
            border-color: #FF5F15;
            box-shadow:
                0 15px 40px rgba(255, 95, 21, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .level-card:hover::before {
            left: 100%;
        }

        .level-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255, 95, 21, 0.4);
            position: relative;
            overflow: hidden;
        }

        .level-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: iconShine 3s linear infinite;
        }

        @keyframes iconShine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .level-icon i {
            font-size: 26px;
            color: white;
            z-index: 2;
        }

        .level-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .level-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.2;
        }

        .partner-count {
            font-size: 13px;
            font-weight: 600;
            color: #FFA802;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .partner-count::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #FFA802;
            border-radius: 50%;
            display: inline-block;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .level-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 168, 2, 0.2);
            border: 1px solid rgba(255, 168, 2, 0.5);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: #FFA802;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Growth Arrows */
        .growth-arrow {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: rgba(255, 168, 2, 0.2);
            border: 2px solid #FFA802;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: arrowBounce 2s ease-in-out infinite;
        }

        .growth-arrow i {
            font-size: 14px;
            color: #FFA802;
        }

        @keyframes arrowBounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

        /* Success Glow (Top Level) */
        .success-glow {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #FFA802, transparent);
            border-radius: 50%;
            filter: blur(20px);
            animation: successPulse 2s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes successPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: translateX(-50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translateX(-50%) scale(1.3);
            }
        }

        /* Tower Logo */
        .tower-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            pointer-events: none;
        }

        .logo-container {
            position: relative;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 40px rgba(255, 95, 21, 0.6),
                0 0 80px rgba(255, 168, 2, 0.4);
            animation: logoRotate 20s linear infinite;
        }

        @keyframes logoRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .logo-container img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(180deg);
            }
        }

        .logo-ring {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 3px solid rgba(255, 168, 2, 0.3);
            border-radius: 50%;
            animation: ringRotate 3s linear infinite;
        }

        @keyframes ringRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .logo-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: 3px solid #FFA802;
            border-radius: 50%;
            animation: logoPulse 2s ease-out infinite;
        }

        @keyframes logoPulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Floating Benefits */
        .floating-benefits {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .benefit-card {
            position: absolute;
            background: rgba(13, 22, 62, 0.95);
            border: 2px solid rgba(255, 168, 2, 0.4);
            border-radius: 14px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            animation: benefitFloat 4s ease-in-out infinite;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: scale(1.1);
            border-color: #FF5F15;
            box-shadow: 0 12px 32px rgba(255, 95, 21, 0.5);
        }

        /* Left Side Benefits */
        .benefit-left-1 {
            top: 15%;
            left: -20px;
            animation-delay: 0s;
        }

        .benefit-left-2 {
            top: 40%;
            left: -25px;
            animation-delay: 1.3s;
        }

        .benefit-left-3 {
            top: 65%;
            left: -20px;
            animation-delay: 2.6s;
        }

        /* Right Side Benefits */
        .benefit-right-1 {
            top: 15%;
            right: -20px;
            animation-delay: 0.65s;
        }

        .benefit-right-2 {
            top: 40%;
            right: -25px;
            animation-delay: 1.95s;
        }

        .benefit-right-3 {
            top: 65%;
            right: -20px;
            animation-delay: 3.25s;
        }

        @keyframes benefitFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 95, 21, 0.4);
        }

        .benefit-icon i {
            font-size: 18px;
            color: white;
        }

        .benefit-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .benefit-content h5 {
            font-size: 13px;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.2;
        }

        .benefit-content p {
            font-size: 11px;
            font-weight: 600;
            color: #FFA802;
            margin: 0;
            line-height: 1;
        }

        .benefit-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.2), rgba(255, 168, 2, 0.2));
            border-radius: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .benefit-card:hover .benefit-glow {
            opacity: 1;
        }

        /* Growth Stats Circles */
        .growth-stats {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
            z-index: 5;
        }

        .stat-circle {
            position: relative;
            width: 110px;
            height: 110px;
            background: rgba(13, 22, 62, 0.95);
            border: 3px solid rgba(255, 168, 2, 0.4);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: statPulse 3s ease-in-out infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .stat-1 {
            animation-delay: 0s;
        }

        .stat-2 {
            animation-delay: 1s;
        }

        .stat-3 {
            animation-delay: 2s;
        }

        @keyframes statPulse {

            0%,
            100% {
                transform: scale(1);
                border-color: rgba(255, 168, 2, 0.4);
            }

            50% {
                transform: scale(1.05);
                border-color: rgba(255, 168, 2, 0.8);
            }
        }

        .stat-circle:hover {
            transform: scale(1.15);
            border-color: #FF5F15;
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.5);
        }

        .stat-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon i {
            font-size: 16px;
            color: white;
        }

        .stat-number {
            font-size: 16px;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .stat-label {
            font-size: 10px;
            font-weight: 600;
            color: #FFA802;
            text-align: center;
            line-height: 1.2;
            max-width: 90px;
        }

        /* Network Connections SVG */
        .network-connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.6;
        }

        /* Success Particles */
        .success-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #FFA802;
            border-radius: 50%;
            box-shadow: 0 0 15px #FFA802;
            animation: particleRise 6s linear infinite;
        }

        .p1 {
            left: 10%;
            animation-delay: 0s;
        }

        .p2 {
            left: 25%;
            animation-delay: 0.8s;
        }

        .p3 {
            left: 40%;
            animation-delay: 1.6s;
        }

        .p4 {
            left: 55%;
            animation-delay: 2.4s;
        }

        .p5 {
            left: 70%;
            animation-delay: 3.2s;
        }

        .p6 {
            left: 85%;
            animation-delay: 4s;
        }

        .p7 {
            left: 33%;
            animation-delay: 4.8s;
        }

        .p8 {
            left: 67%;
            animation-delay: 5.6s;
        }

        @keyframes particleRise {
            0% {
                bottom: 0;
                opacity: 0;
                transform: translateX(0);
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                bottom: 100%;
                opacity: 0;
                transform: translateX(50px);
            }
        }

        /* Gradient Orbs */
        .gradient-orbs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: orbFloat 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #FF5F15, transparent);
            top: 10%;
            left: 0%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #FFA802, transparent);
            bottom: 10%;
            right: 0%;
            animation-delay: 2.6s;
        }

        .orb-3 {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, #FF5F15, transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 5.2s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0);
            }

            33% {
                transform: translate(30px, -30px);
            }

            66% {
                transform: translate(-30px, 30px);
            }
        }

        /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

        @media (max-width: 1200px) {
            .growth-ecosystem {
                width: 500px;
                height: 550px;
            }

            .partnership-tower {
                width: 260px;
                height: 500px;
            }

            .level-card {
                padding: 15px;
            }

            .level-icon {
                width: 50px;
                height: 50px;
            }

            .level-icon i {
                font-size: 24px;
            }

            .benefit-left-1,
            .benefit-left-2,
            .benefit-left-3 {
                left: -15px;
            }

            .benefit-right-1,
            .benefit-right-2,
            .benefit-right-3 {
                right: -15px;
            }

            .stat-circle {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 992px) {
            .growth-ecosystem {
                width: 450px;
                height: 500px;
            }

            .partnership-tower {
                width: 240px;
                height: 450px;
                gap: 12px;
            }

            .tower-base {
                height: 50px;
            }

            .base-text {
                font-size: 12px;
            }

            .level-card {
                padding: 12px;
            }

            .level-icon {
                width: 45px;
                height: 45px;
            }

            .level-icon i {
                font-size: 20px;
            }

            .level-info h4 {
                font-size: 14px;
            }

            .partner-count {
                font-size: 12px;
            }

            .level-badge {
                font-size: 10px;
                padding: 3px 8px;
            }

            .logo-container {
                width: 85px;
                height: 85px;
            }

            .logo-container img {
                width: 60px;
                height: 60px;
            }

            .benefit-card {
                padding: 10px 12px;
            }

            .benefit-icon {
                width: 35px;
                height: 35px;
            }

            .benefit-icon i {
                font-size: 16px;
            }

            .benefit-content h5 {
                font-size: 12px;
            }

            .benefit-content p {
                font-size: 10px;
            }

            .stat-circle {
                width: 90px;
                height: 90px;
                gap: 3px;
            }

            .stat-icon {
                width: 30px;
                height: 30px;
            }

            .stat-icon i {
                font-size: 14px;
            }

            .stat-number {
                font-size: 14px;
            }

            .stat-label {
                font-size: 9px;
            }

            .growth-stats {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-visual {
                height: 450px;
            }

            .growth-ecosystem {
                width: 400px;
                height: 450px;
            }

            .partnership-tower {
                width: 220px;
                height: 400px;
                gap: 10px;
            }

            .tower-base {
                height: 45px;
            }

            .base-text {
                font-size: 11px;
            }

            .level-card {
                padding: 10px;
                gap: 10px;
            }

            .level-icon {
                width: 40px;
                height: 40px;
            }

            .level-icon i {
                font-size: 18px;
            }

            .level-info h4 {
                font-size: 13px;
            }

            .partner-count {
                font-size: 11px;
            }

            .level-badge {
                font-size: 9px;
                padding: 2px 7px;
            }

            .growth-arrow {
                width: 25px;
                height: 25px;
            }

            .growth-arrow i {
                font-size: 12px;
            }

            .logo-container {
                width: 75px;
                height: 75px;
            }

            .logo-container img {
                width: 50px;
                height: 50px;
            }

            .benefit-card {
                padding: 8px 10px;
                gap: 8px;
            }

            .benefit-left-1,
            .benefit-left-2,
            .benefit-left-3 {
                left: -10px;
            }

            .benefit-right-1,
            .benefit-right-2,
            .benefit-right-3 {
                right: -10px;
            }

            .benefit-icon {
                width: 32px;
                height: 32px;
            }

            .benefit-icon i {
                font-size: 14px;
            }

            .benefit-content h5 {
                font-size: 11px;
            }

            .benefit-content p {
                font-size: 9px;
            }

            .stat-circle {
                width: 80px;
                height: 80px;
            }

            .stat-icon {
                width: 28px;
                height: 28px;
            }

            .stat-icon i {
                font-size: 12px;
            }

            .stat-number {
                font-size: 13px;
            }

            .stat-label {
                font-size: 8px;
            }

            .growth-stats {
                gap: 15px;
                bottom: -15px;
            }
        }

        @media (max-width: 576px) {
            .hero-visual {
                height: 400px;
            }

            .growth-ecosystem {
                width: 320px;
                height: 400px;
            }

            .partnership-tower {
                width: 200px;
                height: 350px;
                gap: 8px;
                padding-bottom: 15px;
            }

            .tower-base {
                height: 40px;
            }

            .base-text {
                font-size: 10px;
            }

            .level-card {
                padding: 8px;
                gap: 8px;
            }

            .level-icon {
                width: 36px;
                height: 36px;
                border-radius: 10px;
            }

            .level-icon i {
                font-size: 16px;
            }

            .level-info h4 {
                font-size: 12px;
            }

            .partner-count {
                font-size: 10px;
            }

            .partner-count::before {
                width: 5px;
                height: 5px;
            }

            .level-badge {
                font-size: 8px;
                padding: 2px 6px;
                top: 8px;
                right: 8px;
            }

            .growth-arrow {
                width: 22px;
                height: 22px;
                bottom: -18px;
            }

            .growth-arrow i {
                font-size: 10px;
            }

            .logo-container {
                width: 65px;
                height: 65px;
            }

            .logo-container img {
                width: 42px;
                height: 42px;
            }

            .logo-ring {
                top: -8px;
                left: -8px;
                right: -8px;
                bottom: -8px;
                border-width: 2px;
            }

            .logo-pulse {
                border-width: 2px;
            }

            .benefit-card {
                padding: 7px 9px;
                gap: 7px;
            }

            .benefit-left-1 {
                top: 12%;
                left: -8px;
            }

            .benefit-left-2 {
                top: 40%;
                left: -8px;
            }

            .benefit-left-3 {
                top: 68%;
                left: -8px;
            }

            .benefit-right-1 {
                top: 12%;
                right: -8px;
            }

            .benefit-right-2 {
                top: 40%;
                right: -8px;
            }

            .benefit-right-3 {
                top: 68%;
                right: -8px;
            }

            .benefit-icon {
                width: 30px;
                height: 30px;
                border-radius: 8px;
            }

            .benefit-icon i {
                font-size: 13px;
            }

            .benefit-content h5 {
                font-size: 10px;
            }

            .benefit-content p {
                font-size: 8px;
            }

            .stat-circle {
                width: 70px;
                height: 70px;
                border-width: 2px;
            }

            .stat-icon {
                width: 24px;
                height: 24px;
            }

            .stat-icon i {
                font-size: 11px;
            }

            .stat-number {
                font-size: 12px;
            }

            .stat-label {
                font-size: 7px;
                max-width: 65px;
            }

            .growth-stats {
                gap: 10px;
                bottom: -10px;
            }

            .particle {
                width: 5px;
                height: 5px;
            }

            .orb-1,
            .orb-2,
            .orb-3 {
                filter: blur(40px);
            }
        }

        @media (max-width: 480px) {
            .hero-visual {
                height: 380px;
            }

            .growth-ecosystem {
                width: 280px;
                height: 380px;
            }

            .partnership-tower {
                width: 180px;
                height: 320px;
                gap: 7px;
            }

            .tower-base {
                height: 38px;
                border-radius: 12px;
            }

            .base-text {
                font-size: 9px;
            }

            .level-card {
                padding: 7px;
                gap: 7px;
                border-radius: 12px;
            }

            .level-icon {
                width: 32px;
                height: 32px;
                border-radius: 8px;
            }

            .level-icon i {
                font-size: 14px;
            }

            .level-info h4 {
                font-size: 11px;
            }

            .partner-count {
                font-size: 9px;
            }

            .level-badge {
                font-size: 7px;
                padding: 2px 5px;
            }

            .growth-arrow {
                width: 20px;
                height: 20px;
                bottom: -16px;
            }

            .growth-arrow i {
                font-size: 9px;
            }

            .logo-container {
                width: 55px;
                height: 55px;
            }

            .logo-container img {
                width: 36px;
                height: 36px;
            }

            .benefit-card {
                padding: 6px 8px;
                gap: 6px;
                border-radius: 10px;
            }

            .benefit-left-1 {
                top: 10%;
                left: -5px;
            }

            .benefit-left-2 {
                top: 40%;
                left: -5px;
            }

            .benefit-left-3 {
                top: 70%;
                left: -5px;
            }

            .benefit-right-1 {
                top: 10%;
                right: -5px;
            }

            .benefit-right-2 {
                top: 40%;
                right: -5px;
            }

            .benefit-right-3 {
                top: 70%;
                right: -5px;
            }

            .benefit-icon {
                width: 28px;
                height: 28px;
            }

            .benefit-icon i {
                font-size: 12px;
            }

            .benefit-content h5 {
                font-size: 9px;
            }

            .benefit-content p {
                font-size: 7px;
            }

            .stat-circle {
                width: 65px;
                height: 65px;
            }

            .stat-icon {
                width: 22px;
                height: 22px;
            }

            .stat-icon i {
                font-size: 10px;
            }

            .stat-number {
                font-size: 11px;
            }

            .stat-label {
                font-size: 7px;
                max-width: 60px;
            }

            .growth-stats {
                gap: 8px;
                bottom: -8px;
            }
        }

        @media (max-width: 375px) {
            .growth-ecosystem {
                width: 260px;
                height: 360px;
            }

            .partnership-tower {
                width: 170px;
                height: 300px;
            }

            .level-card {
                padding: 6px;
            }

            .level-icon {
                width: 30px;
                height: 30px;
            }

            .level-icon i {
                font-size: 13px;
            }

            .level-info h4 {
                font-size: 10px;
            }

            .logo-container {
                width: 50px;
                height: 50px;
            }

            .logo-container img {
                width: 32px;
                height: 32px;
            }

            .stat-circle {
                width: 60px;
                height: 60px;
            }

            .stat-number {
                font-size: 10px;
            }

            .stat-label {
                font-size: 6px;
            }
        }

        /* Performance Optimization */
        @media (prefers-reduced-motion: reduce) {

            .level-card,
            .benefit-card,
            .stat-circle,
            .logo-container,
            .particle,
            .orb,
            .growth-arrow,
            .base-glow,
            .level-card::before,
            .icon-shines,
            .logo-ring,
            .logo-pulse,
            .success-glow {
                animation: none !important;
                transition: none !important;
            }
        }

        /* Print Styles */
        @media print {

            .success-particles,
            .gradient-orbs,
            .network-connections,
            .benefit-glow,
            .logo-ring,
            .logo-pulse,
            .success-glow,
            .growth-arrow {
                display: none !important;
            }
        }








        /* ============================================
   CLEAN PROFESSIONAL PARTNERSHIP VISUAL
   ============================================ */

        .partnership-professional-visual {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 550px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        /* Background Elements */
        .visual-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 168, 2, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 168, 2, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.6;
        }

        .bg-gradient {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
        }

        .bg-grad-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #FF5F15, transparent);
            top: -20%;
            left: -10%;
        }

        .bg-grad-2 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, #FFA802, transparent);
            bottom: -20%;
            right: -10%;
        }

        /* Hierarchy Structure */
        .hierarchy-structure {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0;
            z-index: 5;
            flex: 1;
        }

        .tier-level {
            position: relative;
            width: 100%;
        }

        .tier-card {
            position: relative;
            background: rgba(13, 22, 62, 0.95);
            border: 1px solid rgba(255, 168, 2, 0.2);
            border-radius: 16px;
            padding: 20px;
            backdrop-filter: blur(20px);
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .tier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, #FF5F15, #FFA802);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tier-card:hover {
            transform: translateX(5px);
            border-color: rgba(255, 168, 2, 0.5);
            box-shadow:
                0 8px 30px rgba(255, 95, 21, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .tier-card:hover::before {
            opacity: 1;
        }

        .tier-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .tier-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255, 95, 21, 0.3);
        }

        .tier-icon i {
            font-size: 22px;
            color: white;
        }

        .tier-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .tier-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.2;
        }

        .tier-label {
            font-size: 17px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1;
        }

        .tier-stats {
            display: flex;
            gap: 20px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        .stat-item i {
            font-size: 14px;
            color: #FFA802;
        }

        .tier-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-gold {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
        }

        .badge-silver {
            background: linear-gradient(135deg, #C0C0C0, #808080);
            color: #000;
            box-shadow: 0 2px 10px rgba(192, 192, 192, 0.4);
        }

        .badge-bronze {
            background: linear-gradient(135deg, #CD7F32, #8B4513);
            color: white;
            box-shadow: 0 2px 10px rgba(205, 127, 50, 0.4);
        }

        .badge-starter {
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            color: white;
            box-shadow: 0 2px 10px rgba(255, 95, 21, 0.4);
        }

        .tier-connector {
            width: 2px;
            height: 20px;
            background: linear-gradient(to bottom, rgba(255, 168, 2, 0.5), rgba(255, 168, 2, 0.1));
            margin: 0 auto;
        }

        /* Benefits Panel */
        .benefits-panel {
            position: relative;
            flex: 0 0 220px;
            z-index: 5;
        }

        .benefits-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .benefit-item {
            background: rgba(13, 22, 62, 0.95);
            border: 1px solid rgba(255, 168, 2, 0.15);
            border-radius: 12px;
            padding: 15px;
            backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateX(-5px);
            border-color: rgba(255, 168, 2, 0.4);
            box-shadow: 0 6px 25px rgba(255, 95, 21, 0.3);
        }

        .benefit-icon-box {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.2), rgba(255, 168, 2, 0.2));
            border: 1px solid rgba(255, 168, 2, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon-box i {
            font-size: 18px;
            color: #FFA802;
        }

        .benefit-content {
            flex: 1;
        }

        .benefit-content h5 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin: 0 0 3px 0;
            line-height: 1.2;
        }

        .benefit-content p {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            line-height: 1;
        }

        /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

        @media (max-width: 1200px) {
            .visual-wrapper {
                max-width: 500px;
                gap: 35px;
            }

            .benefits-panel {
                flex: 0 0 200px;
            }
        }

        @media (max-width: 992px) {
            .visual-wrapper {
                max-width: 450px;
                gap: 30px;
            }

            .tier-card {
                padding: 18px;
            }

            .tier-icon {
                width: 45px;
                height: 45px;
            }

            .tier-icon i {
                font-size: 20px;
            }

            .tier-info h4 {
                font-size: 15px;
            }

            .tier-label {
                font-size: 11px;
            }

            .stat-item {
                font-size: 12px;
            }

            .tier-badge {
                font-size: 10px;
                padding: 4px 10px;
            }

            .benefits-panel {
                flex: 0 0 180px;
            }

            .benefit-item {
                padding: 12px;
            }

            .benefit-icon-box {
                width: 36px;
                height: 36px;
            }

            .benefit-icon-box i {
                font-size: 16px;
            }

            .benefit-content h5 {
                font-size: 12px;
            }

            .benefit-content p {
                font-size: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero-visual {
                height: auto;
                min-height: 500px;
            }

            .visual-wrapper {
                flex-direction: column;
                max-width: 100%;
                gap: 30px;
                padding: 20px;
            }

            .hierarchy-structure {
                width: 100%;
                max-width: 400px;
            }

            .tier-card {
                padding: 16px;
            }

            .tier-icon {
                width: 42px;
                height: 42px;
            }

            .tier-icon i {
                font-size: 19px;
            }

            .tier-info h4 {
                font-size: 14px;
            }

            .tier-label {
                font-size: 10px;
            }

            .tier-stats {
                gap: 15px;
                padding-top: 10px;
            }

            .stat-item {
                font-size: 11px;
            }

            .stat-item i {
                font-size: 12px;
            }

            .tier-badge {
                font-size: 9px;
                padding: 4px 9px;
                top: 16px;
                right: 16px;
            }

            .tier-connector {
                height: 15px;
            }

            .benefits-panel {
                width: 100%;
                max-width: 400px;
                flex: none;
            }

            .benefits-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .benefit-item {
                padding: 12px;
            }

            .benefit-item:hover {
                transform: translateY(-3px);
            }
        }

        @media (max-width: 576px) {
            .visual-wrapper {
                padding: 15px;
                gap: 25px;
            }

            .hierarchy-structure {
                max-width: 100%;
            }

            .tier-card {
                padding: 14px;
                border-radius: 12px;
            }

            .tier-header {
                gap: 12px;
                margin-bottom: 12px;
            }

            .tier-icon {
                width: 38px;
                height: 38px;
                border-radius: 10px;
            }

            .tier-icon i {
                font-size: 17px;
            }

            .tier-info h4 {
                font-size: 13px;
            }

            .tier-label {
                font-size: 10px;
            }

            .tier-stats {
                flex-direction: column;
                gap: 8px;
                padding-top: 8px;
            }

            .stat-item {
                font-size: 11px;
            }

            .tier-badge {
                font-size: 8px;
                padding: 3px 8px;
                top: 14px;
                right: 14px;
            }

            .tier-connector {
                height: 12px;
            }

            .benefits-panel {
                max-width: 100%;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .benefit-item {
                padding: 10px;
                gap: 10px;
            }

            .benefit-icon-box {
                width: 34px;
                height: 34px;
                border-radius: 8px;
            }

            .benefit-icon-box i {
                font-size: 15px;
            }

            .benefit-content h5 {
                font-size: 11px;
            }

            .benefit-content p {
                font-size: 9px;
            }
        }

        @media (max-width: 480px) {
            .tier-card {
                padding: 12px;
            }

            .tier-icon {
                width: 35px;
                height: 35px;
            }

            .tier-icon i {
                font-size: 16px;
            }

            .tier-info h4 {
                font-size: 12px;
            }

            .stat-item {
                font-size: 10px;
            }

            .benefit-item {
                padding: 9px;
            }

            .benefit-icon-box {
                width: 32px;
                height: 32px;
            }

            .benefit-icon-box i {
                font-size: 14px;
            }

            .benefit-content h5 {
                font-size: 10px;
            }
        }

        @media (max-width: 375px) {
            .tier-header {
                gap: 10px;
            }

            .tier-icon {
                width: 32px;
                height: 32px;
            }

            .tier-icon i {
                font-size: 15px;
            }

            .tier-info h4 {
                font-size: 11px;
            }

            .tier-badge {
                font-size: 7px;
                padding: 2px 6px;
            }
        }

        /* Performance Optimization */
        @media (prefers-reduced-motion: reduce) {

            .tier-card,
            .benefit-item,
            .tier-card::before {
                transition: none !important;
            }

            .tier-card:hover,
            .benefit-item:hover {
                transform: none !important;
            }
        }

        /* Print Styles */
        @media print {
            .visual-bg {
                display: none !important;
            }

            .tier-card,
            .benefit-item {
                box-shadow: none !important;
                border: 1px solid #000 !important;
            }
        }

        /* High Contrast Mode */
        @media (prefers-contrast: high) {

            .tier-card,
            .benefit-item {
                border-width: 2px;
            }
        }

        /* Premium Model Card Container */
.model-card-premium {
    /* background: linear-gradient(135deg, rgba(13, 22, 62, 0.5) 0%, rgba(26, 31, 58, 0.7) 100%); */
    border-radius: 30px;
    overflow: hidden;
    /* box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 95, 21, 0.2); */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.model-card-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.model-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 90px rgba(255, 95, 21, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.model-card-premium:hover::before {
    opacity: 0.5;
}

/* Content Side Styling */
.content-side {
    position: relative;
    padding: 60px 50px;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.03) 0%, rgba(255, 168, 2, 0.02) 100%);
    border-right: 1px solid rgba(255, 95, 21, 0.15);
    overflow: hidden;
}

.content-border-effect {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #FF5F15, #FFA802);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card-premium:hover .content-border-effect {
    height: 100%;
}

/* Image Side Styling */
.image-side {
    position: relative;
    padding: 40px;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 22, 62, 0.3);
    overflow: hidden;
}

.image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Frame Corners Effect */
.image-frame-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #FFA802;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 20px 0 0;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 20px;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

.model-card-premium:hover .corner-tl {
    top: -10px;
    left: -10px;
}

.model-card-premium:hover .corner-tr {
    top: -10px;
    right: -10px;
}

.model-card-premium:hover .corner-bl {
    bottom: -10px;
    left: -10px;
}

.model-card-premium:hover .corner-br {
    bottom: -10px;
    right: -10px;
}

/* Image Container */
.image-container-premium {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.image-container-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card-premium:hover .image-container-premium img {
    transform: scale(1.15);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 95, 21, 0.2) 0%,
        rgba(255, 168, 2, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.model-card-premium:hover .image-overlay-gradient {
    opacity: 1;
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 3;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.model-card-premium:hover .stats-badge {
    transform: translateY(0);
    opacity: 1;
}

.stat-item-badge {
    flex: 1;
    background: rgba(13, 22, 62, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 168, 2, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.stat-item-badge:hover {
    transform: translateY(-5px);
    border-color: #FFA802;
    box-shadow: 0 15px 40px rgba(255, 168, 2, 0.4);
}

.stat-item-badge i {
    font-size: 20px;
    color: #FFA802;
    min-width: 20px;
}

.stat-item-badge span {
    font-size: 13px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.15), transparent);
    filter: blur(40px);
    pointer-events: none;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 168, 2, 0.15), transparent);
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .content-side {
        min-height: auto;
        padding: 50px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 95, 21, 0.15);
    }

    .image-side {
        min-height: 500px;
        padding: 30px;
    }

    .image-wrapper-premium {
        min-height: 450px;
    }

    .stats-badge {
        transform: translateY(0);
        opacity: 1;
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .content-side {
        padding: 40px 30px;
    }

    .image-side {
        min-height: 400px;
        padding: 20px;
    }

    .image-wrapper-premium {
        min-height: 380px;
    }

    .frame-corner {
        width: 50px;
        height: 50px;
    }

    .stats-badge {
        flex-direction: column;
        gap: 10px;
    }

    .stat-item-badge {
        padding: 12px 18px;
    }

    .stat-item-badge i {
        font-size: 18px;
    }

    .stat-item-badge span {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .content-side {
        padding: 30px 20px;
    }

    .image-side {
        min-height: 350px;
        padding: 15px;
    }

    .image-wrapper-premium {
        min-height: 320px;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .stat-item-badge {
        padding: 10px 15px;
        gap: 10px;
    }

    .stat-item-badge i {
        font-size: 16px;
    }

    .stat-item-badge span {
        font-size: 11px;
    }

    .floating-shape {
        width: 150px !important;
        height: 150px !important;
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    .content-side {
        padding: 25px 18px;
    }

    .image-side {
        min-height: 320px;
    }

    .image-wrapper-premium {
        min-height: 300px;
    }

    .frame-corner {
        width: 35px;
        height: 35px;
    }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .model-card-premium,
    .image-container-premium img,
    .stats-badge,
    .frame-corner,
    .floating-shape,
    .content-border-effect {
        animation: none !important;
        transition: none !important;
    }

    .model-card-premium:hover {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .floating-shape,
    .content-border-effect,
    .image-overlay-gradient {
        display: none !important;
    }

    .stats-badge {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}
