        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #00ff88;
            --secondary-green: #00cc6a;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --card-bg: #111111;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #707070;
            --border-color: #222;
            --danger: #ff3366;
            --warning: #ffaa00;
            --success-bg: rgba(0, 255, 136, 0.1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
            z-index: 10000;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.7);
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-green);
        }

        /* Animations */
        @keyframes terminalBlink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        @keyframes pulse {
            0% { opacity: 1; }
            8.3% { opacity: 0.7; }
            16.7%, 100% { opacity: 1; }
        }

        @keyframes scan {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            0%, 50% { border-color: var(--primary-green); }
            51%, 100% { border-color: transparent; }
        }

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

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

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

        @keyframes glow {
            0% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.5); }
            8.3% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.6); }
            16.7%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.5); }
        }

        @keyframes cursorBlink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

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

        @keyframes streamStartedGlow {
            0%, 100% { 
                box-shadow: 0 0 15px rgba(0, 255, 136, 0.3), 
                            0 0 25px rgba(0, 255, 136, 0.2),
                            inset 0 0 15px rgba(0, 255, 136, 0.1);
            }
            50% { 
                box-shadow: 0 0 25px rgba(0, 255, 136, 0.6), 
                            0 0 40px rgba(0, 255, 136, 0.4),
                            inset 0 0 20px rgba(0, 255, 136, 0.2);
            }
        }

        @keyframes streamStartedPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.45);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 0.5rem 0;
            background: rgba(5, 5, 5, 0.35);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-green);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }

        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 2px 4px rgba(0, 0, 0, 0.8);
        }

        .logo::before {
            content: ">";
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
            white-space: nowrap;
            position: relative;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: #000000 !important;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-block;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            animation: glow 12s infinite;
            text-shadow: none !important;
        }

        .cta-button:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
            color: #000000;
        }

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

        .cta-button:hover::before {
            left: 100%;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.03) 50%, transparent 100%);
            animation: scan 8s linear infinite;
            pointer-events: none;
        }

        /* Particles Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--primary-green);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s infinite ease-in-out;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text h1 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-green), var(--text-primary));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient 3s linear infinite;
        }

        .terminal-text {
            font-family: 'Courier New', monospace;
            color: var(--primary-green);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            border-right: 1px solid var(--primary-green);
            animation: typing 3s steps(42, end), blink 1.5s step-end 3s infinite;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: fadeIn 1s ease 0.5s both;
        }

        /* Countdown Timer */
        .countdown {
            background: var(--card-bg);
            border: 1px solid var(--primary-green);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease 0.7s both;
        }

        .countdown.stream-started {
            animation: streamStartedGlow 3s ease-in-out infinite,
                      streamStartedPulse 2s ease-in-out infinite;
            border-color: var(--primary-green);
            background: linear-gradient(135deg, 
                        var(--card-bg) 0%, 
                        rgba(0, 255, 136, 0.05) 50%, 
                        var(--card-bg) 100%);
        }

        .countdown.stream-started .countdown-number {
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        .countdown-title {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .countdown-title span {
            color: var(--primary-green);
            font-weight: bold;
        }

        .countdown-wrapper {
            display: flex;
            justify-content: space-around;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-green);
            display: block;
        }

        .countdown-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-secondary);
            opacity: 0;
            animation: slideInUp 0.5s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.8s; }
        .feature-item:nth-child(2) { animation-delay: 0.9s; }
        .feature-item:nth-child(3) { animation-delay: 1s; }
        .feature-item:nth-child(4) { animation-delay: 1.1s; }
        .feature-item:nth-child(5) { animation-delay: 1.2s; }

        .feature-item::before {
            content: "✓";
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.2rem;
            background: var(--success-bg);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 1.2s both;
        }

        .secondary-button {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-block;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .secondary-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-green);
            transition: left 0.3s;
            z-index: -1;
        }

        .secondary-button:hover::before {
            left: 0;
        }

        .secondary-button:hover {
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        /* Interactive Terminal */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInUp 1s ease 0.5s both;
        }

        .terminal {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .terminal-header {
            background: linear-gradient(90deg, var(--card-bg), #1a1a1a);
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .terminal-dot:hover {
            transform: scale(1.2);
        }

        .terminal-dot.red {
            background: var(--danger);
        }

        .terminal-dot.yellow {
            background: var(--warning);
        }

        .terminal-dot.green {
            background: var(--primary-green);
        }

        .terminal-title {
            flex: 1;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .terminal-body {
            padding: 1.5rem;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: var(--primary-green);
            height: 335px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .code-line {
            margin: 0.5rem 0;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .python-code {
            color: #3776ab;
        }

        .python-keyword {
            color: #ffd43b;
        }

        .success {
            color: var(--primary-green);
        }

        .output {
            color: var(--text-secondary);
        }

        .terminal-cursor {
            color: var(--primary-green);
            animation: cursorBlink 1s infinite;
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 1.3s both;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .trust-badge-icon {
            color: var(--primary-green);
            font-size: 1.2rem;
        }

        /* Stats Section */
        .stats {
            background: var(--darker-bg);
            padding: 4rem 2rem;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

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

        /* Companies Section */
        .companies {
            padding: 3rem 2rem;
            background: var(--dark-bg);
            text-align: center;
        }

        .companies-title {
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }

        .companies-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.5;
            filter: grayscale(1);
            transition: all 0.3s;
        }

        .companies-grid:hover {
            opacity: 0.8;
            filter: grayscale(0.5);
        }

        .company-logo {
            font-size: 1.5rem;
            color: var(--text-secondary);
            font-weight: bold;
        }

        /* Program Section */
        .program {
            padding: 5rem 2rem;
            background: var(--dark-bg);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 3rem;
        }

        .program-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .program-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .program-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-green);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .program-card:hover::before {
            transform: scaleY(1);
        }

        .program-card:hover {
            transform: translateX(10px);
            border-color: var(--primary-green);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .program-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .module-icon {
            width: 30px;
            height: 30px;
            background: var(--success-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .program-card ul {
            list-style: none;
            color: var(--text-secondary);
        }

        .program-card li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            transition: all 0.3s;
        }

        .program-card li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--primary-green);
            transition: all 0.3s;
        }

        .program-card li:hover {
            color: var(--text-primary);
            padding-left: 2rem;
        }

        /* Directions Section */
        .directions {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
        }

        .directions-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .direction-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .direction-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .direction-card:hover::after {
            transform: scaleX(1);
        }

        .direction-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .direction-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
            transition: all 0.3s;
        }

        .direction-card:hover .direction-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .direction-title {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .direction-text {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Audience Section */
        .audience {
            padding: 5rem 2rem;
            background: var(--darker-bg);
        }

        .audience-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .audience-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .audience-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .audience-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .audience-title {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .audience-text {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Skills Section */
        .skills {
            padding: 5rem 2rem;
            background: var(--dark-bg);
        }

        .skills-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .skill-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            text-align: center;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .skill-item:hover {
            transform: translateY(-5px) scale(1.05);
            border-color: var(--primary-green);
            background: rgba(0, 255, 136, 0.05);
        }

        .skill-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-green);
            transition: all 0.3s;
        }

        .skill-item:hover .skill-icon {
            transform: rotateY(360deg);
        }

        /* ===========================
           PROMO BLOCK
           =========================== */
        @keyframes promoGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.1);
            }
            50% {
                box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.2);
            }
        }

        .promo-block {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            animation: promoGlow 3s ease-in-out infinite;
            max-width: 420px;
            width: 100%;
        }

        .promo-block::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, #00ff88, #ff00ff, #00ff88);
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

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

        .promo-badge {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .promo-discount {
            color: #ff00ff;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .promo-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .promo-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            text-align: center;
        }

        .promo-details {
            margin-bottom: 1.5rem;
        }

        .promo-code-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            text-align: center;
        }

        .promo-code-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .promo-code {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(255, 0, 255, 0.2));
            border: 2px solid #00ff88;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-size: 1.5rem;
            font-weight: 800;
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .promo-code:hover {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(255, 0, 255, 0.3));
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
        }

        .promo-code:active {
            transform: scale(0.98);
        }

        .promo-code-hint {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .promo-code-hint svg {
            opacity: 0.7;
        }

        .promo-deadline {
            color: #ff00ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
        }

        .promo-courses {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            text-align: center;
        }

        .promo-courses strong {
            color: var(--text-primary);
        }

        .promo-cta {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .promo-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        .promo-note {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 1rem;
            text-align: center;
        }

        .copy-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
            z-index: 10000;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .copy-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* Price Section */
        .pricing {
            padding: 5rem 2rem;
            background: var(--darker-bg);
            position: relative;
        }

        .pricing-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .price-card {
            background: linear-gradient(135deg, var(--card-bg), #1a1a1a);
            border: 2px solid var(--primary-green);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .price-currency {
            font-size: 1.5rem;
        }

        .price-installment {
            background: var(--success-bg);
            border: 1px solid var(--primary-green);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .installment-amount {
            font-size: 2rem;
            color: var(--primary-green);
            font-weight: bold;
        }

        .guarantee {
            background: var(--success-bg);
            border: 1px solid var(--primary-green);
            border-radius: 8px;
            padding: 1rem;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Final CTA */
        .final-cta {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 204, 106, 0.05));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .deadline-warning {
            background: rgba(255, 51, 102, 0.1);
            border: 1px solid var(--danger);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 2rem;
            color: var(--danger);
            font-weight: bold;
            animation: pulse 12s infinite;
            display: inline-block;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--card-bg);
            border: 2px solid var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

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

        .scroll-to-top::before {
            content: "↑";
            font-size: 1.5rem;
            color: var(--primary-green);
            font-weight: bold;
        }

        .scroll-to-top:hover::before {
            color: var(--dark-bg);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(20px);
                border-top: 1px solid var(--border-color);
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 1rem;
                z-index: 999;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .mobile-menu {
                display: block;
                font-size: 1.5rem;
                color: var(--primary-green);
                cursor: pointer;
            }

            .mobile-menu.active {
                transform: rotate(90deg);
            }

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

            .hero-visual {
                display: none;
            }

            /* Show promo block on mobile (override hero-visual hidden) */
            .hero-visual:has(.promo-block) {
                display: flex !important;
            }

            /* Hide terminal on mobile during promo */
            .hero-visual .terminal {
                display: none !important;
            }

            /* Promo block mobile styles */
            .promo-block {
                max-width: 100%;
            }

            .promo-title {
                font-size: 1.3rem;
            }

            .promo-subtitle {
                font-size: 0.95rem;
            }

            .promo-code {
                font-size: 1.3rem;
                padding: 0.6rem 1.2rem;
            }

            .promo-cta {
                padding: 0.7rem 1.2rem;
                font-size: 0.95rem;
            }

            .promo-courses {
                font-size: 0.85rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .program-grid {
                grid-template-columns: 1fr;
            }

            .audience-grid {
                grid-template-columns: 1fr;
            }

            .directions-grid {
                grid-template-columns: 1fr;
            }

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

/* ===== Telegram Widget ===== */
.telegram-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.telegram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0088cc;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.telegram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.telegram-button:active {
    transform: scale(0.95);
}

.telegram-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.telegram-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.telegram-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--card-bg);
}

.telegram-button:hover .telegram-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation for attention */
@keyframes telegram-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 136, 204, 0.6), 0 0 0 8px rgba(0, 136, 204, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    }
}

.telegram-button {
    animation: telegram-pulse 2s infinite;
}

.telegram-button:hover {
    animation: none;
}

/* Link button style for price block */
.link-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.link-button:hover {
    text-decoration: underline;
}

/* Mobile responsive for Telegram widget */
@media (max-width: 768px) {
    .telegram-widget {
        bottom: 20px;
        right: 20px;
    }

    .telegram-button {
        width: 50px;
        height: 50px;
    }

    .telegram-icon {
        width: 26px;
        height: 26px;
    }

    .telegram-tooltip {
        display: none;
    }
}

/* ========================================
   Modal Styles
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-container {
    background: var(--card-bg);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 530px;
    width: 90%;
    overflow-y: visible;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--darker-bg);
}

.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-radius: 4px;
    margin: 0.5rem 0;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.modal-overlay.show .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    border-color: var(--danger);
    color: var(--danger);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding-right: 3rem;
    line-height: 1.3;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Labels hidden - using compact form style (placeholders only) */
.form-group label {
    display: none;
}

.form-group input,
.form-group textarea {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
}

/* Remove gap between consecutive checkboxes */
.form-checkbox + .form-checkbox {
    margin-top: -0.9rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.form-checkbox label a:hover {
    opacity: 0.8;
}

.form-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #000000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: -0.25rem;
}

.form-submit:hover:not(.form-submit-disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.form-submit.form-submit-disabled {
    background: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--danger);
    animation: shake 0.5s;
}

.form-checkbox.error {
    animation: shake 0.5s;
}

.form-checkbox.error label {
    color: var(--danger);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: -0.4rem;
    text-align: center;
}

/* ========================================
   Contact Us Block (Modal)
   ======================================== */
.contact-us-block {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-divider-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
}

.contact-divider-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: lowercase;
}

.contact-us-title {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 140px;
}

.contact-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Telegram Button */
.contact-btn.telegram-btn {
    background: #1a7fb3;
    color: #ffffff;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}

.contact-btn.telegram-btn:hover {
    background: #1a8bc7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 127, 179, 0.4);
}

.contact-btn.telegram-btn:active {
    transform: translateY(0);
}

/* WhatsApp Button */
.contact-btn.whatsapp-btn {
    background: #1fa855;
    color: #ffffff;
}

.contact-btn.whatsapp-btn:hover {
    background: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31, 168, 85, 0.4);
}

.contact-btn.whatsapp-btn:active {
    transform: translateY(0);
}

/* Contact Block Responsive */
@media (max-width: 480px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 250px;
    }

    .contact-divider-line {
        max-width: 60px;
    }
}

/* ========================================
   SUCCESS MODAL - Premium Design
   ======================================== */

/* Keyframes for success modal animations */
@keyframes successModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes successModalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes successCircleDraw {
    0% {
        stroke-dashoffset: 157;
        transform: scale(0) rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 157;
        transform: scale(1) rotate(-90deg);
    }
    100% {
        stroke-dashoffset: 0;
        transform: scale(1) rotate(-90deg);
    }
}

@keyframes successCheckDraw {
    0% {
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes successIconBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes successGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
    }
}

@keyframes successParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Success Modal Overlay */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.success-modal-overlay.show {
    display: flex;
    animation: successModalFadeIn 0.3s ease forwards;
}

/* Success Modal Container */
.success-modal-container {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0d0d0d 100%);
    border: 1px solid var(--primary-green);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: successModalScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.success-modal-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient 2s linear infinite;
}

/* Particles container */
.success-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.success-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    opacity: 0;
}

.success-modal-overlay.show .success-particle {
    animation: successParticle 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.success-particle:nth-child(1) { --tx: -60px; --ty: -40px; }
.success-particle:nth-child(2) { --tx: 60px; --ty: -40px; }
.success-particle:nth-child(3) { --tx: -50px; --ty: 50px; }
.success-particle:nth-child(4) { --tx: 50px; --ty: 50px; }
.success-particle:nth-child(5) { --tx: 0; --ty: -70px; }
.success-particle:nth-child(6) { --tx: -70px; --ty: 0; }
.success-particle:nth-child(7) { --tx: 70px; --ty: 0; }
.success-particle:nth-child(8) { --tx: 0; --ty: 70px; }

/* Success Icon */
.success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    opacity: 0;
    animation: successIconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
}

.success-icon {
    width: 100%;
    height: 100%;
    transform-origin: center;
}

.success-circle {
    stroke: var(--primary-green);
    stroke-width: 3;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    fill: none;
    transform-origin: center;
    animation: successCircleDraw 0.8s ease forwards;
    animation-delay: 0.3s;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.success-check {
    stroke: var(--primary-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    fill: none;
    animation: successCheckDraw 0.4s ease forwards;
    animation-delay: 0.8s;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
}

.success-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: successGlow 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* Success Title */
.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: successTextFadeIn 0.5s ease forwards;
    animation-delay: 0.5s;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Success Subtitle */
.success-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    opacity: 0;
    animation: successTextFadeIn 0.5s ease forwards;
    animation-delay: 0.65s;
}

/* Lead ID */
.success-lead-id {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    opacity: 0;
    animation: successTextFadeIn 0.5s ease forwards;
    animation-delay: 0.8s;
}

.success-lead-id span {
    color: var(--primary-green);
    font-weight: 600;
}

/* Success Button */
.success-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: successTextFadeIn 0.5s ease forwards;
    animation-delay: 0.95s;
    position: relative;
    overflow: hidden;
}

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

.success-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.35);
}

