        /* --- 1. GLOBAL STYLES & FULL PAGE SCROLL ANIMATION --- */
        :root {
            --primary-purple: #6825DB;
            --primary-lime: #Cdfb3f;
            --accent-orange: #FCA440;
            --dark-bg: #12072b;
            --glass-card: rgba(30, 15, 65, 0.65);
            --border-glass: rgba(255, 255, 255, 0.1);
            --text-muted: #c7bce0;
            --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            --transition-fast: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        /* Normal sayfa kaydırması; her section aşağı indikçe animasyonla açılır */
        html, body {
            margin: 0;
            padding: 0;
            width: 100vw;
            height: auto;
            overflow-x: hidden;
            background-color: var(--dark-bg);
            background-image: radial-gradient(circle at 50% 5%, #2a1161 0%, var(--dark-bg) 70%);
            color: #ffffff;
            position: static;
        }

        /* Tüm bölümleri saran kapsayıcı */
        #fullpage-wrapper {
            width: 100vw;
            height: auto;
            transform: none !important;
            transition: none;
            will-change: auto;
        }

        /* Her bir bölüm */
        .fp-section {
            height: auto;
            min-height: 100vh;
            width: 100vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 0 5%;
            overflow: visible;
        }

        .section-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        /* --- 2. HEADER DESIGN (DİNAMİK) --- */
        .thegem-header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 25px 5%;
            transition: var(--transition-slow);
            background: transparent;
            border-bottom: none;
        }

        .thegem-header-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Açık (Beyaz) Tema Header */
        .thegem-header.scrolled {
            background: #ffffff !important;
            padding: 15px 5%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-bottom: none;
        }

        /* Koyu Tema Header */
        .thegem-header.scrolled-dark {
            background: var(--dark-bg) !important;
            padding: 15px 5%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.25);
            border-bottom: none;
        }

        .custom-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .custom-logo-text { font-size: 1.9rem; font-weight: 900; color: #ffffff; transition: var(--transition-fast); }
        .custom-logo-text span { color: var(--primary-lime); }

        .pill-nav-container { display: flex; gap: 12px; }
        .pill-nav-link {
            color: #ffffff;
            text-decoration: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition-fast);
        }
        .pill-nav-link:hover, .pill-nav-link.active { background: rgba(255, 255, 255, 0.15); }

        .pill-outline-btn {
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 10px 26px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-fast);
        }
        .pill-outline-btn:hover { background: #ffffff; color: var(--dark-bg); }

        /* Beyaz tema yazı renkleri */
        .thegem-header.scrolled .custom-logo-text { color: #111; }
        .thegem-header.scrolled .custom-logo-text span { color: var(--primary-purple); }
        .thegem-header.scrolled .pill-nav-link { color: #444; }
        .thegem-header.scrolled .pill-nav-link:hover { background: #f5f5f5; color: var(--primary-purple); }
        .thegem-header.scrolled .pill-outline-btn { border-color: var(--primary-purple); color: var(--primary-purple); }
        .thegem-header.scrolled .pill-outline-btn:hover { background: var(--primary-purple); color: #fff; }

        /* --- 3. ANİMASYONLAR (REVEAL) --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.2s; }
        .delay-2 { transition-delay: 0.4s; }

        /* --- 4. BÖLÜM 1: HERO BANNER --- */
        .hero-section {
            position: relative;
            color: #fff;
            text-align: center;
            isolation: isolate;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 12, 34, 0.88) 0%, rgba(36, 16, 60, 0.75) 100%);
            z-index: 2;
        }
        .hero-bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }
        .hero-content-wrap {
            position: relative;
            z-index: 3;
        }

        .hero-title {
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -2px;
            padding-top: 60px;
        }
        .hero-title span { color: var(--accent-orange); }
        .hero-desc {
            font-size: clamp(1.05rem, 2.2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            max-width: 850px;
            margin: 0 auto 40px;
        }
        
        .hero-stats-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .hero-stat-badge {
            display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(15px);
            padding: 15px 30px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .hero-stat-badge i { color: var(--primary-lime); font-size: 1.3rem; }
        .hero-stat-info strong { font-size: 1.2rem; font-weight: 900; color: #fff; }
        .hero-stat-info span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-left: 5px; }

        /* --- 5. BÖLÜM 2: BİZ KİMİZ? (BEYAZ - SOLDA GÖRSEL, SAĞDA YAZI) --- */
        .biz-kimiz-section { background: #ffffff; }
        .bk-flex { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
        
        .bk-visual {
            --bk-circle-size: clamp(300px, 40vw, 440px);
            position: relative; width: 45%; display: flex; justify-content: center;
        }
        .bk-image-wrapper {
            width: var(--bk-circle-size); height: var(--bk-circle-size); border-radius: 50%; position: relative; z-index: 5;
            border: 12px solid #fff; box-shadow: 0 35px 70px rgba(0,0,0,0.1); overflow: hidden;
        }
        .bk-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

        .bk-bg-blob {
            position: absolute;
            width: calc(var(--bk-circle-size) + 44px); height: calc(var(--bk-circle-size) + 44px);
            background: #f4f6fb; border-radius: 50%;
            top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
        }

        .bk-deco-shape { position: absolute; z-index: 2; pointer-events: none; }
        .bk-shape-ring {
            width: 46px; height: 46px; top: 1%; right: 9%;
            border: 5px solid var(--primary-lime); border-radius: 50%; opacity: 0.85;
        }
        .bk-shape-square {
            width: 24px; height: 24px; bottom: 9%; left: -5%;
            background: var(--accent-orange); border-radius: 7px; transform: rotate(20deg); opacity: 0.9;
        }
        .bk-shape-plus {
            top: 7%; left: 5%; font-size: 1.3rem; color: #ffffff; opacity: 0.4; transform: rotate(15deg);
        }

        .cd-badge-floating {
            position: absolute; background: #fff; padding: 12px 24px; border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 12px; z-index: 10; font-weight: 800;
        }
        .badge-left { top: 28%; left: -20px; }
        .badge-left .icon { width: 40px; height: 40px; background: #fff3e6; color: var(--accent-orange); border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
        
        .badge-bottom { bottom: -10px; left: 65%; transform: translateX(-50%); width: max-content; border-radius: 50px; }
        .cd-avatars { display: flex; margin-right: 12px; }
        .cd-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -14px; object-fit: cover; }
        .cd-badge-text { display: flex; flex-direction: column; font-size: 0.95rem; font-weight: 800; color: #111; line-height: 1.2; }
        .cd-badge-text span { color: var(--accent-orange); font-size: 0.8rem; font-weight: 700; }

        .bk-text { width: 55%; text-align: right; }
        .bk-title { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: #1e1e2c; line-height: 1.1; margin-bottom: 25px; letter-spacing: -2px;}
        .bk-title span { color: #7EC8F0; }
        .bk-desc { font-size: 1.25rem; color: #555; line-height: 1.75; margin-bottom: 20px; }

        /* --- 6. BÖLÜM 3: NEDEN WAY2GO (KOYU & AYRAÇLI 3 BAŞLIK) --- */
        .why-section { background: linear-gradient(135deg, #11091d 0%, #1e1136 100%); color: #fff; position: relative; }
        
        .fc-shape { position: absolute; opacity: 0.05; pointer-events: none; z-index: 1; }
        .fc-plus { top: 15%; left: 8%; font-size: 5rem; transform: rotate(45deg); color: #fff;}
        .fc-ring { bottom: 15%; right: 10%; width: 150px; height: 150px; border: 6px solid #fff; border-radius: 50%; }
        .fc-dots { top: 50%; left: 3%; width: 100px; height: 100px; background-image: radial-gradient(#fff 2px, transparent 2px); background-size: 18px 18px; }

        .section-title { font-size: clamp(2.8rem, 5vw, 3.8rem); font-weight: 900; text-align: center; margin-bottom: 20px; z-index: 5; position: relative;}
        .text-gradient { color: var(--primary-purple); }
        .why-brand-white { color: #ffffff; }
        .why-brand-orange { color: var(--accent-orange); }
        .why-brand-lime { color: var(--primary-lime); }

        .why-intro { text-align: center; max-width: 850px; margin: 0 auto 50px; font-size: 1.25rem; color: rgba(255,255,255,0.75); line-height: 1.65; position: relative; z-index: 5;}

        .why-cols-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; position: relative; z-index: 10; }
        .why-col {
            flex: 1; min-width: 300px; min-height: 300px;
            border-radius: 32px; padding: 34px 32px 30px; border: 1px solid rgba(255, 255, 255, 0.12);
            text-align: center; transition: var(--transition-slow); position: relative; overflow: hidden;
            display: flex; flex-direction: column; justify-content: flex-end;
        }

        .why-col:hover { transform: translateY(-10px); border-color: var(--primary-lime); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }

        /* Kart arka plan fotoğrafı + karartma (why-col foto-kartlarında kullanılır) */
        .system-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .system-card-overlay { position: absolute; inset: 0; background: rgba(10, 6, 24, 0.55); z-index: 0; }

        .why-col h3, .why-col p { position: relative; z-index: 1; }
        .why-col h3 { font-size: 1.8rem; color: #FFDE59; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px;}
        .why-col p { font-size: 1.12rem; color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin: 0; }

        /* --- 7. BÖLÜM 4: PROGRAMLARI İNCELE (BEYAZ - SOLDA YAZI/BUTON, SAĞDA GÖRSEL) --- */
        .program-cta-section { background: #ffffff; position: relative; }
        .pc-flex { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
        
        .pc-text { width: 50%; text-align: left; }
        .pc-title { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: #1e1e2c; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px;}
        .pc-title span { color: #FFDE59; }
        .pc-desc { font-size: 1.25rem; color: #555; line-height: 1.75; margin-bottom: 35px; }
        .pc-btn {
            display: inline-flex; align-items: center; gap: 15px; background: #FCA440;
            color: #fff; padding: 18px 40px; border-radius: 100px; font-weight: 800; font-size: 1.1rem;
            text-decoration: none; transition: var(--transition-fast);
            box-shadow: 0 15px 35px rgba(252, 164, 64, 0.28);
        }
        .pc-btn:hover { transform: translateY(-5px); background: #f39222; box-shadow: 0 20px 45px rgba(252, 164, 64, 0.36); }

        .pc-visual {
            --pc-img-w: min(100%, 480px);
            width: 50%; display: flex; justify-content: center; position: relative;
        }
        .pc-main-img { width: var(--pc-img-w); aspect-ratio: 10 / 7; border-radius: 28px; box-shadow: 0 30px 60px rgba(0,0,0,0.18); position: relative; z-index: 5; object-fit: cover; object-position: 42% center; display: block; }

        .pc-blob-bg {
            position: absolute;
            width: calc(var(--pc-img-w) * 0.8); aspect-ratio: 1 / 1;
            background: #FFDE59; border-radius: 34px;
            bottom: -8%; right: 2%; transform: rotate(8deg); z-index: 1;
            opacity: 0.5;
        }

        /* --- 8. BÖLÜM 5: SONUCU NETLEŞTİREN SİSTEM (KOYU & KARTLI & MARQUEE) --- */
        .system-section { background: linear-gradient(135deg, #11091d 0%, #190a2e 100%); color: #fff; position: relative; justify-content: center; }
        
        .system-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; max-width: 1250px; margin: 0 auto; z-index: 10; position: relative;}

        .system-card { width: calc(33.333% - 18px); min-width: 260px; padding: 0 40px; text-align: center; position: relative; }

        .system-card h3 { color: #CAA7F0; font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
        .system-card p { color: rgba(255, 255, 255, 0.9); font-size: 1.12rem; line-height: 1.65; margin: 0;}

        /* Sağdan Sola Sürekli İlerleyen Şerit (Marquee) */
        .tag-marquee-container { 
            width: 100%; overflow: hidden; margin-top: 50px; position: relative; z-index: 10;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .tag-marquee-track { display: flex; width: max-content; animation: scrollLeft 35s linear infinite; gap: 30px; }
        .tag-marquee-track:hover { animation-play-state: paused; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        .tag-pill {
            padding: 14px 35px; border-radius: 50px; background: rgba(255,255,255,0.05); color: #CAA7F0;
            font-weight: 800; font-size: 1.1rem; white-space: nowrap; border: 1px solid rgba(255,255,255,0.1);
        }

        /* --- 9. BÖLÜM 6: BÜLTEN & FOOTER BİRLEŞİK (BEYAZ) --- */
        .footer-integrated-section { background: #ffffff; justify-content: space-between; padding-top: 60px;}
        
        .footer-integrated-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; color: #1e1e2c; line-height: 1.1; 
            text-align: center; margin-bottom: 30px; letter-spacing: -1.5px;
        }
        .footer-integrated-title span { color: var(--primary-purple); display: block; margin-top: 5px;}

        /* Eğitim Fırsatlarını Kaçırmayın (Beyaz Bülten Kartı) */
        .newsletter-card-modern {
            background: #ffffff;
            border-radius: 35px;
            padding: 48px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }
        .nl-left h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 0;
        }
        .nl-right {
            flex: 0 0 55%;
        }
        .nl-right p {
            font-size: 1.18rem;
            color: #6b7280;
            line-height: 1.65;
            margin-bottom: 25px;
        }
        .nl-form {
            display: flex;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 50px;
            padding: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }
        .nl-form input {
            flex: 1;
            border: none;
            outline: none;
            padding: 0 25px;
            font-size: 1rem;
            font-family: inherit;
            background: transparent;
        }
        .nl-form button {
            background: #FCA440;
            color: #12072b;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: none;
        }
        .nl-form button:hover {
            box-shadow: 0 10px 20px rgba(252, 164, 64, 0.32);
            transform: translateY(-2px);
            background: #f39222;
            color: #12072b;
        }

        .way2go-footer { background: #ffffff; color: #111; text-align: center; padding: 30px 5% 20px; width: 100%; margin-top: auto;}
        .footer-logo { font-size: 2.5rem; font-weight: 900; text-decoration: none; color: #111; margin-bottom: 20px; display: inline-block;}
        .footer-logo span { color: var(--primary-purple); }
        .footer-links-area { display: flex; justify-content: center; gap: 80px; margin: 20px 0; }
        .footer-links-area ul { list-style: none; text-align: left; }
        .footer-links-area a { color: #555; text-decoration: none; line-height: 2.2; font-weight: 500; font-size: 1rem; transition: 0.3s;}
        .footer-links-area a:hover { color: var(--primary-purple); }
        .footer-copy { color: #999; font-size: 0.85rem; margin-top: 20px; }

        /* Mobil kaydırmalı kutu carousel'i (Neden Way2Go? / Sonucu Netleştiren Sistem) */
        .mobile-carousel-outer { display: flex; align-items: center; gap: 8px; }
        .mc-arrow {
            display: none;
            align-items: center; justify-content: center;
            width: 40px; height: 40px; min-width: 40px;
            border-radius: 50%; border: none;
            background: rgba(255, 255, 255, 0.15); color: #fff;
            font-size: 1rem; cursor: pointer; flex-shrink: 0;
            transition: 0.25s;
        }
        .mc-arrow:hover { background: var(--primary-lime); color: #12072b; }

        /* =========================================
           RESPONSIVE (MOBİL UYUM)
           ========================================= */
        @media (max-width: 1024px) {
            .pill-nav-container, .header-actions { display: none !important; }
            .bk-flex, .pc-flex, .newsletter-card-modern { flex-direction: column; text-align: center; justify-content: center; }
            .bk-visual, .pc-visual { display: none; }
            .bk-text, .pc-text, .vg-col { width: 100%; padding: 0; }
            .bk-text, .pc-text { text-align: center; }
            .vg-col:not(:last-child)::after { display: none; }
            .vg-col { padding: 25px 0; }
            .nl-form { flex-direction: column; }
            .nl-left h2 { font-size: 2rem; }
            .footer-integrated-title { font-size: 2rem; }

            .mc-arrow { display: flex; }

            .why-cols-wrap, .system-grid {
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                justify-content: flex-start;
                padding-bottom: 10px;
                scrollbar-width: none;
            }
            .why-cols-wrap::-webkit-scrollbar, .system-grid::-webkit-scrollbar { display: none; }

            .why-cols-wrap .why-col {
                flex: 0 0 85%;
                min-width: unset;
                scroll-snap-align: center;
            }
            .system-card {
                flex: 0 0 85%;
                width: 85%;
                min-width: unset;
                scroll-snap-align: center;
            }
        }

        @media (max-width: 640px) {
            .about-abd-page .footer-social-top {
                flex-wrap: nowrap !important;
                gap: 10px !important;
            }
            .about-abd-page .footer-social-top a {
                width: 44px !important;
                height: 44px !important;
                font-size: 1.1rem !important;
                flex-shrink: 0;
            }
        }

        /* --- ABD PAGE STYLE ADAPTATION FOR ABOUT PAGE --- */
        .about-abd-page .custom-logo-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .about-abd-page .custom-logo-icon {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .about-abd-page .custom-logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff !important;
            letter-spacing: -0.5px;
        }

        .about-abd-page .custom-logo-text span {
            color: #FCA440 !important;
        }

        .about-abd-page .thegem-header,
        .about-abd-page .thegem-header.scrolled-dark {
            background: rgba(18, 12, 33, 0.96) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22) !important;
            border-bottom: none !important;
            height: 90px;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            overflow: visible;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .about-abd-page .thegem-header:not(.scrolled):not(.scrolled-dark) {
            background: transparent !important;
            box-shadow: none !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .about-abd-page .thegem-header.scrolled {
            background: rgba(18, 7, 43, 0.94) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22) !important;
            height: 80px;
            border-bottom: none !important;
        }

        .about-abd-page .thegem-header-container {
            width: 100%;
            max-width: 1400px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .about-abd-page .pill-nav-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            margin: 0 auto;
            flex-wrap: nowrap;
        }

        .about-abd-page .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff !important;
            padding: 10px 22px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1;
            border: 1px solid rgba(255,255,255,0.18);
            transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
        }

        .about-abd-page .pill-nav-link:hover,
        .about-abd-page .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.18) !important;
            transform: translateY(-1px);
        }

        .about-abd-page .thegem-header.scrolled .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff !important;
            box-shadow: none;
        }

        .about-abd-page .thegem-header.scrolled .pill-nav-link:hover,
        .about-abd-page .thegem-header.scrolled .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.18) !important;
            color: #ffffff !important;
        }

        .about-abd-page .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-abd-page .portal-pill-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.5);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            background: transparent;
        }

        .about-abd-page .portal-pill-icon {
            font-size: 1.35rem;
            color: inherit;
        }

        .about-abd-page .thegem-header.scrolled .portal-pill-btn {
            color: #ffffff;
            border-color: #ffffff;
        }

        .about-abd-page .lang-toggle-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.5);
            background: transparent;
        }

        .about-abd-page .thegem-header.scrolled .lang-toggle-btn {
            border-color: #ffffff;
        }

        .about-abd-page .pill-outline-btn {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.5);
            color: #ffffff !important;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1;
        }

        .about-abd-page .thegem-header.scrolled .pill-outline-btn {
            color: #ffffff !important;
            border-color: rgba(255, 255, 255, 0.6);
            background: transparent;
        }

        .about-abd-page .thegem-header.scrolled .pill-outline-btn:hover {
            background: #ffffff;
            color: #111111 !important;
        }

        .about-abd-page .thegem-mobile-menu-btn {
            display: none !important;
        }

        .about-abd-page .hero-section::before {
            background: linear-gradient(135deg, rgba(18, 12, 34, 0.74) 0%, rgba(36, 16, 60, 0.54) 100%);
        }

        .about-abd-page .hero-content-wrap {
            max-width: 900px;
            text-align: center;
        }

        .about-abd-page .hero-title {
            color: #ffffff;
            padding-top: 0;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-abd-page .hero-stat-badge i {
            color: #6825DB;
        }

        .about-abd-page .hero-desc {
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .about-abd-page .biz-kimiz-section,
        .about-abd-page .program-cta-section,
        .about-abd-page .footer-integrated-section {
            background: transparent;
        }

        .about-abd-page .bk-bg-blob {
            background: radial-gradient(circle at 35% 35%, rgba(104, 37, 219, 0.38), rgba(18, 7, 43, 0.24));
        }

        .about-abd-page .bk-image-wrapper {
            border: 12px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 35px 70px rgba(0,0,0,0.28);
        }

        .about-abd-page .cd-badge-floating {
            background: var(--glass-card);
            border: 1px solid var(--border-glass);
            box-shadow: 0 15px 35px rgba(0,0,0,0.24);
            color: #ffffff;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .about-abd-page .badge-left .icon {
            background: rgba(252, 164, 64, 0.18);
            color: var(--accent-orange);
        }

        .about-abd-page .cd-avatars img {
            border: 2px solid #1a0b36;
        }

        .about-abd-page .cd-badge-text {
            color: #ffffff;
        }

        .about-abd-page .cd-badge-text span {
            color: var(--accent-orange);
        }

        .about-abd-page .bk-title,
        .about-abd-page .pc-title,
        .about-abd-page .footer-integrated-title,
        .about-abd-page .nl-left h2 {
            color: #ffffff;
        }

        .about-abd-page .bk-desc,
        .about-abd-page .pc-desc,
        .about-abd-page .nl-right p,
        .about-abd-page .footer-right-desc {
            color: var(--text-muted);
        }

        .about-abd-page .bk-title span {
            color: #7EC8F0;
        }

        .about-abd-page .footer-integrated-title span {
            color: var(--primary-lime);
        }

        .about-abd-page .pc-blob-bg {
            background: #FFDE59;
        }

        .about-abd-page .footer-integrated-section {
            justify-content: flex-start;
            align-items: stretch;
            padding: 72px 0 0;
            background: transparent;
        }

        .about-abd-page .footer-integrated-section > .section-container {
            width: min(1300px, calc(100% - 10%));
            max-width: 1300px;
            margin: 0 auto;
        }

        .about-abd-page .newsletter-card-modern {
            background: var(--glass-card);
            border: 1px solid var(--border-glass);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
        }

        .about-abd-page .nl-form {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: none;
        }

        .about-abd-page .nl-form input {
            color: #ffffff;
        }

        .about-abd-page .nl-form input::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .about-abd-page .nl-form button {
            background: #FCA440 !important;
            color: #12072b !important;
            border: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            box-shadow: none !important;
        }

        .about-abd-page .nl-form button:hover {
            background: #f39222 !important;
            color: #12072b !important;
            box-shadow: 0 10px 20px rgba(252, 164, 64, 0.32) !important;
            transform: translateY(-2px);
        }

        .about-abd-page .way2go-footer {
            background-color: #0f0b1d;
            padding: 96px 5% 40px;
            position: relative;
            color: rgba(255, 255, 255, 0.72);
            overflow: hidden;
            width: 100%;
            margin-top: -24px;
        }

        .about-abd-page .way2go-footer::before {
            content: "";
            position: absolute;
            top: 0;
            right: -10vw;
            width: 60vw;
            height: 70vh;
            background: radial-gradient(circle, rgba(104, 37, 219, 0.24) 0%, rgba(255, 255, 255, 0) 70%);
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
        }

        .about-abd-page .way2go-footer::after {
            content: "";
            position: absolute;
            bottom: -10vw;
            left: -10vw;
            width: 60vw;
            height: 70vh;
            background: radial-gradient(circle, rgba(255, 65, 129, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
        }

        .about-abd-page .footer-social-top,
        .about-abd-page .footer-main-content {
            position: relative;
            z-index: 1;
        }

        .about-abd-page .footer-social-top {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 35px;
            margin-bottom: 70px;
        }

        .about-abd-page .footer-social-top a {
            background-color: rgba(255, 255, 255, 0.08);
            color: #f8f5ff;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .about-abd-page .footer-social-top a:hover {
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
        }

        .about-abd-page .social-fb:hover { background-color: #1877F2; }
        .about-abd-page .social-x:hover { background-color: #000000; }
        .about-abd-page .social-yt:hover { background-color: #FF0000; }
        .about-abd-page .social-in:hover { background-color: #0A66C2; }
        .about-abd-page .social-ig:hover { background-color: #E1306C; }
        .about-abd-page .social-wa:hover { background-color: #25D366; }

        .about-abd-page .footer-main-content {
            display: grid;
            grid-template-columns: 1.2fr 2.5fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-abd-page .footer-logo-area {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .about-abd-page .footer-custom-logo-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 20px;
        }

        .about-abd-page .footer-custom-logo-icon {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .about-abd-page .footer-custom-logo-text {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .about-abd-page .footer-custom-logo-text span {
            color: #FCA440;
        }

        .about-abd-page .footer-app-name {
            font-weight: 700;
            color: rgba(255, 255, 255, 0.74);
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .about-abd-page .footer-links-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .about-abd-page .footer-links-area ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .about-abd-page .footer-links-area ul li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-abd-page .footer-links-area ul li::before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: #ff4181;
            border-radius: 50%;
        }

        .about-abd-page .footer-links-area ul li a {
            color: rgba(255,255,255,0.88);
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .about-abd-page .footer-links-area ul li a:hover {
            color: #FCA440;
        }

        .about-abd-page .footer-right-area {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .about-abd-page .footer-test-link {
            font-weight: 800;
            font-size: 1.1rem;
            color: #ffffff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
            transition: color 0.3s;
        }

        .about-abd-page .footer-test-link:hover {
            color: #FCA440;
        }

        .about-abd-page .footer-right-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.6;
            margin-bottom: 15px;
            margin-top: 0;
        }

        @media (max-width: 1024px) {
            .about-abd-page .thegem-mobile-menu-btn {
                display: block !important;
                justify-self: end;
                font-size: 1.55rem;
                color: #ffffff;
                cursor: pointer;
            }

        .about-abd-page .thegem-header.scrolled .thegem-mobile-menu-btn {
            color: #ffffff;
        }

            .about-abd-page .thegem-header-container {
                padding: 0 20px;
            }

            .about-abd-page .footer-main-content {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .about-abd-page .footer-logo-area,
            .about-abd-page .footer-right-area {
                align-items: center;
                text-align: center;
            }

            .about-abd-page .footer-links-area {
                grid-template-columns: 1fr 1fr;
            }

            .about-abd-page .footer-links-area ul {
                text-align: center;
            }

            .about-abd-page .footer-links-area ul li {
                justify-content: center;
            }
        }
        .about-abd-page .thegem-header {
            height: 90px !important;
            padding: 0 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent !important;
            border-bottom: none !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        .about-abd-page .thegem-header:not(.scrolled):not(.scrolled-dark) {
            background: transparent !important;
            box-shadow: none !important;
            border-bottom: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        .about-abd-page .thegem-header-container {
            width: 100%;
            max-width: 1400px !important;
            padding: 0 40px !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .about-abd-page .thegem-header.scrolled,
        .about-abd-page .thegem-header.scrolled-dark {
            height: 80px !important;
            background: rgba(18, 7, 43, 0.85) !important;
            backdrop-filter: blur(18px) !important;
            -webkit-backdrop-filter: blur(18px) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        }

        .about-abd-page .custom-logo-link {
            gap: 10px;
        }

        .about-abd-page .pill-nav-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 auto;
            justify-content: flex-start;
        }

        .about-abd-page .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.12) !important;
            border: 1px solid rgba(255, 255, 255, 0.18) !important;
            color: #ffffff !important;
            padding: 10px 22px !important;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 0.95rem;
            box-shadow: none !important;
            transform: none !important;
        }

        .about-abd-page .pill-nav-link:hover,
        .about-abd-page .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.25) !important;
            color: #ffffff !important;
            transform: none !important;
        }

        .about-abd-page .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-abd-page .portal-pill-btn {
            width: 45px;
            height: 45px;
            border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
            color: #ffffff !important;
            background: transparent !important;
        }

        .about-abd-page .portal-pill-icon {
            color: inherit;
        }

        .about-abd-page .lang-toggle-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
            background: transparent !important;
        }

        .about-abd-page .lang-toggle-btn:hover {
            background: rgba(255, 255, 255, 0.15) !important;
            transform: translateY(-2px);
        }

        .about-abd-page .pill-outline-btn {
            background: transparent !important;
            border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
            color: #ffffff !important;
            padding: 10px 25px !important;
            border-radius: 50px;
            font-weight: 600 !important;
        }

        .about-abd-page .portal-pill-btn:hover,
        .about-abd-page .pill-outline-btn:hover {
            background: #ffffff !important;
            color: #111111 !important;
            transform: translateY(-2px);
        }

        .about-abd-page .thegem-header.scrolled .custom-logo-text,
        .about-abd-page .thegem-header.scrolled .pill-nav-link,
        .about-abd-page .thegem-header.scrolled .portal-pill-btn,
        .about-abd-page .thegem-header.scrolled .pill-outline-btn,
        .about-abd-page .thegem-header.scrolled-dark .custom-logo-text,
        .about-abd-page .thegem-header.scrolled-dark .pill-nav-link,
        .about-abd-page .thegem-header.scrolled-dark .portal-pill-btn,
        .about-abd-page .thegem-header.scrolled-dark .pill-outline-btn,
        .about-abd-page .thegem-header.scrolled .thegem-mobile-menu-btn,
        .about-abd-page .thegem-header.scrolled-dark .thegem-mobile-menu-btn {
            color: #ffffff !important;
        }

        .about-abd-page .thegem-header.scrolled .pill-nav-link,
        .about-abd-page .thegem-header.scrolled-dark .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.12) !important;
            border-color: rgba(255, 255, 255, 0.18) !important;
        }

        .about-abd-page .thegem-header.scrolled .pill-nav-link:hover,
        .about-abd-page .thegem-header.scrolled .pill-nav-link.active,
        .about-abd-page .thegem-header.scrolled-dark .pill-nav-link:hover,
        .about-abd-page .thegem-header.scrolled-dark .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.25) !important;
            color: #ffffff !important;
        }

        .about-abd-page .thegem-header.scrolled .portal-pill-btn,
        .about-abd-page .thegem-header.scrolled .pill-outline-btn,
        .about-abd-page .thegem-header.scrolled-dark .portal-pill-btn,
        .about-abd-page .thegem-header.scrolled-dark .pill-outline-btn {
            border-color: rgba(255, 255, 255, 0.5) !important;
        }

        /* === Dropdown exam-icon-box: beyaz logo kutusu === */
        .about-abd-page .dropdown-link .exam-icon-box {
            width: 36px !important;
            height: 36px !important;
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            padding: 0 !important;
            flex-shrink: 0;
        }

        .about-abd-page .dropdown-link:has(.exam-icon-box) {
            font-size: 1.05rem;
            font-weight: 800;
            color: #ffffff;
            gap: 14px;
        }

        /* === Mobile menü exam-icon-box: beyaz arka plan için === */
        #mobileMenuOverlay .exam-icon-box {
            width: 24px !important;
            height: 24px !important;
            padding: 0 !important;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            flex-shrink: 0;
        }
        #mobileMenuOverlay .exam-icon-box img {
            width: 18px !important;
            height: 18px !important;
            object-fit: contain !important;
        }

        .why-col-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
            color: var(--primary-purple);
        }

        /* === Footer link ikonları rengi === */
        .about-abd-page .footer-links-area a i {
            color: #FCA440 !important;
            font-size: 0.88rem;
        }

        .about-abd-page .thegem-dropdown-menu {
            background: rgba(25, 10, 45, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
        }

        .about-abd-page .dropdown-header {
            color: #FCA440;
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .about-abd-page .dropdown-link {
            color: rgba(255, 255, 255, 0.78);
        }

        .about-abd-page .dropdown-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        @media (max-width: 1024px) {
            .about-abd-page .thegem-header-container {
                padding: 0 20px !important;
            }
        }
