:root {
            --primary-blue: #0E132D;
            --gold: #D8A13F;
            --light-yellow: #F3E8BE;
            --dark-gray: #3D3D3D;
            --primary-color: #0E132D;
            --secondary-color: #3b82f6;
            --accent-color:  #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --success-color: #10b981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        
        /* Sticky CTA Button */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            animation: pulse 2s infinite;
        }
        
        .sticky-cta .btn {
            background: linear-gradient(135deg, var(--gold) 0%, #C89335 100%);
            color: #fff;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(216, 161, 63, 0.4);
            transition: all 0.3s ease;
        }
        
        .sticky-cta .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(216, 161, 63, 0.6);
        }


        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .header .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .update-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        /* Navigation Sidebar */
        .sidebar {
            position: sticky;
            top: 20px;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }

        .sidebar h5 {
            color: var(--primary-color); 
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .sidebar .side-link {
            color: var(--text-dark); 
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }

        .sidebar .side-link:hover  {
            background: var(--bg-light);  
            color: var(--accent-color); 
            transform: translateX(5px);
        }

        .sidebar .side-link.active {
            background: var(--accent-color);
            color: white; 
        }

        .sidebar .side-link i {
            margin-right: 10px;
            width: 20px;
        }

        /* Content Sections */
        .content-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }

        .content-section h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .content-section h2 .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            border-radius: 10px;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .content-section p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .content-section ul {
            list-style: none;
            padding-left: 0;
        }

        .content-section ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-light);
        }

        .content-section ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

        .highlight-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .highlight-box h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .warning-box {
            background: #fee2e2;
            border-left: 4px solid #ef4444;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .warning-box h5 {
            color: #dc2626;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .info-box {
            background: #dbeafe;
            border-left: 4px solid #3b82f6;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .info-box h5 {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-top: 60px;
        }

        .contact-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-contact {
            background: var(--secondary-color);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            border: none;
        }

        .btn-contact:hover {
            background: #d97706;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

       

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }

        .scroll-top:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .scroll-top.show {
            display: flex;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Navbar */
        .navbar {
            background: rgba(14, 19, 45, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold) !important;
            letter-spacing: -1px;
        }
        
        .nav-link {
            color: #fff;
            font-weight: 600;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .side-link {
            text-decoration: none;
            font-weight: 600;
            margin: 0 15px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--gold) !important;
        }

        .side-link:hover {
            color: var(--gold) !important;
        }
        
        .btn-nav {
            background: var(--gold);
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .btn-nav:hover {
            background: #C89335;
            transform: translateY(-2px);
        }
        
        /* Hero Section - Above the Fold */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2049 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23D8A13F" opacity="0.1"/></svg>');
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            from { transform: translateY(0); }
            to { transform: translateY(-100px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 25px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero .highlight {
            color: var(--gold);
            position: relative;
        }
        
        .hero .sub-headline {
            font-size: 1.5rem;
            color: var(--light-yellow);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .hero .pain-copy {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--gold) 0%, #C89335 100%);
            color: #fff;
            padding: 20px 45px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            border: none;
            box-shadow: 0 10px 40px rgba(216, 161, 63, 0.4);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .btn-hero-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn-hero-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(216, 161, 63, 0.6);
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: #fff;
            padding: 20px 45px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            border: 3px solid var(--gold);
            transition: all 0.3s;
        }
        
        .btn-hero-secondary:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-5px);
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            animation: float-image 6s ease-in-out infinite;
        }
        
        @keyframes float-image {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* Urgency Banner */
        .urgency-banner {
            background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
            color: #fff;
            padding: 15px 0;
            text-align: center;
            font-weight: 700;
            animation: slideDown 0.5s ease-out;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        .countdown {
            display: inline-flex;
            gap: 15px;
            margin-left: 15px;
        }
        
        .countdown-item {
            background: rgba(255,255,255,0.2);
            padding: 8px 15px;
            border-radius: 8px;
            min-width: 60px;
        }
        
        .countdown-number {
            font-size: 1.5rem;
            font-weight: 900;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--light-yellow);
            padding: 80px 0;
            position: relative;
        }
        
        .stat-card {
            text-align: center;
            padding: 30px;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        /* Pain Points Section */
        .pain-section {
            background: #fff;
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .section-title .accent {
            color: var(--gold);
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .pain-card {
            background: #fff;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #ff4b2b;
            transform: scaleY(0);
            transition: transform 0.4s;
        }
        
        .pain-card:hover::before {
            transform: scaleY(1);
        }
        
        .pain-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .pain-icon {
            font-size: 3rem;
            color: #ff4b2b;
            margin-bottom: 20px;
        }
        
        .pain-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        /* Transformation Section */
        .transformation-section {
            background: var(--primary-blue);
            padding: 100px 0;
            position: relative;
        }
        
        .transformation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom right, #fff 50%, transparent 50%);
        }
        
        .transformation-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(216, 161, 63, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.4s;
        }
        
        .transformation-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--gold);
            transform: translateY(-10px);
        }
        
        .transformation-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .transformation-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .transformation-card p {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Role-Based Benefits */
        .role-section {
            background: #f8f9fa;
            padding: 100px 0;
        }
        
        .role-card {
            background: #fff;
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s;
            border-top: 5px solid var(--gold);
        }
        
        .role-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(216, 161, 63, 0.2);
        }
        
        .role-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold) 0%, #C89335 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 25px;
        }
        
        .role-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .benefit-list {
            list-style: none;
            padding: 0;
        }
        
        .benefit-list li {
            padding: 12px 0;
            font-size: 1.1rem;
            color: var(--dark-gray);
            position: relative;
            padding-left: 35px;
        }
        
        .benefit-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 900;
            font-size: 1.3rem;
        }
        
        /* Social Proof */
        .social-proof {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2049 100%);
            padding: 100px 0;
            color: #fff;
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(216, 161, 63, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.4s;
            height: 100%;
        }
        
        .testimonial-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: rgba(255,255,255,0.9);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid var(--gold);
        }
        
        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .author-title {
            color: var(--light-yellow);
            font-size: 0.95rem;
        }
        
        .stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-top: 10px;
        }
        
        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--gold) 0%, #C89335 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .final-cta h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .final-cta p {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .btn-final-cta {
            background: var(--primary-blue);
            color: #fff;
            padding: 25px 60px;
            border-radius: 50px;
            font-size: 1.5rem;
            font-weight: 700;
            border: none;
            box-shadow: 0 15px 50px rgba(14, 19, 45, 0.4);
            transition: all 0.4s;
            position: relative;
            z-index: 2;
        }
        
        .btn-final-cta:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 60px rgba(14, 19, 45, 0.6);
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        
        .badge {
            background: rgba(255,255,255,0.2);
            padding: 15px 30px;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: var(--primary-blue);
            color: rgba(255,255,255,0.8);
            padding: 60px 0 30px;
        }
        
        footer h5 {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: var(--gold);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .sidebar {
                position: relative;
                margin-bottom: 30px;
            }

            .content-section {
                padding: 25px;
            }

            .hero .sub-headline { font-size: 1.2rem; }
            .section-title h2 { font-size: 2rem; }
            .btn-hero-primary, .btn-hero-secondary { padding: 15px 30px; font-size: 1.1rem; }
            .sticky-cta { bottom: 10px; right: 10px; }
            .sticky-cta .btn { padding: 12px 20px; font-size: 0.9rem; }
        }