:root {
            --white: #FFFFFF;
            --cream-50: #FFFBF6;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #818CF8;
            --bronze-400: #A5B4FC;
            --bronze-300: #C7D2FE;
            --bronze-200: #E0E7FF;
            --bronze-100: #EEF2FF;
            
            --emerald: #059669;
            --emerald-light: #D1FAE5;
            --blue: #3B82F6;
            --blue-light: #DBEAFE;
            --violet: #8B5CF6;
            --violet-light: #EDE9FE;
            --cyan: #06B6D4;
            --orange: #F97316;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'DM Serif Display', Georgia, serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: var(--font-sans); 
            font-size: 15px; 
            line-height: 1.6; 
            color: var(--gray-800); 
            background: var(--white); 
            -webkit-font-smoothing: antialiased;
            padding-top: 80px;
        }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        .header-inner { display: flex; align-items: center; justify-content: space-between; }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .logo-mark {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900));
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(61, 41, 20, 0.2);
        }

        .logo-mark svg { width: 18px; height: 18px; color: white; }
        .logo sup { font-size: 10px; font-weight: 500; color: var(--bronze-600); margin-left: 2px; }

        .nav { display: flex; align-items: center; gap: 4px; }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
        .nav-link.active { color: var(--bronze-700); }
        .nav-link svg { width: 14px; height: 14px; }

        .header-actions { display: flex; align-items: center; gap: 12px; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-sm { padding: 8px 16px; font-size: 13px; }
        .btn-lg { padding: 14px 28px; font-size: 15px; }
        .btn-xl { padding: 16px 32px; font-size: 16px; }
        .btn-primary { background: transparent; color: #1E1E24; border: 1.5px solid #1E1E24; }
        .btn-primary:hover { background: #1E1E24; color: #FFFFFF; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10); }
        .btn-secondary { background: var(--gray-900); color: white; }
        .btn-secondary:hover { background: var(--gray-800); }
        .btn-outline { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-200); }
        .btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); }
        .btn-ghost { color: var(--gray-600); background: transparent; }
        .btn-ghost:hover { color: var(--gray-900); background: var(--gray-50); }
        .btn-white { background: white; color: var(--gray-900); }
        .btn-white:hover { background: var(--gray-100); }

        /* Dark section button overrides */
        .cta-card .btn-primary,
        .api-orchestration-section .btn-primary,
        .hybrid-section .btn-primary {
            background: #FFFFFF;
            color: #1E1E24;
            border: none;
            border-radius: 8px;
            padding: 9px 20px;
            font-weight: 500;
        }
        .cta-card .btn-primary:hover,
        .api-orchestration-section .btn-primary:hover,
        .hybrid-section .btn-primary:hover {
            background: #F0F0F0;
            color: #1E1E24;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .cta-card .btn-outline,
        .api-orchestration-section .btn-outline,
        .hybrid-section .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 8px;
            padding: 9px 20px;
        }
        .cta-card .btn-outline:hover,
        .api-orchestration-section .btn-outline:hover,
        .hybrid-section .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.7);
        }
        .cta-card .btn-primary.btn-lg,
        .api-orchestration-section .btn-primary.btn-lg {
            padding: 14px 28px;
        }
        .btn-icon { width: 16px; height: 16px; }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--gray-600);
        }
        .mobile-menu-toggle svg { width: 24px; height: 24px; }

        @media (max-width: 1024px) {
            .nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .header-actions .btn-ghost { display: none; }
        }

        /* HERO SECTION */
        .webinar-hero {
            position: relative;
            padding: 80px 0 100px;
            background: linear-gradient(180deg, var(--gray-950) 0%, #1a1f2e 100%);
            overflow: hidden;
        }

        .webinar-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 60% 50% at 70% 20%, rgba(99,102,241, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .webinar-hero-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .webinar-hero-text {
            max-width: 540px;
        }

        .webinar-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(99,102,241, 0.15);
            border: 1px solid rgba(99,102,241, 0.25);
            border-radius: 100px;
            margin-bottom: 24px;
        }

        .webinar-badge-icon {
            width: 20px;
            height: 20px;
            background: var(--bronze-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .webinar-badge-icon svg { width: 10px; height: 10px; color: white; }

        .webinar-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--bronze-400);
        }

        .webinar-hero-title {
            font-family: var(--font-serif);
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 400;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .webinar-hero-title .highlight {
            color: var(--bronze-400);
        }

        .webinar-hero-subtitle {
            font-size: 18px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .webinar-hero-cta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Hero Visual - Video Player Mockup */
        .webinar-hero-visual {
            position: relative;
        }

        .video-player-mockup {
            background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 16px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
        }

        .video-screen {
            position: relative;
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder {
            text-align: center;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 16px 40px rgba(99,102,241, 0.3);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 20px 50px rgba(99,102,241, 0.4);
        }

        .play-button svg { width: 32px; height: 32px; color: white; margin-left: 4px; }

        .video-label {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .video-coming-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            border-radius: 100px;
        }

        .video-coming-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .video-coming-badge span {
            font-size: 12px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .video-controls {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0 0;
        }

        .video-progress {
            flex: 1;
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .video-progress-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--bronze-500), var(--bronze-400));
            border-radius: 2px;
        }

        .video-time {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            font-family: monospace;
        }

        /* SUBSCRIBE SECTION */
        .subscribe-section {
            padding: 100px 0;
            background: var(--white);
        }

        .subscribe-card {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .subscribe-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 28px;
            background: linear-gradient(135deg, var(--bronze-100), var(--bronze-200));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subscribe-icon svg {
            width: 40px;
            height: 40px;
            color: var(--bronze-700);
        }

        .subscribe-title {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .subscribe-text {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto 24px;
        }

        .subscribe-input {
            flex: 1;
            padding: 16px 20px;
            background: var(--gray-50);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-family: var(--font-sans);
            font-size: 15px;
            color: var(--gray-900);
            transition: all 0.2s;
        }

        .subscribe-input::placeholder { color: var(--gray-400); }
        .subscribe-input:focus { 
            outline: none; 
            border-color: var(--bronze-500); 
            background: white;
            box-shadow: 0 0 0 4px rgba(99,102,241, 0.1);
        }

        .subscribe-note {
            font-size: 13px;
            color: var(--gray-500);
        }

        .subscribe-note svg {
            width: 14px;
            height: 14px;
            display: inline;
            vertical-align: middle;
            margin-right: 4px;
        }

        /* WHAT TO EXPECT SECTION */
        .expect-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-eyebrow {
            font-size: 12px;
            font-weight: 700;
            color: var(--bronze-600);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 40px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .expect-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .expect-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .expect-card:hover {
            border-color: var(--bronze-300);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .expect-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .expect-icon svg { width: 28px; height: 28px; }

        .expect-icon.demos { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .expect-icon.strategies { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
        .expect-icon.trends { background: rgba(139, 92, 246, 0.12); color: var(--violet); }
        .expect-icon.qa { background: rgba(16, 185, 129, 0.12); color: var(--emerald); }
        .expect-icon.cases { background: rgba(6, 182, 212, 0.12); color: var(--cyan); }
        .expect-icon.expert { background: rgba(249, 115, 22, 0.12); color: var(--orange); }

        .expect-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .expect-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* UPCOMING TOPICS SECTION */
        .topics-section {
            padding: 100px 0;
            background: var(--white);
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .topic-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 32px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--bronze-400), var(--bronze-600));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .topic-card:hover {
            background: white;
            border-color: var(--bronze-200);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
        }

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

        .topic-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .topic-content {
            flex: 1;
        }

        .topic-badge {
            display: inline-block;
            padding: 4px 10px;
            background: rgba(249, 115, 22, 0.12);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 10px;
        }

        .topic-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .topic-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* WHY ATTEND SECTION */
        .why-section {
            padding: 100px 0;
            background: var(--gray-900);
        }

        .why-section .section-title { color: white; }
        .why-section .section-subtitle { color: var(--gray-400); }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .why-card {
            text-align: center;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(99,102,241, 0.3);
            transform: translateY(-4px);
        }

        .why-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 24px rgba(99,102,241, 0.2);
        }

        .why-icon svg { width: 32px; height: 32px; color: white; }

        .why-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* SPEAKERS PREVIEW SECTION */
        .speakers-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .speakers-preview {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .speaker-placeholder {
            text-align: center;
        }

        .speaker-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .speaker-avatar svg { width: 48px; height: 48px; color: var(--gray-400); }

        .speaker-avatar::after {
            content: '?';
            position: absolute;
            bottom: 4px;
            right: 4px;
            width: 28px;
            height: 28px;
            background: var(--bronze-500);
            border-radius: 50%;
            border: 3px solid var(--gray-50);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 800;
            color: white;
        }

        .speaker-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-600);
        }

        .speakers-cta {
            text-align: center;
            margin-top: 48px;
        }

        .speakers-cta p {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 20px;
        }

        /* FINAL CTA SECTION */
        .final-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--bronze-800), var(--bronze-900));
            position: relative;
            overflow: hidden;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

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

        .final-cta-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 28px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .final-cta-icon svg { width: 36px; height: 36px; color: white; }

        .final-cta-title {
            font-family: var(--font-serif);
            font-size: 40px;
            color: white;
            margin-bottom: 16px;
        }

        .final-cta-text {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .final-cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }

        .final-cta-input {
            flex: 1;
            padding: 16px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            font-family: var(--font-sans);
            font-size: 15px;
            color: white;
            transition: all 0.2s;
        }

        .final-cta-input::placeholder { color: rgba(255,255,255,0.5); }
        .final-cta-input:focus { 
            outline: none; 
            border-color: rgba(255,255,255,0.4);
            background: rgba(255,255,255,0.15);
        }

        /* FOOTER */
        .footer {
            background: var(--gray-950);
            color: white;
            padding: 80px 0 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 2fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand { max-width: 340px; }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark svg { width: 18px; height: 18px; color: white; }

        .footer-desc { 
            font-size: 15px; 
            color: var(--gray-400); 
            line-height: 1.7; 
            margin-bottom: 28px; 
        }

        .footer-social { display: flex; gap: 10px; }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .social-link:hover { 
            background: var(--bronze-700); 
            border-color: var(--bronze-600);
        }
        .social-link svg { width: 18px; height: 18px; color: var(--gray-400); }
        .social-link:hover svg { color: white; }

        .footer-links-grid {
            display: grid;
            grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr);
            gap: 20px;
        }

        .footer-column h4 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: white;
            margin-bottom: 20px;
        
            white-space: nowrap;
        }

        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        
        .footer-link { 
            font-size: 14px; 
            color: var(--gray-400); 
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .footer-link:hover { 
            color: white; 
            transform: translateX(2px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright { font-size: 14px; color: var(--gray-500); }
        
        .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-legal a { 
            font-size: 14px; 
            color: var(--gray-500); 
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: white; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .webinar-hero-content { grid-template-columns: 1fr; gap: 48px; }
            .webinar-hero-text { max-width: 100%; text-align: center; margin: 0 auto; }
            .webinar-hero-cta { justify-content: center; }
            .expect-grid { grid-template-columns: repeat(2, 1fr); }
            .topics-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-top { grid-template-columns: 1fr; gap: 48px; }
            .footer-links-grid { grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr); }
        }

        @media (max-width: 768px) {
            .webinar-hero { padding: 60px 0 80px; }
            .webinar-hero-title { font-size: 36px; }
            .subscribe-form { flex-direction: column; }
            .expect-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .final-cta-form { flex-direction: column; }
            .final-cta-title { font-size: 32px; }
            .speakers-preview { gap: 24px; }
        }

        /* SUCCESS STATE */
        .subscribe-success {
            display: none;
            text-align: center;
            padding: 24px;
            background: var(--emerald-light);
            border: 1px solid var(--emerald);
            border-radius: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        .subscribe-success.show { display: block; }

        .subscribe-success svg {
            width: 48px;
            height: 48px;
            color: var(--emerald);
            margin-bottom: 16px;
        }

        .subscribe-success h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .subscribe-success p {
            font-size: 14px;
            color: var(--gray-600);
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ===== FEATURED UPCOMING WEBINAR (added) ===== */
.featured-webinar-section { padding: 56px 0 0; background: var(--white); }
.featured-webinar {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
}
.featured-webinar-media { position: relative; min-height: 360px; background: #14122a; }
.featured-webinar-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-webinar-body { padding: 44px 48px; display: flex; flex-direction: column; }
.fw-tags { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.fw-status, .fw-series, .fw-format {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
}
.fw-status { background: rgba(5,150,105,0.12); color: var(--emerald); }
.fw-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(5,150,105,0.18); }
.fw-series { background: var(--bronze-100); color: var(--bronze-700); }
.fw-format { background: var(--gray-100); color: var(--gray-600); font-weight: 700; }
.fw-title { font-family: var(--font-serif); font-weight: 400; font-size: 32px; line-height: 1.16; color: var(--gray-900); margin-bottom: 12px; }
.fw-subtitle { font-size: 16px; color: var(--gray-600); line-height: 1.6; margin-bottom: 22px; }
.fw-meta { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.fw-meta-row { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--gray-700); }
.fw-meta-row svg { width: 18px; height: 18px; color: var(--bronze-600); flex-shrink: 0; }
.fw-meta-row strong { color: var(--gray-900); font-weight: 700; }
.fw-speaker { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--gray-200); margin-bottom: 24px; }
.fw-speaker-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.fw-speaker-name { font-size: 14.5px; font-weight: 700; color: var(--gray-900); }
.fw-speaker-title { font-size: 13px; color: var(--gray-500); }
.fw-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
[dir="rtl"] .featured-webinar-media img { transform: scaleX(-1); }
@media (max-width: 860px) {
    .featured-webinar { grid-template-columns: 1fr; }
    .featured-webinar-media { min-height: 210px; }
    .featured-webinar-body { padding: 32px 24px; }
    .fw-title { font-size: 26px; }
}

/* ===== HERO FEATURED WEBINAR (dark overrides) ===== */
.webinar-hero .fw-tags { margin-bottom: 22px; }
.webinar-hero .fw-series { background: rgba(99,102,241,0.18); color: var(--bronze-300); }
.webinar-hero .fw-format { background: rgba(255,255,255,0.08); color: var(--gray-300); }
.webinar-hero .webinar-hero-title { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 14px; }
.webinar-hero .webinar-hero-subtitle { margin-bottom: 24px; }
.webinar-hero .fw-meta { margin-bottom: 22px; }
.webinar-hero .fw-meta-row { color: rgba(255,255,255,0.85); font-size: 15px; }
.webinar-hero .fw-meta-row strong { color: #fff; }
.webinar-hero .fw-meta-row svg { color: var(--bronze-400); }
.webinar-hero .fw-speaker { border-top-color: rgba(255,255,255,0.12); margin-bottom: 28px; }
.webinar-hero .fw-speaker-name { color: #fff; }
.webinar-hero .fw-speaker-title { color: var(--gray-400); }
.webinar-hero .btn-primary { background: #fff; color: #1E1E24; border: none; }
.webinar-hero .btn-primary:hover { background: #f0f0f0; color: #1E1E24; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.webinar-hero .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.webinar-hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.webinar-hero-cover { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 32px 64px rgba(0,0,0,0.4); aspect-ratio: 16 / 9; background: #14122a; }
.webinar-hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.webinar-hero-cover-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 100px; background: rgba(20,18,42,0.7); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.18); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.webinar-hero-cover-badge svg { width: 13px; height: 13px; }
[dir="rtl"] .webinar-hero-cover-badge { left: auto; right: 16px; }
[dir="rtl"] .webinar-hero-cover img { transform: scaleX(-1); }