.success-button:hover::before {
    left: 100%;
}

.success-button:active {
    transform: scale(0.98);
}

/* Mobile responsive for success modal */
@media (max-width: 480px) {
    .success-modal-container {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .success-icon-glow {
        width: 100px;
        height: 100px;
    }

    .success-title {
        font-size: 1.4rem;
    }

    .success-subtitle {
        font-size: 0.95rem;
    }

    .success-lead-id {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .success-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   Final CTA Section (Inline Form)
   ======================================== */
.final-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 204, 106, 0.05));
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.schedule-info {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.2rem;
    margin-top: 2rem;
    display: inline-block;
}

.schedule-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-icon {
    font-size: 1.3rem;
}

/* ========================================
   Inline Form Styles
   ======================================== */
.inline-form-container {
    max-width: 500px;
    margin: 2rem auto 0;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inline-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inline-form .form-group input,
.inline-form .form-group textarea {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.inline-form .form-group input::placeholder,
.inline-form .form-group textarea::placeholder {
    color: var(--text-muted);
}

.inline-form .form-group input:focus,
.inline-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.inline-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.inline-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
}

.inline-form .form-checkbox + .form-checkbox {
    margin-top: -0.6rem;
}

.inline-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.inline-form .form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
    text-align: left;
}

.inline-form .form-checkbox label a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.inline-form .form-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.inline-form .form-submit:hover:not(.form-submit-disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.inline-form .form-submit.form-submit-disabled {
    background: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.inline-form .form-group.error input,
.inline-form .form-group.error textarea {
    border-color: var(--danger);
    animation: shake 0.5s;
}

.inline-form .form-checkbox.error {
    animation: shake 0.5s;
}

.inline-form .form-checkbox.error label {
    color: var(--danger);
}

.inline-form .form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: -0.4rem;
    text-align: center;
}

/* Inline Form Responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .inline-form-container {
        margin: 1.5rem auto 0;
    }

    .inline-form {
        gap: 0.75rem;
    }

    .inline-form .form-group input,
    .inline-form .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .inline-form .form-submit {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .inline-form .form-checkbox label {
        font-size: 0.8rem;
    }
}
