        :root {
            --red: #E31837;
            --red-dark: #B01030;
            --red-glow: rgba(227, 24, 55, 0.4);
            --black: #050505;
            --dark: #0D0D0D;
            --gray-dark: #161616;
            --white: #FFFFFF;
            --gray-light: #F7F7F8;
            --gray: #8A8A8E;
            --green: #00C853;
            --green-glow: rgba(0, 200, 83, 0.3);
            --gold: #FFB800;
            --gold-glow: rgba(255, 184, 0, 0.3);
            --blue: #007AFF;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Outfit', sans-serif; background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; }
        
        .orb { position: fixed; border-radius: 50%; filter: blur(100px); opacity: 0.35; pointer-events: none; z-index: 0; }
        .orb-1 { width: 500px; height: 500px; background: var(--red); top: -150px; left: -150px; animation: float 25s ease-in-out infinite; }
        .orb-2 { width: 350px; height: 350px; background: var(--gold); bottom: -80px; right: -80px; animation: float 20s ease-in-out infinite reverse; }
        @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -40px) scale(1.1); } }

        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
        .nav.scrolled { padding: 10px 50px; background: rgba(5, 5, 5, 0.98); }
        .nav-logo { display: flex; align-items: center; gap: 15px; }
        .nav-logo img { height: 90px; filter: drop-shadow(0 0 20px var(--red-glow)); transition: transform 0.3s; }
        .nav-logo img:hover { transform: scale(1.05); }
        .nav-logo-text { font-size: 18px; font-weight: 700; }
        .nav-logo-text span { color: var(--red); }
        .nav-links { display: flex; gap: 35px; }
        .nav-links a { color: var(--gray); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: var(--white); }
        .nav-actions { display: flex; align-items: center; gap: 15px; }
        .lang-switch { display: flex; background: rgba(255,255,255,0.05); border-radius: 100px; padding: 3px; }
        .lang-btn { padding: 8px 16px; border: none; background: transparent; color: var(--gray); font-weight: 600; cursor: pointer; border-radius: 100px; transition: all 0.3s; font-size: 12px; }
        .lang-btn.active { background: var(--red); color: var(--white); }
        .nav-login { padding: 12px 26px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .nav-login:hover { background: var(--white); color: var(--black); }

        .floating-cta { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); z-index: 999; opacity: 0; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none; }
        .floating-cta.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all; }
        .floating-cta-btn { display: flex; align-items: center; gap: 12px; padding: 20px 40px; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); border: none; border-radius: 100px; font-size: 16px; font-weight: 700; cursor: pointer; box-shadow: 0 10px 40px var(--red-glow); animation: pulse 2.5s ease-in-out infinite; text-transform: uppercase; letter-spacing: 1px; }
        @keyframes pulse { 0%, 100% { box-shadow: 0 10px 40px var(--red-glow); } 50% { box-shadow: 0 15px 60px rgba(227, 24, 55, 0.6), 0 0 40px var(--red-glow); } }
        .floating-cta-btn:hover { transform: scale(1.05); }
        .floating-cta-sub { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 6px; }

        .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 140px 30px 100px; position: relative; }
        .hero-content { position: relative; z-index: 2; max-width: 1000px; }
        
        .hero-logo { margin-bottom: 30px; animation: fadeUp 0.8s ease forwards; opacity: 0; }
        .hero-logo img { height: 180px; filter: drop-shadow(0 0 40px var(--red-glow)); transition: transform 0.4s; }
        .hero-logo img:hover { transform: scale(1.05); }
        
        .hero-badge { display: inline-block; padding: 10px 24px; background: rgba(255, 184, 0, 0.12); border: 1px solid rgba(255, 184, 0, 0.25); border-radius: 100px; font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; animation: fadeUp 0.8s ease 0.1s forwards; opacity: 0; }
        
        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        
        .hero h1 { font-size: clamp(44px, 8vw, 88px); font-weight: 900; letter-spacing: -3px; line-height: 0.95; margin-bottom: 20px; animation: fadeUp 0.8s ease 0.2s forwards; opacity: 0; }
        .hero h1 .hl { background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        
        .hero-slogan { font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; margin-bottom: 30px; animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0; color: var(--gold); }
        
        .hero-tagline { font-size: 19px; color: var(--gray); max-width: 700px; margin: 0 auto 45px; animation: fadeUp 0.8s ease 0.4s forwards; opacity: 0; line-height: 1.8; }
        .hero-tagline strong { color: var(--gold); }
        .hero-tagline em { color: var(--green); font-style: normal; font-weight: 600; }
        
        .hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 25px; animation: fadeUp 0.8s ease 0.5s forwards; opacity: 0; }
        .hero-cta { display: inline-flex; align-items: center; gap: 14px; padding: 24px 55px; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); border-radius: 100px; font-size: 18px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 15px 50px var(--red-glow); }
        .hero-cta:hover { transform: scale(1.08) translateY(-5px); }
        .hero-cta i { font-size: 20px; }
        
        .hero-benefits { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .hero-benefit { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray); font-weight: 500; }
        .hero-benefit i { color: var(--green); font-size: 16px; }
        
        .hero-stats { display: flex; justify-content: center; gap: 70px; margin-top: 80px; animation: fadeUp 0.8s ease 0.6s forwards; opacity: 0; }
        .hero-stat { text-align: center; }
        .hero-stat-value { font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
        .hero-stat-value.gold { color: var(--gold); text-shadow: 0 0 30px var(--gold-glow); }
        .hero-stat-value.green { color: var(--green); text-shadow: 0 0 30px var(--green-glow); }
        .hero-stat-value.red { color: var(--red); text-shadow: 0 0 30px var(--red-glow); }
        .hero-stat-label { font-size: 13px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
        .usd-amount { display: block; margin-top: 6px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 0.3px; }
        .sim-card .usd-amount { color: #6b7280; }

        .urgency { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); padding: 22px 30px; text-align: center; position: relative; overflow: hidden; }
        .urgency::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); animation: shine 3s infinite; }
        @keyframes shine { 0% { left: -100%; } 50%, 100% { left: 100%; } }
        .urgency h3 { font-size: 17px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; position: relative; z-index: 1; }

        .section { padding: 110px 30px; position: relative; z-index: 1; }
        .section-inner { max-width: 1150px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; padding: 8px 20px; background: rgba(227, 24, 55, 0.1); border-radius: 100px; }
        .section-title { font-size: clamp(34px, 4.5vw, 54px); font-weight: 900; letter-spacing: -2px; line-height: 1.1; margin-bottom: 22px; }
        .section-subtitle { font-size: 17px; color: var(--gray); max-width: 620px; margin: 0 auto; line-height: 1.8; }

        .why-section { background: var(--black); }
        .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .why-card { background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%); border: 1px solid rgba(255,255,255,0.06); border-radius: 26px; padding: 45px 32px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden; }
        .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%); transform: scaleX(0); transition: transform 0.4s; }
        .why-card:hover { transform: translateY(-12px); border-color: rgba(227, 24, 55, 0.3); }
        .why-card:hover::before { transform: scaleX(1); }
        .why-icon { width: 80px; height: 80px; margin: 0 auto 25px; display: flex; align-items: center; justify-content: center; font-size: 36px; border-radius: 24px; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); box-shadow: 0 12px 35px var(--red-glow); }
        .why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, var(--gold) 0%, #E5A500 100%); box-shadow: 0 12px 35px var(--gold-glow); }
        .why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, var(--green) 0%, #00A844 100%); box-shadow: 0 12px 35px var(--green-glow); }
        .why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, var(--blue) 0%, #0062CC 100%); box-shadow: 0 12px 35px rgba(0, 122, 255, 0.3); }
        .why-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
        .why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
        .why-card .stat { font-size: 26px; font-weight: 900; color: var(--gold); margin-top: 15px; }

        .roles-section { background: var(--gray-light); color: var(--black); }
        .roles-section .section-title { color: var(--black); }
        .roles-section .section-subtitle { color: #666; }
        .roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .role-card { background: var(--white); border-radius: 30px; padding: 50px 38px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.08); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
        .role-card:hover { transform: translateY(-18px) scale(1.02); box-shadow: 0 40px 80px rgba(0,0,0,0.15); }
        .role-tier { position: absolute; top: 0; left: 0; right: 0; height: 6px; }
        .role-card:nth-child(1) .role-tier { background: linear-gradient(90deg, var(--gold) 0%, #FFA000 100%); }
        .role-card:nth-child(2) .role-tier { background: linear-gradient(90deg, var(--blue) 0%, #0056B3 100%); }
        .role-card:nth-child(3) .role-tier { background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%); }
        .role-badge-corner { position: absolute; top: 20px; right: 20px; padding: 6px 14px; border-radius: 100px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .role-card:nth-child(1) .role-badge-corner { background: rgba(255, 184, 0, 0.15); color: #E5A500; }
        .role-card:nth-child(2) .role-badge-corner { background: rgba(0, 122, 255, 0.15); color: var(--blue); }
        .role-card:nth-child(3) .role-badge-corner { background: rgba(227, 24, 55, 0.15); color: var(--red); }
        .role-icon { width: 105px; height: 105px; margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; font-size: 50px; border-radius: 30px; }
        .role-card:nth-child(1) .role-icon { background: rgba(255, 184, 0, 0.12); color: #E5A500; }
        .role-card:nth-child(2) .role-icon { background: rgba(0, 122, 255, 0.12); color: var(--blue); }
        .role-card:nth-child(3) .role-icon { background: rgba(227, 24, 55, 0.12); color: var(--red); }
        .role-title { font-size: 26px; font-weight: 900; margin-bottom: 14px; color: var(--black); }
        .role-earnings { font-size: 34px; font-weight: 900; color: var(--red); margin-bottom: 10px; }
        .role-frequency { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 28px; padding: 10px 20px; background: rgba(0, 200, 83, 0.1); border-radius: 100px; }
        .role-features { list-style: none; text-align: left; }
        .role-features li { padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: #555; line-height: 1.5; }
        .role-features li:last-child { border-bottom: none; }
        .role-features li i { color: var(--green); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
        .role-badge { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: linear-gradient(135deg, var(--green) 0%, #00A844 100%); color: var(--white); border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 25px; box-shadow: 0 10px 30px var(--green-glow); }

        .pricing-section { background: linear-gradient(180deg, var(--gray-dark) 0%, var(--black) 100%); }
        .pricing-notice { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 24px 40px; background: linear-gradient(135deg, var(--green) 0%, #00A844 100%); border-radius: 20px; margin-bottom: 60px; font-size: 16px; font-weight: 700; box-shadow: 0 15px 40px var(--green-glow); }
        .pricing-notice i { font-size: 26px; }
        .pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
        .pricing-card { background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 26px; padding: 38px 24px; text-align: center; transition: all 0.4s; position: relative; }
        .pricing-card:hover { transform: translateY(-12px); border-color: rgba(227, 24, 55, 0.4); }
        .pricing-card.featured { background: linear-gradient(180deg, rgba(227, 24, 55, 0.15) 0%, rgba(176, 16, 48, 0.08) 100%); border-color: var(--red); transform: scale(1.05); }
        .pricing-card.featured:hover { transform: scale(1.08) translateY(-8px); }
        .pricing-card.featured::before { content: '👑'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 28px; }
        .pricing-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 16px; }
        .pricing-amount { font-size: 36px; font-weight: 900; margin-bottom: 5px; letter-spacing: -2px; }
        .pricing-period { font-size: 12px; color: var(--gray); margin-bottom: 24px; }
        .pricing-divider { height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%); margin: 24px 0; }
        .pricing-tier { margin: 18px 0; }
        .pricing-tier-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 6px; }
        .pricing-tier-value { font-size: 24px; font-weight: 800; }
        .pricing-tier-value.champion { color: var(--gold); }
        .pricing-tier-value.signature { color: var(--blue); }
        .pricing-tier-value.certified { color: var(--red); }
        .pricing-install { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 14px; margin-top: 24px; }
        .pricing-install-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 5px; }
        .pricing-install-value { font-size: 16px; font-weight: 700; color: var(--green); }

        .simulation-section { background: var(--gray-light); color: var(--black); }
        .simulation-section .section-title { color: var(--black); }
        .simulation-section .section-subtitle { color: #666; }
        .simulation-section .section-subtitle strong { color: var(--red); }
        .sim-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }
        .sim-card { background: var(--white); border-radius: 30px; overflow: hidden; box-shadow: 0 10px 45px rgba(0,0,0,0.1); transition: all 0.4s; }
        .sim-card:hover { transform: translateY(-14px); box-shadow: 0 40px 80px rgba(0,0,0,0.16); }
        .sim-header { background: var(--black); padding: 32px; display: flex; align-items: center; gap: 24px; }
        .sim-icon { width: 68px; height: 68px; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); box-shadow: 0 10px 30px var(--red-glow); }
        .sim-header-text h4 { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 5px; }
        .sim-header-text span { font-size: 14px; color: var(--gray); }
        .sim-body { padding: 45px 35px; }
        .sim-total { text-align: center; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 2px solid var(--gray-light); }
        .sim-total-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 12px; }
        .sim-total-value { font-size: 56px; font-weight: 900; color: var(--red); letter-spacing: -3px; line-height: 1; }
        .sim-total-currency { font-size: 20px; font-weight: 700; color: var(--gray); margin-left: 5px; }
        .sim-recurring { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: rgba(0, 200, 83, 0.12); color: var(--green); border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 16px; }
        .sim-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
        .sim-breakdown-item { background: var(--gray-light); border-radius: 20px; padding: 24px 16px; text-align: center; position: relative; overflow: hidden; }
        .sim-breakdown-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
        .sim-breakdown-item.champion::before { background: var(--gold); }
        .sim-breakdown-item.signature::before { background: var(--blue); }
        .sim-breakdown-item.certified::before { background: var(--red); }
        .sim-breakdown-role { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 10px; font-weight: 700; }
        .sim-breakdown-value { font-size: 26px; font-weight: 900; color: var(--black); }

        .chart-section { background: var(--black); }
        .chart-wrapper { max-width: 1000px; margin: 0 auto; height: 480px; background: var(--white); border-radius: 30px; padding: 50px; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }

        .cta-section { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); text-align: center; position: relative; overflow: hidden; padding: 130px 30px; }
        .cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 40%); pointer-events: none; }
        .cta-section .section-inner { position: relative; z-index: 2; }
        .cta-logo { height: 120px; margin-bottom: 35px; filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255,255,255,0.3)); }
        .cta-section h2 { font-size: clamp(38px, 5.5vw, 60px); font-weight: 900; margin-bottom: 25px; letter-spacing: -2px; }
        .cta-section p { font-size: 21px; margin-bottom: 50px; opacity: 0.95; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.7; }
        .cta-main-btn { display: inline-flex; align-items: center; gap: 14px; padding: 26px 60px; background: var(--white); color: var(--red); border-radius: 100px; font-size: 19px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 15px 50px rgba(0,0,0,0.3); }
        .cta-main-btn:hover { transform: scale(1.08) translateY(-5px); }
        .cta-main-btn i { font-size: 22px; }
        .cta-free-badge { display: inline-flex; align-items: center; gap: 12px; padding: 20px 40px; background: var(--green); color: var(--white); border-radius: 100px; font-size: 17px; font-weight: 700; margin-top: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
        .cta-audience { max-width: 780px; margin: 60px auto 0; padding: 40px; background: rgba(255,255,255,0.1); border-radius: 26px; backdrop-filter: blur(10px); display: flex; align-items: center; gap: 25px; }
        .cta-audience i { font-size: 40px; color: var(--gold); flex-shrink: 0; }
        .cta-audience p { margin: 0; font-size: 17px; text-align: left; line-height: 1.7; }

        .footer { background: var(--black); padding: 80px 30px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-logo-img { height: 100px; margin-bottom: 25px; filter: drop-shadow(0 0 30px var(--red-glow)); }
        .footer-slogan { font-size: 24px; font-weight: 800; margin-bottom: 15px; color: var(--gold); }
        .footer-tagline { color: var(--gray); font-size: 16px; margin-bottom: 30px; }
        .footer-copy { color: var(--gray); font-size: 14px; font-weight: 600; }

        .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(30px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
        .modal-overlay.active { opacity: 1; pointer-events: all; }
        .modal { background: var(--gray-dark); border-radius: 34px; padding: 60px 50px; width: 90%; max-width: 480px; transform: translateY(40px) scale(0.9); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(255,255,255,0.1); position: relative; }
        .modal-overlay.active .modal { transform: translateY(0) scale(1); }
        .modal-close { position: absolute; top: 24px; right: 24px; width: 45px; height: 45px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: var(--white); font-size: 20px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
        .modal-close:hover { background: var(--red); border-color: var(--red); }
        .modal-header { text-align: center; margin-bottom: 40px; }
        .modal-logo { width: 110px; height: 110px; margin: 0 auto 25px; }
        .modal-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 20px var(--red-glow)); }
        .modal-title { font-size: 30px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
        .modal-subtitle { font-size: 15px; color: var(--gray); }
        .modal-form { display: flex; flex-direction: column; gap: 22px; }
        .form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--gray); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .form-group input { width: 100%; padding: 18px 22px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; color: var(--white); font-size: 16px; transition: all 0.3s; }
        .form-group input:focus { outline: none; border-color: var(--red); background: rgba(227, 24, 55, 0.1); box-shadow: 0 0 30px var(--red-glow); }
        .form-group input::placeholder { color: var(--gray); }
        .modal-submit { width: 100%; padding: 20px; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); border: none; border-radius: 16px; color: var(--white); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; margin-top: 10px; box-shadow: 0 15px 40px var(--red-glow); }
        .modal-submit:hover { transform: translateY(-3px); }
        .modal-footer { text-align: center; margin-top: 35px; padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.1); }
        .modal-footer p { font-size: 15px; color: var(--gray); }
        .modal-footer a { color: var(--red); text-decoration: none; font-weight: 700; }

        .lang-en { display: none; }
        .lang-fr { display: inline; }
        body.english .lang-en { display: inline; }
        body.english .lang-fr { display: none; }

        .animate-on-scroll { opacity: 0; transform: translateY(45px); transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1); }
        .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .lang-btn.active:focus{
            border:none !important;
        }
        /* Ultra-Premium Mobile Responsive Design */
        @media (max-width: 1200px) { 
            .pricing-grid { grid-template-columns: repeat(3, 1fr); } 
            .why-grid { grid-template-columns: repeat(2, 1fr); } 
        }
        
        @media (max-width: 992px) { 
            .nav { padding: 15px 30px; } 
            .nav-links { display: none; } 
            .nav-logo img { height: 85px; } 
            .roles-grid, .why-grid { grid-template-columns: 1fr; } 
            .sim-grid { grid-template-columns: 1fr; } 
            .pricing-grid { grid-template-columns: repeat(2, 1fr); } 
            .hero-stats { gap: 40px; } 
            .hero-logo img { height: 160px; }
            .cta-logo { height: 110px; }
            .footer-logo-img { height: 95px; }
            .modal-logo { width: 100px; height: 100px; }
        }
        
        @media (max-width: 768px) { 
            .section { padding: 80px 25px; } 
            .hero { padding: 120px 25px 80px; } 
            .hero-stats { flex-direction: column; gap: 30px; } 
            .pricing-grid { grid-template-columns: 1fr; } 
            .pricing-card.featured { transform: none; } 
            .sim-breakdown { grid-template-columns: 1fr; } 
            .floating-cta { bottom: 20px; left: 20px; right: 20px; transform: translateX(0) translateY(100px); } 
            .floating-cta.visible { transform: translateX(0) translateY(0); } 
            .floating-cta-btn { width: 100%; justify-content: center; padding: 18px 30px; font-size: 15px; } 
            .cta-audience { flex-direction: column; text-align: center; padding: 35px 25px; } 
            .cta-audience p { text-align: center; font-size: 16px; } 
            .hero-logo img { height: 140px; }
            .nav-logo img { height: 80px; }
            .cta-logo { height: 105px; }
            .footer-logo-img { height: 90px; }
            .nav { padding: 12px 20px; }
            .section-title { font-size: clamp(32px, 7vw, 54px); }
            .chart-wrapper { padding: 35px 25px; height: 400px; }
            .modal { padding: 50px 30px; }
            .modal-logo { width: 95px; height: 95px; }
        }
        
        @media (max-width: 576px) {
            .nav-logo img { height: 75px !important; }
            .hero-logo img { height: 130px !important; }
            .cta-logo { height: 100px !important; }
            .footer-logo-img { height: 85px !important; }
            .modal-logo { width: 90px; height: 90px; }
            .nav { padding: 10px 15px; }
            .hero { padding: 110px 20px 70px; }
            .section { padding: 70px 20px; }
            .hero h1 { font-size: clamp(32px, 9vw, 52px); line-height: 1.15; }
            .hero p { font-size: 17px; }
            .cta-section h2 { font-size: clamp(32px, 8vw, 50px); }
            .cta-section p { font-size: 18px; }
            .chart-wrapper { padding: 25px 15px; height: 350px; }
            .nav-actions { gap: 10px; }
            .lang-btn { padding: 6px 12px; font-size: 11px; }
            .nav-login { padding: 10px 20px; font-size: 12px; }
            .floating-cta-btn { padding: 16px 25px; font-size: 14px; gap: 10px; }
            .modal { padding: 40px 25px; }
            .modal-title { font-size: 26px; }
            .cta-main-btn { padding: 22px 45px; font-size: 17px; }
            .cta-free-badge { padding: 16px 32px; font-size: 15px; }
        }
        
        @media (max-width: 400px) {
            .nav-logo img { height: 70px !important; }
            .hero-logo img { height: 120px !important; }
            .cta-logo { height: 95px !important; }
            .footer-logo-img { height: 80px !important; }
            .modal-logo { width: 85px; height: 85px; }
            .hero h1 { font-size: clamp(28px, 10vw, 48px); }
            .cta-section h2 { font-size: clamp(28px, 9vw, 46px); }
            .nav-logo-text { font-size: 14px; }
            .chart-wrapper { height: 320px; padding: 20px 12px; }
        }
    