/* =========================================================================
   1. GENEL DEĞİŞKENLER VE KOYU TEMA RESET
========================================================================= */
:root {
    --bg-dark-purple: #12072b;
    --card-glass: rgba(30, 15, 65, 0.65);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-muted: #c7bce0;
    --brand-orange: #FCA440;
    --brand-purple: #6825DB;
    --brand-green: #CBD83B;
}

* { box-sizing: border-box; font-family: 'Outfit', sans-serif; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body { 
    background-color: var(--bg-dark-purple); 
    background-image: radial-gradient(circle at 50% 5%, #2a1161 0%, var(--bg-dark-purple) 70%);
    background-attachment: fixed;
    color: var(--text-white); 
    overflow-x: hidden; 
}

img { max-width: 100%; height: auto; }

/* Ortak Cam Kart Sınıfı */
.glass-card {
    background: var(--card-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 20px;
}

/* Scroll Animasyon Sınıfı */
.scroll-reveal {
    opacity: 0;
    transform: translateY(110px) scale(0.9);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Yön bazlı giriş animasyonları: metin/görsel bulunduğu taraftan kayarak gelir */
.reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }
.reveal-left.is-visible, .reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Görsel üzerindeki yüzen kutucuklar: balon gibi patlayarak belirir */
@keyframes balloonPop {
    0% { opacity: 0; transform: scale(0.25); }
    55% { opacity: 1; transform: scale(1.18); }
    75% { transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}
.balloon-pop { opacity: 0; }
.balloon-pop.is-visible {
    opacity: 1;
    animation: balloonPop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* str-floating-badge'lerin kendi sürekli yüzme animasyonu var; patlama + yüzmeyi birlikte çalıştır */
.str-floating-badge.balloon-pop.is-visible {
    animation: balloonPop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, strBadgeFloat 3s ease-in-out infinite 0.1s;
}
.str-badge-left.balloon-pop.is-visible {
    animation: balloonPop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, strBadgeFloat 3s ease-in-out infinite 0.7s;
}

@media (max-width: 1100px) {
    .reveal-left, .reveal-right { transform: translateY(40px); }
    .reveal-left.is-visible, .reveal-right.is-visible { transform: translateY(0); }
}

/* Kartların sırayla belirmesi (blog kartları vb.) */
.pop-in {
    opacity: 0;
    transform: translateY(50px) scale(0.94);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pop-in.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.faq-blog-grid .faq-blog-card:nth-child(1) { transition-delay: 0s; }
.faq-blog-grid .faq-blog-card:nth-child(2) { transition-delay: 0.14s; }
.faq-blog-grid .faq-blog-card:nth-child(3) { transition-delay: 0.28s; }

/* Durağan dekoratif şekillere hafif sürekli hareket */
@keyframes blobBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.06); }
}
.adv-blob { animation: blobBreathe 5s ease-in-out infinite; }

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.6; }
}
.str-glow-orb { animation: orbPulse 6s ease-in-out infinite; }
.str-glow-orb.orb-yellow { animation-delay: 1.5s; }

@keyframes decorSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.dec-cross { animation: decorSpin 6s linear infinite; display: inline-block; }

@keyframes decorSway { 0%, 100% { transform: translateX(0) rotate(0deg); } 50% { transform: translateX(6px) rotate(4deg); } }
.dec-line { animation: decorSway 3.5s ease-in-out infinite; }

@keyframes decorPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.dec-circle { animation: decorPulse 3.2s ease-in-out infinite; }

@keyframes dotsPulse { 0%, 100% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.dots-pattern { animation: dotsPulse 3.2s ease-in-out infinite; }

@keyframes arrowsChase {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(8px); opacity: 1; }
}
.arrows-decor i { display: inline-block; animation: arrowsChase 1.4s ease-in-out infinite; }
.arrows-decor i:nth-child(2) { animation-delay: 0.15s; }
.arrows-decor i:nth-child(3) { animation-delay: 0.3s; }

/* =========================================================================
   2. HEADER & MOBİL MENÜ
========================================================================= */
.thegem-header { position: fixed; top: 0; left: 0; width: 100%; height: 90px; z-index: 9999; display: flex; align-items: center; justify-content: center; background: transparent; transition: all 0.4s ease; }
.thegem-header.scrolled { height: 80px; background: rgba(18, 7, 43, 0.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.thegem-header-container { width: 100%; max-width: 1400px; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }

.custom-logo-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.custom-logo-icon { height: 40px; }
.custom-logo-text { font-size: 1.6rem; font-weight: 800; color: #ffffff; letter-spacing: -0.5px; }
.custom-logo-text span { color: var(--brand-orange); }

.pill-nav-container { display: flex; align-items: center; gap: 8px; margin: 0 auto; }
.pill-nav-link { background-color: rgba(255,255,255,0.12); color: #ffffff; font-weight: 600; font-size: 0.95rem; padding: 10px 22px; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; white-space: nowrap; border: 1px solid rgba(255,255,255,0.18); }
.pill-nav-link:hover, .pill-nav-link.active { background: rgba(255,255,255,0.25); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.portal-pill-btn { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); color: #ffffff; text-decoration: none; transition: 0.3s; }
.portal-pill-btn:hover { background: #ffffff; color: var(--brand-purple); transform: translateY(-2px); }
.pill-outline-btn { background-color: transparent; color: #ffffff; border: 1.5px solid rgba(255,255,255,0.5); padding: 10px 25px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; white-space: nowrap; }
.pill-outline-btn:hover { background: #ffffff; color: #111; }
.lang-toggle-btn { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background-color: transparent; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%; padding: 0; cursor: pointer; transition: 0.3s; }
.lang-toggle-btn:hover { background: #ffffff; transform: translateY(-2px); }
.lang-toggle-btn .lang-flag-img { width: 26px; height: 18px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.thegem-mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: #ffffff; transition: color 0.3s ease; }

.thegem-nav-item-has-dropdown { position: relative; cursor: pointer; display: flex; align-items: center; height: 90px; }
.thegem-nav-item-has-dropdown > a { pointer-events: auto !important; position: relative; z-index: 2; cursor: pointer !important; }
.thegem-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: rgba(25, 10, 45, 0.95); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1050; padding: 20px; cursor: default; }
.thegem-nav-item-has-dropdown:hover .thegem-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-header { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 5px; font-size: 0.65rem; font-weight: 800; color: var(--brand-orange); text-transform: uppercase; letter-spacing: 1px; grid-column: 1 / -1; }
.dropdown-link { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: var(--text-muted); text-decoration: none; padding: 8px; border-radius: 8px; transition: all 0.2s ease; }
.dropdown-link:hover { background-color: rgba(255,255,255,0.1); color: #ffffff; }
.grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.dropdown-link img { width: 20px; height: 14px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
        .exam-icon-box {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .exam-icon-box img {
            width: 36px !important;
            height: 36px !important;
            max-width: none !important;
            object-fit: contain;
            border-radius: 0 !important;
        }

        .dropdown-link:has(.exam-icon-box) {
            font-size: 1.05rem;
            font-weight: 800;
            color: #ffffff;
            gap: 14px;
        }
.mob-nav-item-with-toggle { align-items: center; gap: 12px; }
.mob-nav-link { color: inherit; text-decoration: none; }
.mob-nav-link-main { flex: 1; }
.mob-nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: none; background: rgba(255,255,255,0.08); color: #fff; border-radius: 50%; cursor: pointer; transition: 0.25s; }
.mob-nav-toggle:hover { background: rgba(255,255,255,0.16); }
.mob-sub-menu a img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.mob-nav-item.open .fa-chevron-down { transform: rotate(180deg); }

/* Mobil Menü */
.mobile-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.4s; }
.mobile-backdrop.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--bg-dark-purple); border-left: 1px solid var(--border-glass); z-index: 2000; display: flex; flex-direction: column; transition: right 0.4s; overflow-y: auto; }
.mobile-menu-overlay.active { right: 0; }
.mob-header { display: flex; justify-content: space-between; padding: 25px 30px; border-bottom: 1px solid var(--border-glass); }
.close-mob-menu { font-size: 1.5rem; cursor: pointer; color: #fff; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.close-mob-menu:hover { background: #ef4444; color: #fff; }
.mob-menu-body { padding: 16px 26px; flex: 1; }
.mob-nav-item { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; color: #fff; padding: 18px 0; border-bottom: 1px solid var(--border-glass); text-decoration: none; transition: 0.3s;}
.mob-nav-item:hover { color: var(--brand-orange); }
.mob-sub-menu { display: none; flex-direction: column; background: rgba(0,0,0,0.3); border-radius: 12px; margin-top: 5px; padding: 10px 0; }
.mob-sub-menu.active { display: flex; }
.mob-sub-menu a { padding: 12px 20px; font-size: 1rem; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: 0.2s; }
.mob-sub-menu a:hover { color: #fff; }
.mob-menu-footer { padding: 30px; border-top: 1px solid var(--border-glass); }
.mob-primary-btn { display: block; width: 100%; text-align: center; background: var(--brand-purple); color: #fff; padding: 16px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.3s; }

/* =========================================================================
   3. HERO BANNER (SOL YAZI - SAĞ LAPTOP - GÖRSELDEKİ BİREBİR TASARIM)
========================================================================= */
.dark-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 2% 40px; /* Header boşluğu ve alt boşluk dengelendi */
    z-index: 1;
}

.particles-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.particle { position: absolute; background: #ffffff; border-radius: 50%; box-shadow: 0 0 8px rgba(255,255,255,0.9); animation: floatUp linear infinite; opacity: 0; }
@keyframes floatUp { 0% { transform: translateY(100vh) scale(0.5); opacity: 0; } 20% { opacity: 0.6; } 80% { opacity: 0.6; } 100% { transform: translateY(-20vh) scale(1.5); opacity: 0; } }

.glow-bg { position: absolute; border-radius: 50%; filter: blur(120px); z-index: -1; animation: drift 15s infinite alternate ease-in-out; pointer-events: none;}
.gb-1 { width: 500px; height: 500px; background: rgba(252, 164, 64, 0.1); top: -10%; left: -5%; }
.gb-2 { width: 400px; height: 400px; background: rgba(104, 37, 219, 0.2); bottom: 10%; right: -5%; animation-duration: 20s; }
@keyframes drift { 0% { transform: translate(0, 0); } 100% { transform: translate(30px, 40px); } }

.hero-split-container {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1300px; gap: 50px; z-index: 10;
}

.hero-left { flex: 1; max-width: 580px; }
.dark-hero-title { 
    font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 800; margin-top: 0; margin-bottom: 20px; 
    letter-spacing: -1px; line-height: 1.15; color: #ffffff; transform: translateX(-18px);
}
.dark-hero-title span { color: #ffffff; font-weight: 900; }
.dark-hero-title .brand-number { color: var(--brand-orange); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px; font-weight: 500; }

.hero-social-proof { display: flex; align-items: center; gap: 15px; }
.avatars-inline { display: flex; align-items: center; }
.avatars-inline img { width: 55px; height: 55px; border-radius: 50%; border: 3px solid #b08ced; margin-left: -15px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.avatars-inline img:first-child { margin-left: 0; }
.proof-text { display: flex; flex-direction: column; gap: 2px; }
.proof-text strong { font-size: 1.5rem; color: #ffffff; font-weight: 800; line-height: 1; }
.proof-text span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase;}

.hero-right { flex: 1.2; display: flex; justify-content: center; align-items: center; position: relative; z-index: 15; }

.mac-scene { width: 100%; max-width: 680px; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4)); position: relative; margin: 0 auto;}
.macbook { position: relative; display: flex; flex-direction: column; align-items: center; }
.mac-lid { width: 95%; background: #111; border-radius: 20px 20px 0 0; padding: 2% 2% 3%; position: relative; box-shadow: inset 0 0 0 2px #3a3a3a; z-index: 2; }
.mac-camera { position: absolute; top: 1.2%; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; background: #000; border: 1px solid #222; border-radius: 50%; }
.mac-screen { background: #ffffff; border-radius: 4px; aspect-ratio: 16 / 10; display: flex; flex-direction: column; overflow: hidden; position: relative; }

.mac-topbar { background: #f6f6f6; height: 32px; display: flex; align-items: center; padding: 0 15px; border-bottom: 1px solid #e5e5ea; position: relative; flex-shrink: 0; }
.mac-dots { display: flex; gap: 8px; }
.mac-dot { width: 11px; height: 11px; border-radius: 50%; }
.md-r { background: #ff5f56; } .md-y { background: #ffbd2e; } .md-g { background: #27c93f; }
.mac-url { position: absolute; left: 50%; transform: translateX(-50%); background: #e9e9eb; padding: 4px 30px; border-radius: 6px; font-size: 0.75rem; color: #333; font-weight: 500; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 8px; }

/* TEST İÇERİĞİ (MAC İÇİ) */
.mac-content-area { flex: 1; background: #ffffff; padding: 20px 30px; display: flex; flex-direction: column; text-align: left; }
.quiz-header-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f4f4f4; padding-bottom: 12px; margin-bottom: 20px; }
.quiz-ht-left h4 { font-size: 1.25rem; font-weight: 800; color: #111; margin: 0 0 5px; letter-spacing: -0.5px; }
.quiz-ht-left p { font-size: 0.85rem; color: #777; margin: 0; font-weight: 500; }
.student-badge { width: 36px; height: 36px; background: var(--brand-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; box-shadow: 0 4px 10px rgba(252, 164, 64, 0.4);}
.q-step { font-size: 1.15rem; font-weight: 800; color: #111; margin-bottom: 15px; display: block; letter-spacing: -0.5px; text-align: center; max-width: 500px; margin-left: auto; margin-right: auto;}
.q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 500px; margin: 0 auto; }

.q-btn { background: var(--brand-orange); border: 1px solid rgba(252, 164, 64, 0.96); padding: 14px; border-radius: 10px; font-weight: 700; color: var(--bg-dark-purple); cursor: pointer; transition: all 0.2s ease; font-size: 0.95rem; text-align: center; box-shadow: 0 8px 18px rgba(252,164,64,0.2);}
.q-btn:hover { border-color: #e59335; background: #e59335; box-shadow: 0 10px 22px rgba(229,147,53,0.26); color: var(--bg-dark-purple); transform: translateY(-2px);}

.quiz-result-actions { display:flex; gap:10px; justify-content: center; flex-wrap: wrap; }
.quiz-result-btn { padding: 12px 25px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; background: var(--brand-orange); color: var(--bg-dark-purple); box-shadow: 0 10px 22px rgba(252,164,64,0.18); transition: all 0.2s ease; }
.quiz-result-btn:hover { background: #e59335; color: var(--bg-dark-purple); transform: translateY(-2px); }
.quiz-result-btn.secondary { background: rgba(252, 164, 64, 0.82); }

.mac-base { height: 18px; background: linear-gradient(to bottom, #d8d9db 0%, #b8babc 40%, #7e8186 100%); border-radius: 2px 2px 18px 18px; position: relative; width: 106%; margin-left: -3%; z-index: 15; box-shadow: inset 0 1px 2px rgba(255,255,255,0.9), 0 15px 30px rgba(0,0,0,0.6); }
.mac-notch { width: 14%; height: 6px; background: #8e9095; border-radius: 0 0 6px 6px; margin: 0 auto; box-shadow: inset 0 2px 4px rgba(0,0,0,0.4); }

/* ----- LAPTOP ÜZERİ MİNİ MEMNUNİYET ROZETLERİ ----- */
.mini-badge {
    position: absolute;
    background: rgba(25, 10, 45, 0.95); 
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 14px;
    display: flex; align-items: center; gap: 12px; z-index: 20;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4); color: #ffffff;
}
.mb-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.mb-text { display: flex; flex-direction: column; text-align: left; gap: 2px;}
.mb-text strong { font-size: 0.95rem; font-weight: 800; line-height: 1; }
.mb-text span { font-size: 0.65rem; color: rgba(255,255,255,0.8); font-weight: 600; letter-spacing: 0.5px;}

.mb-top-right { top: 40px; right: -25px; padding: 8px 14px; }
.mb-top-right .mb-icon { background: var(--brand-orange); color: #111; }
.mb-top-right strong { color: var(--brand-orange); }

.mb-bottom-left { bottom: 70px; left: -35px; padding: 8px 14px; }
.mb-bottom-left .mb-icon { background: var(--brand-green); color: #111; }
.mb-bottom-left strong { color: var(--brand-green); }

/* DOCK (Arama çubuğu) */
.finder-dock-wrapper { width: 100%; max-width: 950px; z-index: 10; margin-top: 60px; }
.finder-dock { background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 16px; padding: 12px 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dock-form { display: flex; width: 100%; gap: 10px; align-items: center; }
.dock-group { flex: 1; position: relative; margin: 0; }
.dock-select { width: 100%; padding: 14px 18px; border-radius: 12px; background: rgba(255,255,255,0.98); border: none; font-weight: 600; font-size: 0.95rem; color: #111; appearance: none; outline: none; cursor: pointer; transition: 0.3s; }
.dock-select:hover, .dock-select:focus { background: #fff; box-shadow: 0 5px 15px rgba(255,255,255,0.2); }
.dock-group i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #666; pointer-events: none; font-size: 0.8rem;}

.dock-submit { flex: 0 0 auto; background: var(--brand-orange); color: #111; padding: 14px 30px; border-radius: 12px; border: none; font-weight: 800; font-size: 1rem; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.3s; margin: 0; }
.dock-submit:hover { background: #e59335; transform: translateY(-2px); box-shadow: 0 8px 15px rgba(252, 164, 64, 0.3); }

@media (max-width: 1100px) {
    .hero-split-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-left { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .dark-hero-title { transform: translateX(0); }
    .hero-social-proof { justify-content: center; }
    .mb-top-right { right: 0px; top: -30px; }
    .mb-bottom-left { left: 0px; bottom: 10px; }
    .finder-dock-wrapper { max-width: 100%; width: 90%; }
}
@media (max-width: 992px) {
    .pill-nav-container, .header-actions { display: none; }
    .thegem-mobile-menu-btn { display: block !important; color: #fff;}
    .thegem-header-container { padding: 0 20px; }
    .finder-dock { flex-direction: column; padding: 20px; }
    .dock-form { flex-direction: column; }
    .dock-group { width: 100%; }
    .dock-submit { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
    .dark-hero-section { padding-top: 130px; }
    .dark-hero-title { font-size: 2.2rem; }
    /* Mobilde laptop yerine tablet (iPad) görünümü */
    .mac-base, .mac-notch, .mac-topbar { display: none !important; }
    .mac-lid { width: 82%; margin: 0 auto; padding: 22px 10px 10px; border-radius: 26px; box-shadow: inset 0 0 0 2px #3a3a3a, 0 25px 45px rgba(0,0,0,0.35); }
    .mac-camera { top: 9px; width: 6px; height: 6px; }
    .finder-dock { padding: 20px 15px; }
    .mac-screen { border-radius: 16px; aspect-ratio: 3 / 4; min-height: unset; }
    .mac-content-area { padding: 15px 18px; overflow-y: auto; }
    .q-step { font-size: 0.95rem; margin-bottom: 10px; }
    .q-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .q-btn { padding: 10px 6px; font-size: 0.78rem; }
    .mini-badge { display: none; }
    .quiz-header-top { padding-bottom: 10px; margin-bottom: 15px; }
}

/* =========================================================================
   4. ÜNİVERSİTE LOGOLARI (Beyaz Zemin, Koyu Başlık, Hızlı Akan Logolar)
========================================================================= */
.university-partners { 
    background-color: transparent !important; 
    padding: 112px 0 118px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    overflow: hidden; 
}
.partners-title { 
    color:#ffffff !important; 
    font-size: clamp(2rem, 4vw, 2.8rem); 
    font-weight: 900; 
    text-align: center; 
    margin-bottom: 62px; 
    line-height: 1.2; 
    letter-spacing: -1px;
}
.partners-title .highlight-orange { color: var(--brand-orange); }
.marquee-container { 
    position: relative; 
    width: 100%; 
    max-width: 1600px; 
    overflow: hidden; 
    display: flex; 
    white-space: nowrap; /* Satır atlamayı önler */
}
/* Kenar karartmaları (Siyah temaya uygun) */
.marquee-container::before, .marquee-container::after { 
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none; 
}
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--bg-dark-purple) 0%, transparent 100%); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--bg-dark-purple) 0%, transparent 100%); }

.marquee-track { 
    display: inline-flex; 
    align-items: center; 
    gap: 112px; 
    animation: scrollMarquee 15s linear infinite; /* Hızlı ve sürekli akış */
}
.marquee-container:hover .marquee-track { animation-play-state: paused; }

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* İçerik JS ile ikiye katlandığı için %50 kayma kusursuz döngü yaratır */
}

/* 30 Dakikalık Ücretsiz Randevu tanıtım bölümü */
.randevu-promo-section { padding: 70px 5%; }
.rp-flex { display: flex; align-items: center; gap: 50px; max-width: 1100px; margin: 0 auto; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 32px; padding: 50px 60px; }
.rp-icon-circle { flex-shrink: 0; width: 110px; height: 110px; border-radius: 50%; background: rgba(252,164,64,0.14); color: #FCA440; font-size: 2.6rem; display: flex; align-items: center; justify-content: center; }
.rp-text { flex: 1; }
.rp-text .eyebrow { color: #FCA440; font-size: 0.9rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.rp-text .main-heading { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.5px; }
.rp-text .text-gradient { color: #CBD83B; }
.rp-text p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.6; margin-bottom: 26px; max-width: 640px; }
.rp-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.rp-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: #FCA440; color: #12072b; padding: 15px 30px; border-radius: 50px; font-weight: 800; font-size: 0.98rem; text-decoration: none; transition: 0.3s ease; }
.rp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(252,164,64,0.3); }
.rp-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: #ffffff; border: 1.5px solid rgba(255,255,255,0.3); padding: 15px 30px; border-radius: 50px; font-weight: 800; font-size: 0.98rem; cursor: pointer; transition: 0.3s ease; font-family: inherit; }
.rp-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
    .rp-flex { flex-direction: column; text-align: center; padding: 40px 26px; }
    .rp-text p { margin-left: auto; margin-right: auto; }
    .rp-actions { justify-content: center; }
}

.hero-booking-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.28); color: #ffffff; padding: 13px 24px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; font-family: inherit; cursor: pointer; transition: 0.3s ease; }
.hero-booking-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.hero-booking-btn i { color: #FCA440; }

/* Randevu popup modalı */
.booking-popup-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(8,5,20,0.7); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.booking-popup-modal.active { opacity: 1; visibility: visible; }
.booking-popup-card { position: relative; width: 100%; max-width: 760px; max-height: 88vh; overflow-y: auto; background: #1a0f33; border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; padding: 44px 40px; box-shadow: 0 40px 90px rgba(0,0,0,0.5); transform: translateY(20px); transition: transform 0.3s ease; }
.booking-popup-modal.active .booking-popup-card { transform: translateY(0); }
.booking-popup-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: none; color: #ffffff; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s ease; }
.booking-popup-close:hover { background: rgba(255,255,255,0.18); }
.booking-popup-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #ffffff; margin-bottom: 8px; padding-right: 40px; }
.booking-popup-title span { color: #FCA440; }
.booking-popup-desc { color: var(--text-muted); margin-bottom: 26px; }

@media (max-width: 640px) {
    .booking-popup-card { padding: 34px 20px; border-radius: 22px; }
}

/* Danışmanlarımızı Tanıyın bölümü */
.advisors-section { padding: 90px 5%; }
.adv-flex { display: flex; align-items: center; gap: 70px; max-width: 1300px; margin: 0 auto; }
.adv-visual {
    --adv-circle-size: clamp(260px, 30vw, 380px);
    position: relative; width: 42%; display: flex; justify-content: center;
}
.adv-blob {
    position: absolute;
    width: calc(var(--adv-circle-size) + 44px); height: calc(var(--adv-circle-size) + 44px);
    background: radial-gradient(circle at 35% 35%, rgba(252,164,64,0.45), rgba(252,164,64,0.06));
    border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
}
.adv-photo-wrap { position: relative; width: var(--adv-circle-size); height: var(--adv-circle-size); border-radius: 50%; overflow: hidden; border: 10px solid rgba(255,255,255,0.08); box-shadow: 0 30px 60px rgba(0,0,0,0.35); z-index: 3; }
.adv-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.adv-check-badge { position: absolute; z-index: 6; bottom: 6%; left: 10%; width: 52px; height: 52px; border-radius: 50%; background: #CBD83B; color: #12072b; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; border: 5px solid var(--bg-dark-purple); }

.adv-deco-shape { position: absolute; z-index: 2; pointer-events: none; }
.adv-shape-ring { width: 44px; height: 44px; top: 0%; right: 6%; border: 5px solid #CBD83B; border-radius: 50%; opacity: 0.85; }
.adv-shape-square { width: 24px; height: 24px; bottom: 10%; left: -4%; background: #FCA440; border-radius: 7px; transform: rotate(18deg); opacity: 0.9; }
.adv-shape-dots { width: 60px; height: 60px; top: 44%; left: -10%; background-image: radial-gradient(#ffffff 2.5px, transparent 2.5px); background-size: 14px 14px; opacity: 0.28; }

.adv-text { flex: 1; }
.adv-text .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #FCA440; font-size: 0.9rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.adv-text .main-heading { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.adv-text .text-gradient { color: #CBD83B; }
.adv-text > p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; max-width: 560px; }

.adv-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 32px; }
.adv-stat { display: flex; flex-direction: column; gap: 4px; padding-right: 36px; border-right: 1px solid rgba(255,255,255,0.15); }
.adv-stat:last-child { border-right: none; padding-right: 0; }
.adv-stat strong { font-size: 2rem; font-weight: 900; color: #ffffff; }
.adv-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; }

.adv-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #FCA440; color: #12072b; border: none; padding: 16px 32px; border-radius: 50px; font-weight: 800; font-size: 0.98rem; font-family: inherit; cursor: pointer; text-decoration: none; transition: 0.3s ease; }
.adv-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(252,164,64,0.3); }

@media (max-width: 1024px) {
    .adv-flex { flex-direction: column; text-align: center; gap: 50px; }
    .adv-visual { width: 100%; margin-bottom: 20px; }
    .adv-text > p { margin-left: auto; margin-right: auto; }
    .adv-stats { justify-content: center; }
}

@media (max-width: 640px) {
    .adv-check-badge { display: none; }
    .adv-stats { gap: 10px; flex-wrap: nowrap; justify-content: space-between; }
    .adv-stat { padding-right: 10px; flex: 1; min-width: 0; }
    .adv-stat strong { font-size: 1.4rem; }
    .adv-stat span { font-size: 0.68rem; }
}

/* Logoları İnvert (Beyaz) yap ve saydamlığı ayarla */
.uni-brand { 
    display: flex; 
    align-items: center; 
    gap: 18px; 
    opacity: 0.92; 
    transition: all 0.3s ease; 
    cursor: pointer; 
}
.uni-brand img { 
    height: 62px; 
    object-fit: contain; 
    filter: none;
}
.uni-brand:hover { 
    opacity: 1; 
    transform: scale(1.1); 
}
.uni-name { 
    font-size: 1.85rem; 
    font-weight: 800; 
    color: #ffffff; 
}

@media (max-width: 992px) {
    .university-partners { padding: 90px 0 96px; }
    .partners-title { margin-bottom: 50px; }
    .marquee-track { gap: 72px; }
    .uni-brand img { height: 48px; }
    .uni-name { font-size: 1.4rem; }
    .marquee-container::before, .marquee-container::after { width: 80px; }
}


/* =========================================================================
   5. SEVİYENİ KEŞFET BÖLÜMÜ (MOR TEMA)
========================================================================= */
.level-discover-section { display: flex; justify-content: center; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.level-container { width: 100%; max-width: 1300px; display: flex; align-items: center; justify-content: space-between; gap: 60px; margin: 0 auto; }
.level-visual-side { flex: 1; position: relative; display: flex; justify-content: center; }
.discover-circle-wrap { position: relative; width: 450px; height: 450px; border-radius: 50%; padding: 25px; background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 60%); border: 1px dashed rgba(255,255,255,0.15); z-index: 2; }
.discover-circle-wrap > img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.discover-float-1 { position: absolute; top: 35%; left: -60px; background: var(--card-glass); backdrop-filter: blur(15px); border: 1px solid var(--border-glass); padding: 15px 25px; border-radius: 16px; display: flex; align-items: center; gap: 15px; z-index: 10; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.discover-float-2 { position: absolute; bottom: -20px; right: 20px; background: var(--card-glass); backdrop-filter: blur(15px); border: 1px solid var(--border-glass); padding: 10px 20px; border-radius: 50px; display: flex; align-items: center; gap: 15px; z-index: 10; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }

.df-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.df-text strong { display: block; font-size: 1.05rem; color: #fff; font-weight: 700; margin-bottom: 3px; }
.df-text span { font-size: 0.85rem; color: #FCA440; font-weight: 700; }
.df-avatars { display: flex; align-items: center; }
.df-avatars img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #1a0b36; margin-left: -12px; }
.df-avatars img:first-child { margin-left: 0; }

.level-text-side { flex: 1; text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.level-text-side .eyebrow { color: #FCA440; font-size: 0.95rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.level-text-side .main-heading { font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1px; }
.level-text-side p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 35px; max-width: 550px; font-weight: 500; }

.btn-purple-gradient { background: linear-gradient(135deg, #f7b24d, #FCA440); color: #fff !important; padding: 16px 35px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; border: none; box-shadow: 0 10px 20px rgba(252, 164, 64, 0.3); }
.btn-purple-gradient:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(252, 164, 64, 0.45); }

.discover-decor { position: absolute; z-index: 1; opacity: 0.6; }
.dec-cross { top: 20%; left: -5%; font-size: 1.2rem; color: #666; }
.dec-circle { top: 5%; right: 10%; width: 20px; height: 20px; border: 3px solid #ff4181; border-radius: 50%; }
.dec-line { top: 35%; right: -15%; width: 45px; height: 5px; background: #FCA440; border-radius: 5px; }

@media (max-width: 1024px) {
    .level-container { flex-direction: column; text-align: center; gap: 50px; }
    .level-text-side { align-items: center; text-align: center; }
    .level-text-side p { max-width: 100%; }
    .discover-float-1 { left: 0; }
    .discover-float-2 { right: 0; bottom: -10px; }
}
@media (max-width: 576px) {
    .discover-circle-wrap { width: 300px; height: 300px; padding: 15px; }
    .discover-float-1 { transform: scale(0.8); left: -20px; }
    .discover-float-2 { transform: scale(0.8); right: -20px; }
    .level-text-side .main-heading { font-size: 2.2rem; }
}

/* =========================================================================
   YOL HARİTASI (ROADMAP) - DENGELİ BÜYÜTÜLMÜŞ VERSİYON
========================================================================= */
.roadmap-section { text-align: center; padding-top: 25px; padding-bottom: 25px; overflow: hidden; }

/* Başlık Alanı - Orta Karar Büyütüldü */
.roadmap-header { width: min(100%, 1300px); margin: 10px auto -100px; padding-left: 0; text-align: left; }
.roadmap-header h2 { font-size: 3.4rem; line-height: 1.1; font-weight: 900; color: #fff; margin-bottom: -50px; letter-spacing: -1px; transform: translateX(0); }
.roadmap-header h2 .brand-number { color: var(--brand-orange); }
.roadmap-header p { font-size: 1.1rem; line-height: 1.5; color: var(--text-muted); max-width: 650px; margin: 0 0 8px; }

/* Harita Alanı Ölçeği (Scale) %92 olarak ayarlandı */
.roadmap-canvas { position: relative; width: 100%; max-width: 1500px; margin: 0 auto -70px; aspect-ratio: 1400 / 780; transform: scale(0.92); transform-origin: top center;}
.roadmap-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.roadmap-svg path { stroke-width: 5px; }

/* Harita Altı Randevu Butonu */
.roadmap-cta-wrap { text-align: center; margin-top:-80px; position: relative; z-index: 6; }
.roadmap-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #FCA440; color: #12072b; padding: 17px 40px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; text-decoration: none; border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 22px rgba(252,164,64,0.28); }
.roadmap-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(252,164,64,0.36); }

/* Uçak İkonu (SVG içinde, animateMotion ile yol üzerinde hareket eder) */
.rocket-group { pointer-events: none; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.24)); }
.plane-icon { object-fit: contain; }
.plane-icon-base { filter: brightness(0) invert(1); }

/* Yol haritası arka planı: küçük, orantısız yıldızlar */
.roadmap-stars-layer { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.roadmap-star {
    position: absolute; border-radius: 50%; background: #ffffff;
    animation: roadmapStarDrift var(--star-dur, 4s) ease-in-out infinite;
    animation-delay: var(--star-delay, 0s);
}
@keyframes roadmapStarDrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: var(--star-base-opacity, 0.4); }
    50% { transform: translate(var(--star-dx, 6px), var(--star-dy, -8px)) scale(1.5); opacity: 1; }
}

/* Roket bir düğümün hizasından geçerken numaranın büyümesi */
@keyframes nodePulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.35); }
    100% { transform: scale(1); }
}
.node-circle.node-pulse { animation: nodePulse 0.6s ease; }

.road-node { position: absolute; z-index: 10; display: flex; flex-direction: column; align-items: center; transform: translate(-50%, -50%); }

/* Adım Yuvarlakları */
.node-circle { width: 68px; height: 68px; border-radius: 50%; background-color: var(--node-color); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; font-weight: 800; box-shadow: 0 8px 20px rgba(0,0,0,0.1); border: 4px solid var(--card-glass); z-index: 5; transition: 0.3s; }

/* İçerik Kutuları */
.node-content { position: absolute; left: 50%; width: 255px; padding: 18px; transform: translateX(calc(-50% + var(--card-offset, 0px))); transition: transform 0.3s ease, border-color 0.3s ease; z-index: 4; text-align: left; }
.content-up { bottom: calc(138px + var(--card-gap-up, 0px)); } 
.content-down { top: calc(138px + var(--card-gap-down, 0px)); }

.roadmap-card-shift-right { --card-offset: 65px; }
.roadmap-card-shift-left { --card-offset: -65px; }
.roadmap-card-shift-right-soft { --card-offset: 35px; }
.roadmap-card-shift-left-soft { --card-offset: -35px; }

/* Kutu İçi Yazı Fontları */
.node-content h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 7px; }
.node-content h4 span { color: var(--node-color); margin-right: 5px; }
.node-content p { font-size: 0.98rem; line-height: 1.48; margin: 0; }

.road-node:hover .node-circle { transform: scale(1.15); }
.road-node:hover .node-content { transform: translateX(calc(-50% + var(--card-offset, 0px))) translateY(-5px); border-color: var(--node-color) !important; }

/* Mobil Uyum (Mobil görünüm ideal boyutta olduğu için korundu) */
@media (max-width: 992px) {
    .roadmap-header { width: 100%; margin: 0 0 15px; padding-left: 0; text-align: center; }
    .roadmap-header h2 { font-size: 2.8rem; transform: translateX(0); }
    .roadmap-header p { margin: 0 auto 12px; font-size: 1.05rem; padding: 0 15px;}
    .roadmap-canvas { aspect-ratio: auto; display: flex; flex-direction: column; gap: 30px; padding-left: 20px; transform: scale(1); margin-bottom: 0;}
    .roadmap-canvas::before { content: ''; position: absolute; top: 0; bottom: 0; left: 45px; width: 4px; background: rgba(255,255,255,0.1); border-left: 2px dashed rgba(255,255,255,0.2); z-index: 1; }
    .roadmap-svg, .plane-icon-wrap { display: none !important; }
    .road-node { position: relative !important; top: auto !important; left: auto !important; width: 100%; display: flex; flex-direction: row; align-items: flex-start; gap: 20px; opacity: 1; animation: none; transform: none; }
    .node-circle { width: 55px; height: 55px; flex-shrink: 0; font-size: 1.3rem; margin-top: 5px; border-width: 3px;}
    .roadmap-cta-wrap { margin-top: 30px; }
    .node-content { position: relative !important; left: auto !important; top: auto !important; bottom: auto !important; width: 100%; max-width: none; padding: 25px; transform: none !important; }
}





@media (max-width: 992px) {
    .roadmap-header { width: 100%; margin: 0 0 10px; padding-left: 0; text-align: center; }
    .roadmap-header h2 { transform: translateX(0); margin-bottom: 12px !important; }
    .roadmap-header p { margin: 0 auto 12px; }
    .roadmap-canvas { aspect-ratio: auto; display: flex; flex-direction: column; gap: 30px; padding-left: 20px; transform: scale(1); margin-bottom: 0;}
    .roadmap-canvas::before { content: ''; position: absolute; top: 0; bottom: 0; left: 45px; width: 4px; background: rgba(255,255,255,0.1); border-left: 2px dashed rgba(255,255,255,0.2); z-index: 1; }
    .road-node { position: relative !important; top: auto !important; left: auto !important; width: 100%; display: flex; flex-direction: row; align-items: flex-start; gap: 20px; opacity: 1; animation: none; transform: none; }
    .node-circle { width: 50px; height: 50px; flex-shrink: 0; font-size: 1.2rem; margin-top: 5px; }
    .node-content { position: relative !important; left: auto !important; top: auto !important; bottom: auto !important; width: 100%; max-width: none; padding: 25px; transform: none !important; }
}

.faq-blog-section { padding: 34px 5% 30px; }
.faq-blog-head { text-align: center; margin-bottom: 26px; }
.faq-blog-head h2 { font-size: 2.9rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -1px; }
.faq-blog-head p { font-size: 1.08rem; line-height: 1.55; max-width: 640px; margin: 0 auto; }
.faq-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1300px; margin: 0 auto; }
.faq-blog-card { overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }
.faq-blog-card:hover { transform: translateY(-10px); }
.faq-blog-image-wrap { position: relative; height: 168px; overflow: hidden; }
.faq-blog-image { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.faq-blog-card:hover .faq-blog-image { transform: scale(1.08); }
.faq-blog-card h3 { padding: 24px 20px 10px; font-size: 1.22rem; font-weight: 700; line-height: 1.28; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 64px; }
.faq-blog-card p { padding: 0 20px 22px; font-size: 0.98rem; line-height: 1.55; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.faq-blog-cta { text-align: center; margin-top: 26px; }
.faq-blog-btn { background: #FCA440; border: 2px solid #FCA440; color: #ffffff; padding: 14px 34px; border-radius: 50px; font-weight: 700; font-size: 1.02rem; text-decoration: none; transition: 0.3s; display: inline-block; }
.faq-blog-btn:hover { background: #e59335; border-color: #e59335; color: #ffffff; }
@media (max-width: 992px) { .faq-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .faq-blog-grid { grid-template-columns: 1fr; } }

.premium-strategic-section { padding: 60px 0.5% !important; overflow: hidden; }
.str-container { width: 100%; max-width: 1350px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 90px; }
.str-content-side { flex: 1.1; }
.trust-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); color: #fff; padding: 9px 20px; border-radius: 50px; font-weight: 700; font-size: 0.98rem; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.2); }
.str-heading { font-size: clamp(2.2rem, 4.5vw, 4.6rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; overflow-wrap: break-word; word-break: break-word; }
.text-gradient-purple {
    display: inline-block;
    background: none;
    color: #CAA7F0;
}
.str-description { font-size: 1.22rem; line-height: 1.75; margin-bottom: 40px; max-width: 620px; font-weight: 500; }
.str-features { display: flex; flex-direction: column; gap: 15px; }
.str-feat-item { display: flex; align-items: center; gap: 15px; font-size: 1.18rem; font-weight: 700; color: #fff; }
.feat-icon { width: 30px; height: 30px; background: rgba(0,166,81,0.2); color: #00A651; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.str-visual-side { flex: 0.9; position: relative; display: flex; justify-content: center; align-items: center; min-height: 500px; }
.str-glow-orb { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(80px); z-index: 1; opacity: 0.4; }
.str-floating-badge { position: absolute; z-index: 7; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.88); border-radius: 18px; padding: 10px 14px; box-shadow: 0 12px 24px rgba(17, 9, 29, 0.1); color: #18141f; animation: strBadgeFloat 3s ease-in-out infinite; }
@keyframes strBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.str-badge-top { top: 34px; right: -16px; }
.str-badge-left { left: -34px; top: 33%; animation-delay: 0.6s; }
.str-badge-icon { width: 40px; height: 40px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex: 0 0 40px; }
.str-badge-top .str-badge-icon { background: #e8f2ff; color: #4f8ef7; }
.str-badge-left .str-badge-icon { background: #fff3e5; color: #f5a03a; }
.str-badge-copy { display: flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.1; }
.str-badge-copy strong { font-size: 0.98rem; font-weight: 900; color: #111; }
.str-badge-copy span { font-size: 0.8rem; font-weight: 700; color: #6d6679; margin-top: 2px; }
.str-glass-card { position: relative; z-index: 5; padding: 55px 45px; text-align: center; width: 100%; max-width: 480px; border-radius: 35px; }
.card-top-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #6825DB, #9061F9); color: white; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.str-glass-card h3 { font-size: 3.1rem; font-weight: 800; margin-bottom: 5px; }
.str-glass-card p { font-size: 1.18rem; font-weight: 600; margin-bottom: 30px; }
.rating-wrapper { padding: 8px 12px; border-radius: 14px; margin-bottom: 24px; }
.rating-wrapper .stars { color: #FCA440; font-size: 0.98rem; margin-bottom: 3px; letter-spacing: 1.5px; }
.btn-str-appoint { background: #FCA440; color: #111; border: none; width: 100%; padding: 19px; border-radius: 20px; font-size: 1.15rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px;}
.btn-str-appoint:hover { background: #e59335; transform: translateY(-3px); }
@media (max-width: 1024px) { .str-container { flex-direction: column; text-align: left; gap: 40px; } .str-content-side { width: 100%; } .str-features { display: inline-flex; text-align: left;} .str-floating-badge { position: static; margin: 0 auto 16px; } .str-visual-side { flex-direction: column; gap: 18px; min-height: auto; align-items: center; } }
@media (max-width: 640px) { .str-floating-badge { display: none !important; } }

.testimonials-section { padding: 60px 5%; }
.testimonials-heading { text-align: center; margin-bottom: 60px; }
.testimonials-kicker { color: #FCA440; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px;}
.testimonials-title { font-size: 3rem; font-weight: 900; letter-spacing: -1px; }
.testimonials-title span { color: #f2db49; }
.testimonials-slider { position: relative; max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.testimonials-viewport { overflow: hidden; width: 100%; padding: 10px 0; }
.testimonials-track { display: flex; gap: 20px; transition: transform 0.5s ease; align-items: stretch; }
.testimonial-card { min-width: calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); min-height: 340px; padding: 24px 28px; border-radius: 24px; transition: 0.3s; display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.78)); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.42); box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10); color: #111827; }
.tc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tc-avatar { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.tc-avatar-violet { background: #6825DB; } .tc-avatar-peach { background: #FCA440; color: #111;} .tc-avatar-rose { background: #f43f5e; } .tc-avatar-gold { background: #f59e0b; } .tc-avatar-mint { background: #14b8a6; } .tc-avatar-blue { background: #3b82f6; } .tc-avatar-green { background: #22c55e; } .tc-avatar-cyan { background: #06b6d4; } .tc-avatar-lilac { background: #a855f7; } .tc-avatar-orange { background: #fb7185; }
.tc-meta h4 { font-size: 1.08rem; font-weight: 800; margin: 0 0 4px; line-height: 1.25; }
.tc-meta p { font-size: 0.85rem; margin: 0; font-weight: 600; opacity: 0.8; color: #6b7280; }
.tc-bottom { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.tc-bottom p { flex: 1; min-height: 0; max-height: 170px; overflow-y: auto; padding-right: 8px; font-size: 1rem; line-height: 1.6; margin-bottom: 12px; font-weight: 500; color: #ffffff; }
.tc-bottom p::-webkit-scrollbar { width: 6px; }
.tc-bottom p::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.35); border-radius: 999px; }
.tc-bottom p::-webkit-scrollbar-track { background: rgba(17,24,39,0.08); border-radius: 999px; }
.tc-stars { color: #FCA440; font-size: 1rem; letter-spacing: 2px; margin-top: auto; }
.testimonial-arrow { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; color: #fff; font-size: 1.2rem; transition: 0.3s; flex-shrink: 0; }
.testimonial-arrow:hover { background: #6825DB; }
@media (max-width: 1024px) { .testimonial-card { min-width: calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); min-height: 276px; } }
@media (max-width: 768px) {
    .testimonials-slider {
        display: grid !important;
        grid-template-columns: 32px 1fr 32px;
        gap: 6px;
        max-width: 100%;
    }
    .testimonials-viewport { width: 100%; min-width: 0; overflow: hidden; }
    .testimonial-arrow { width: 32px; height: 32px; font-size: 0.85rem; flex-shrink: 0; }
    .testimonials-track { gap: 18px; }
    .testimonial-card { min-width: 100%; max-width: 100%; min-height: 270px; padding: 20px 18px; box-sizing: border-box; }
}

.faq-section { padding: 54px 5% 56px; overflow: hidden; }
.faq-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr); align-items: center; gap: 52px; }
.faq-content, .faq-visuals { min-width: 0; }
.faq-content { max-width: 580px; }
.faq-title { font-size: clamp(2.3rem, 4vw, 3.25rem); font-weight: 900; color: var(--brand-purple); line-height: 1.08; margin: 0 0 30px; letter-spacing: -1px; }
.accordion-wrapper { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.accordion-header { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 24px 0; cursor: pointer; background: transparent; transition: color 0.3s ease; }
.accordion-header h3 { margin: 0; font-size: 1.22rem; font-weight: 700; line-height: 1.45; color: #CAA7F0; transition: color 0.3s ease; }
.accordion-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; flex-shrink: 0; transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.accordion-item.active .accordion-header h3 { color: #CAA7F0; }
.accordion-item.active .accordion-icon { transform: rotate(45deg); background: rgba(202,167,240,0.14); border-color: rgba(202,167,240,0.4); color: #CAA7F0; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.accordion-body p { margin: 0; padding: 0 56px 22px 0; color: rgba(255,255,255,0.72); font-size: 1.08rem; line-height: 1.7; font-weight: 500; }
.faq-visuals { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.visual-bg-box { position: absolute; top: 50%; left: 50%; width: min(100%, 440px); aspect-ratio: 1 / 1; transform: translate(-50%, -50%); border-radius: 34px; background: linear-gradient(160deg, rgba(179,135,255,0.28), rgba(255,255,255,0.09)); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 28px 80px rgba(8, 5, 26, 0.36); }
.faq-main-image { position: relative; z-index: 4; width: min(100%, 460px); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 30px; box-shadow: 0 24px 70px rgba(0,0,0,0.36); }
.dots-pattern { position: absolute; width: 136px; height: 136px; background-image: radial-gradient(rgba(252,164,64,0.92) 16%, transparent 16%); background-size: 16px 16px; opacity: 0.8; z-index: 1; }
.dots-pattern.top-right { top: -10px; right: -12px; }
.dots-pattern.bottom-left { bottom: 26px; left: 6px; }
.arrows-decor { position: absolute; z-index: 5; display: flex; gap: 4px; color: #F9C775; font-size: 1.15rem; opacity: 0.88; }
.left-arrows { left: -28px; top: 60%; }
.right-arrows { right: -6px; bottom: 15%; }
@media (max-width: 1024px) {
    .faq-section { padding-top: 46px; }
    .faq-container { grid-template-columns: 1fr; gap: 36px; }
    .faq-content { max-width: none; }
    .faq-visuals { min-height: 460px; order: 2; }
}
@media (max-width: 768px) {
    .faq-title { margin-bottom: 24px; }
    .accordion-header { padding: 20px 0; }
    .accordion-header h3 { font-size: 1rem; }
    .accordion-body p { padding-right: 10px; font-size: 0.92rem; }
    .faq-visuals { min-height: 340px; }
    .visual-bg-box { display: none !important; }
    .faq-main-image { width: min(100%, 360px); border-radius: 24px; }
    .dots-pattern { width: 90px; height: 90px; background-size: 14px 14px; }
    .left-arrows { left: 0; top: 62%; }
    .right-arrows { right: 8px; bottom: 12%; }
}

.success-stories-section { position: relative; padding: 60px 5%; overflow: hidden; }
.bg-faint-circle { position: absolute; top: 2%; right: -14%; width: 840px; height: 840px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; z-index: 0; }
.bg-bottom-glow { position: absolute; bottom: -180px; right: -120px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(104, 37, 219, 0.2) 0%, rgba(255,255,255,0) 72%); z-index: 0; }
.ss-container { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.ss-top-area { display: flex; justify-content: space-between; align-items: center; gap: 48px; margin-bottom: 92px; }
.testimonial-slider-wrapper { flex: 1; max-width: 500px; position: relative; }
.quote-mark { font-family: Georgia, serif; font-size: 8rem; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; position: absolute; top: -42px; left: -20px; z-index: -1; }
.testimonial-content { position: relative; z-index: 5; }
.quote-text { font-size: 1.36rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 24px; min-height: 120px; }
.quote-author { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.quote-author-button { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 34px; border-radius: 999px; background: linear-gradient(135deg, #f7b24d, #FCA440); color: #111111; font-size: 1.1rem; font-weight: 800; text-decoration: none; box-shadow: 0 16px 36px rgba(252, 164, 64, 0.28); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.quote-author-button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(252, 164, 64, 0.34); }
.floating-logos-area { flex: 1.2; position: relative; min-height: 450px; display: flex; justify-content: center; align-items: center; }
.floating-title { font-size: clamp(3rem, 5vw, 4.4rem); font-weight: 900; color: #ffffff; text-align: center; line-height: 1.04; letter-spacing: -1.5px; position: relative; z-index: 10; }
.float-logo { position: absolute; background: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-radius: 50%; box-shadow: 0 18px 40px rgba(8, 5, 26, 0.18), inset 0 1px 0 rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; padding: 5px; transition: transform 0.3s ease; cursor: pointer; animation: floatLogoPulse 2.6s ease-in-out infinite; }
.float-logo:hover { transform: scale(1.08) !important; }
@keyframes floatLogoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.float-logo img { width: 88%; height: 88%; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 6px 12px rgba(255,255,255,0.12)); }
.fl-1 { top: 4%; left: 8%; animation-delay: 0s; width: 78px; height: 78px; }
.fl-2 { top: -2%; right: 14%; animation-delay: 1s; width: 90px; height: 90px; }
.fl-3 { top: 42%; left: -1%; animation-delay: 2s; width: 84px; height: 84px; }
.fl-4 { bottom: 8%; left: 14%; animation-delay: 0.5s; width: 80px; height: 80px; }
.fl-5 { top: 46%; right: -1%; animation-delay: 1.5s; width: 84px; height: 84px; }
.fl-6 { bottom: 10%; right: 12%; animation-delay: 2.2s; width: 80px; height: 80px; }
.fl-7 { top: 8%; left: 36%; animation-delay: 0.8s; width: 82px; height: 82px; }
.newsletter-card-modern {
    background: linear-gradient(180deg, rgba(24, 16, 44, 0.96) 0%, rgba(14, 10, 30, 0.98) 100%);
    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.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}

.nl-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}

.nl-right {
    flex: 0 0 55%;
}

.nl-right p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 25px;
}

.nl-form {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}

.nl-form input {
    flex: 1;
    border: none !important;
    outline: none;
    padding: 0 25px;
    font-size: 1rem;
    font-family: inherit;
    background: transparent !important;
    color: #ffffff !important;
}

.nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.nl-form button {
    background: #FCA440 !important;
    color: #12072b !important;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.nl-form button:hover {
    background: #f39222 !important;
    color: #12072b !important;
    box-shadow: 0 10px 20px rgba(252, 164, 64, 0.32);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .ss-top-area {
        flex-direction: column;
        text-align: center;
        gap: 80px;
        margin-bottom: 100px;
    }

    .quote-mark {
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-author {
        align-items: center;
    }

    .quote-text {
        min-height: auto;
    }

    .floating-logos-area {
        min-height: 350px;
        width: 100%;
    }

    .fp-section.success-stories-section .floating-logos-area {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        min-height: auto !important;
        padding: 10px 0 !important;
    }

    .fp-section.success-stories-section .floating-title {
        position: static !important;
        text-align: center !important;
        flex: 0 0 100% !important;
        margin-bottom: 6px;
    }

    .fp-section.success-stories-section .float-logo {
        position: static !important;
        width: 56px !important;
        height: 56px !important;
        animation: none !important;
    }

    .floating-title {
        font-size: 2.5rem;
    }

    .newsletter-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 36px 30px;
        gap: 30px;
    }

    .nl-left h2 {
        font-size: 2.2rem;
    }

    .nl-form {
        flex-direction: column;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 15px;
        background: transparent;
    }

    .nl-form input {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding: 18px 25px;
        border-radius: 50px;
    }

    .nl-form button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding-top: 48px;
    }

    .floating-logos-area {
        min-height: 300px;
    }

    .floating-title {
        font-size: 2.15rem;
    }

    .float-logo {
        padding: 6px;
    }

    .fl-1, .fl-4, .fl-6 {
        width: 66px;
        height: 66px;
    }

    .fl-2, .fl-3, .fl-5, .fl-7 {
        width: 72px;
        height: 72px;
    }

    .bg-faint-circle {
        width: 520px;
        height: 520px;
        right: -42%;
        top: 14%;
    }
}

.way2go-footer {
    background: transparent;
    padding: 120px 2% 40px;
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.way2go-footer::before {
    display: none;
}

.way2go-footer::after {
    display: none;
}

.footer-social-top,
.footer-main-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-social-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 70px;
}

.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;
}

.footer-social-top a:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.footer-social-top a.social-fb:hover { background-color: #1877F2; }
.footer-social-top a.social-x:hover  { background-color: #000000; }
.footer-social-top a.social-yt:hover { background-color: #FF0000; }
.footer-social-top a.social-in:hover { background-color: #0A66C2; }
.footer-social-top a.social-ig:hover { background-color: #E1306C; }
.footer-social-top a.social-wa:hover { background-color: #25D366; }

.footer-main-content {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
}

.footer-custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-custom-logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-custom-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-custom-logo-text span {
    color: #FCA440;
}

.footer-app-name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-links-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-area ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-area ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff4181;
    border-radius: 50%;
}

.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;
}

.footer-links-area ul li a:hover {
    color: #FCA440;
}

.footer-right-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-right-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 0;
}

.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;
}

.footer-test-link:hover {
    color: #FCA440;
}

.footer-contact-detail {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 40px auto 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #FCA440;
}

@media (max-width: 992px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer-logo-area {
        align-items: center;
    }

    .footer-links-area {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        gap: 14px;
    }
    .footer-links-area ul li {
        margin-bottom: 12px;
        gap: 7px;
    }
    .footer-links-area ul li a {
        font-size: 0.88rem;
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-social-top {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .footer-social-top a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
}

.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal.active { opacity: 1; pointer-events: auto; }
.modal-content { background: var(--card-glass); backdrop-filter: blur(15px); border: 1px solid var(--border-glass); border-radius: 20px; padding: 40px; max-width: 500px; width: 90%; position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); color: #fff;}
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #fff; }
.modal h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; color: #fff;}
.modal p { color: #ccc; margin-bottom: 30px; }
.modal form { display: flex; flex-direction: column; gap: 20px; }
.modal input { padding: 15px; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; font-size: 1rem; background: rgba(0,0,0,0.3); color: #fff;}
.modal button { background: #FCA440; color: #111; border: none; padding: 15px; border-radius: 10px; font-weight: 800; cursor: pointer; transition: 0.3s; font-size: 1.05rem;}
.modal button:hover { background: #fff; }

.thegem-header { height: 90px !important; padding: 0 !important; display: flex; align-items: center; justify-content: center; background: transparent !important; border-bottom: none !important; z-index: 9999 !important; pointer-events: auto !important; }
.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; }
.thegem-header-container { width: 100%; max-width: 1400px !important; padding: 0 40px !important; display: flex; justify-content: space-between; align-items: center; }
.thegem-header.scrolled, .thegem-header.scrolled-dark { height: 80px !important; background: rgba(18, 7, 43, 0.85) !important; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; }
.custom-logo-link { gap: 10px; }
.pill-nav-container { align-items: center; gap: 8px; margin: 0 auto; }
.pill-nav-link { background-color: rgba(255,255,255,0.12) !important; color: #ffffff !important; font-weight: 600 !important; font-size: 0.95rem; padding: 10px 22px !important; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; white-space: nowrap; border: 1px solid rgba(255,255,255,0.18) !important; box-shadow: none !important; }
.pill-nav-link:hover, .pill-nav-link.active { background: rgba(255,255,255,0.25) !important; color: #ffffff !important; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.portal-pill-btn { width: 45px !important; height: 45px !important; border: 1.5px solid rgba(255,255,255,0.5) !important; color: #ffffff !important; background: transparent !important; }
.portal-pill-btn i { color: #ffffff !important; }
.portal-pill-btn:hover { background: #ffffff !important; color: #111111 !important; transform: translateY(-2px); }
.pill-outline-btn { background-color: transparent !important; color: #ffffff !important; border: 1.5px solid rgba(255,255,255,0.5) !important; padding: 10px 25px !important; border-radius: 50px; font-weight: 600 !important; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; white-space: nowrap; }
.pill-outline-btn:hover { background: #ffffff !important; color: #111111 !important; }
.thegem-header.scrolled .custom-logo-text, .thegem-header.scrolled .pill-nav-link, .thegem-header.scrolled .portal-pill-btn, .thegem-header.scrolled .pill-outline-btn, .thegem-header.scrolled .lang-toggle-btn, .thegem-header.scrolled-dark .custom-logo-text, .thegem-header.scrolled-dark .pill-nav-link, .thegem-header.scrolled-dark .portal-pill-btn, .thegem-header.scrolled-dark .pill-outline-btn, .thegem-header.scrolled-dark .lang-toggle-btn, .thegem-header.scrolled .thegem-mobile-menu-btn, .thegem-header.scrolled-dark .thegem-mobile-menu-btn { color: #ffffff !important; }
.thegem-header.scrolled .pill-nav-link, .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; }
.thegem-header.scrolled .pill-nav-link:hover, .thegem-header.scrolled .pill-nav-link.active, .thegem-header.scrolled-dark .pill-nav-link:hover, .thegem-header.scrolled-dark .pill-nav-link.active { background: rgba(255,255,255,0.25) !important; color: #ffffff !important; }
.thegem-header.scrolled .portal-pill-btn, .thegem-header.scrolled .pill-outline-btn, .thegem-header.scrolled .lang-toggle-btn, .thegem-header.scrolled-dark .portal-pill-btn, .thegem-header.scrolled-dark .pill-outline-btn, .thegem-header.scrolled-dark .lang-toggle-btn { border-color: rgba(255,255,255,0.5) !important; }

/* EXAMP SAYFASI BUTON EŞİTLEME */
.mob-primary-btn,
.dock-submit,
.btn-purple-gradient,
.faq-blog-btn,
.btn-str-appoint,
.quote-author-button,
.nl-form button,
.modal button,
.testimonial-arrow {
    background: #FCA440 !important;
    color: var(--bg-dark-purple) !important;
    border-color: #FCA440 !important;
    box-shadow: 0 10px 22px rgba(252, 164, 64, 0.22) !important;
}

.testimonial-arrow i {
    color: var(--bg-dark-purple) !important;
}

.mob-primary-btn:hover,
.dock-submit:hover,
.btn-purple-gradient:hover,
.faq-blog-btn:hover,
.btn-str-appoint:hover,
.quote-author-button:hover,
.nl-form button:hover,
.modal button:hover,
.testimonial-arrow:hover {
    background: #e59335 !important;
    color: var(--bg-dark-purple) !important;
    border-color: #e59335 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(229, 147, 53, 0.28) !important;
}

.testimonial-arrow:hover i {
    color: var(--bg-dark-purple) !important;
}

.mob-primary-btn,
.dock-submit,
.btn-purple-gradient,
.faq-blog-btn,
.quote-author-button,
.nl-form button {
    font-weight: 800 !important;
}

/* Laptop içi quiz eski görünüm */
.q-btn {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    color: #333333 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.q-btn:hover {
    background: #ffffff !important;
    border-color: #6825DB !important;
    color: #6825DB !important;
    box-shadow: 0 5px 15px rgba(104, 37, 219, 0.1) !important;
    transform: translateY(-2px);
}

.quiz-result-btn {
    background: #6825DB !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(104, 37, 219, 0.18) !important;
}

.quiz-result-btn:hover {
    background: #5b20bf !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(91, 32, 191, 0.2) !important;
    transform: translateY(-2px);
}

.quiz-result-btn.secondary {
    background: #f0f0f0 !important;
    color: #333333 !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: none !important;
}

.quiz-result-btn.secondary:hover {
    background: #e7e7e7 !important;
    color: #333333 !important;
    border-color: #d9d9d9 !important;
    box-shadow: none !important;
}

/* =========================================================================
   FULLPAGE SCROLL SİSTEMİ
========================================================================= */
html { overflow-y: auto; scroll-behavior: smooth; }
body { overflow-x: hidden; height: auto; width: 100vw; position: static; }

#fullpage-wrapper {
    width: 100vw;
    height: auto;
    transform: none !important;
    transition: none;
    will-change: auto;
    position: relative;
    z-index: 1;
}

.fp-section {
    height: auto;
    min-height: 100svh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: visible;
    overflow-x: hidden;
}

/* Tüm sectionlar: normal kaydırma, aşağı indikçe animasyonla açılır */
.fp-section:not(.dark-hero-section):not(.fp-footer-section) {
    overflow: visible;
    overflow-x: hidden;
    justify-content: flex-start;
    padding: 100px 2% 30px;
}

/* Hero section padding ayarı */
.fp-section.dark-hero-section {
    padding: 100px 2% 30px;
    justify-content: center;
    min-height: 100svh;
    overflow: hidden;
}

/* Roadmap section: kaydırma yok, başlık+harita birlikte ortada */
.fp-section.roadmap-section {
    justify-content: center !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    padding-top: 25px !important;
}
.fp-section.roadmap-section::-webkit-scrollbar {
    display: none !important;
}

/* Success stories: 100svh yüksekliğine zorlanmasın, içeriği kadar yer kaplasın (viewport yüksekliği değiştikçe kaymaması için).
   overflow-x:hidden + overflow-y:visible kombinasyonu tarayıcıda otomatik olarak overflow-y:auto'ya çevrilip
   section'ın kendi içinde dikey kaydırılabilir olmasına yol açıyordu; overflow-x:clip bu dönüşümü tetiklemez. */
.fp-section.success-stories-section {
    min-height: auto !important;
    height: auto !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
}

/* Success stories: newsletter gidince ss-top-area'yı ortala */
.fp-section.success-stories-section .ss-top-area {
    margin-bottom: 0 !important;
}

/* =========================================================================
   SUCCESS STORIES: TESTİMONİAL + IVY LEAGUE - LOGO DAĞILIMI
========================================================================= */

/* Testimonial: 3 satır + tırnak ve "Daha Fazla" sola kaydır */
.fp-section.success-stories-section .testimonial-slider-wrapper {
    flex: 0 0 720px !important;
    width: 720px !important;
    max-width: 720px !important;
    margin-left: -260px;
}


/* Sağ alan: başlık sağa yaslansın */
.fp-section.success-stories-section .floating-logos-area {
    justify-content: flex-end !important;
    align-items: center !important;
}

/* Başlık sağa yaslı, arka plan yok */
.fp-section.success-stories-section .floating-title {
    text-align: right !important;
    position: relative;
    z-index: 10;
    background: none !important;
    flex-shrink: 0;
}

/* Logo konumları — container'ın dört köşesine ve kenarlarına dağıtılmış */
.fp-section.success-stories-section .fl-1 { top: 7% !important;     left: -5% !important;   right: auto !important; bottom: auto !important; }
.fp-section.success-stories-section .fl-2 { top: 8% !important;     left: 38% !important;  right: auto !important; bottom: auto !important; }
.fp-section.success-stories-section .fl-3 { top: 7% !important;     right: -10% !important;  left: auto !important;  bottom: auto !important; }
.fp-section.success-stories-section .fl-4 { top: 44% !important;    left: -45% !important;  right: auto !important; bottom: auto !important; }
.fp-section.success-stories-section .fl-5 { top: 44% !important;    right: -45% !important; left: auto !important;  bottom: auto !important; }
.fp-section.success-stories-section .fl-6 { bottom: 4% !important;  left: 10% !important;   right: auto !important; top: auto !important;    }
.fp-section.success-stories-section .fl-7 { bottom: 4% !important;  right: -10% !important;  left: auto !important;  top: auto !important;    }

/* Level discover: yatayda orta hizalama için 0 5% padding */
.fp-section.level-discover-section {
    padding: 100px 5% 30px;
}

/* University partners: daha az padding */
.fp-section.university-partners {
    padding: 100px 0 8px;
}

/* Footer section - üstten başlasın, tam genişlik, ortalanmasın */
.fp-footer-section {
    justify-content: flex-start !important;
    align-items: stretch !important;
    overflow-y: auto !important;
    padding: 0 !important;
    display: block !important;
}

.fp-footer-section .way2go-footer {
    width: 100% !important;
    padding-top: 40px !important;
    flex-shrink: 0;
}

/* Roadmap header büyük margin'ini fullpage modunda sıfırla */
.fp-section.roadmap-section .roadmap-header {
    margin: 0 auto 4px !important;
    width: 100%;
    text-align: center;
}

.fp-section.roadmap-section .roadmap-header h2 {
    transform: translateX(0) !important;
    font-size: 3.2rem !important;
}

/* Başlık ile canvas arasında boşluk kalmasın, ölçek küçültüldü */
.fp-section.roadmap-section .roadmap-canvas {
    margin-top: -70px !important;
    transform: scale(0.88) !important;
    transform-origin: top center !important;
}

/* =====================================================================
   MOBİL RESPONSIVE (≤768px) — FULLPAGE SCROLL DEVRE DIŞI
   Masaüstü tasarımına dokunulmaz; mobilde normal sayfa kaydırması.
   ===================================================================== */
@media (max-width: 768px) {

    /* --- Fullpage scroll kapat --- */
    html { overflow: auto !important; scroll-behavior: smooth !important; }
    body { position: static !important; height: auto !important; width: 100% !important;
           overflow-y: auto !important; overflow-x: hidden !important; }
    #fullpage-wrapper { transform: none !important; transition: none !important;
                        height: auto !important; will-change: auto !important; }

    /* Her section kendi içeriğine göre yükseklik alsın */
    .fp-section {
        height: auto !important;
        min-height: 100svh;
        overflow: visible !important;
        overflow-x: hidden !important;
    }
    .fp-section:not(.dark-hero-section):not(.fp-footer-section) {
        padding: 90px 5% 50px !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        justify-content: flex-start !important;
    }
    .fp-section.dark-hero-section {
        padding: 90px 5% 50px !important;
        min-height: 100svh;
        overflow: hidden !important;
    }
    .fp-section.roadmap-section {
        overflow: visible !important;
        overflow-x: hidden !important;
    }
    .fp-footer-section {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    /* --- Hero section --- */
    .hero-split-container { flex-direction: column; gap: 30px; }
    .hero-right { width: 100%; margin-top: 10px; }
    .mac-scene { max-width: 420px; }
    .hero-left { max-width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .dark-hero-title { font-size: 2rem !important; transform: none !important; }
    .hero-desc { font-size: 1rem; margin-bottom: 28px; }
    .hero-social-proof { justify-content: center; }
    .finder-dock-wrapper { margin-top: 30px !important; width: 100%; max-width: 100%; }
    .finder-dock { padding: 16px !important; }
    .dock-form { flex-direction: column; gap: 10px; }
    .dock-group { width: 100%; }
    .dock-submit { width: 100%; justify-content: center; }

    /* --- University partners --- */
    .fp-section.university-partners { padding: 60px 0 !important; min-height: unset !important; }
    .partners-title { font-size: 1.8rem; margin-bottom: 35px; }

    /* --- Level discover --- */
    .fp-section.level-discover-section { padding: 90px 5% 50px !important; }

    /* --- Roadmap section --- */
    .fp-section.roadmap-section .roadmap-canvas {
        transform: none !important;
        margin-top: 10px !important;
    }
    .fp-section.roadmap-section .roadmap-header h2 {
        font-size: 2rem !important;
    }

    /* --- Success stories --- */
    .fp-section.success-stories-section { padding: 90px 5% 50px !important; }
    .fp-section.success-stories-section .testimonial-slider-wrapper {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    .fp-section.success-stories-section .floating-logos-area {
        min-height: auto !important;
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 10px 0 !important;
    }
    .fp-section.success-stories-section .floating-title {
        position: static !important;
        text-align: center !important;
        flex: 0 0 100% !important;
        margin-bottom: 6px;
    }
    .fp-section.success-stories-section .float-logo {
        position: static !important;
        width: 56px !important;
        height: 56px !important;
        animation: none !important;
    }

    /* --- Diğer sectionlar (blog, strategic, faq, testimonials) --- */
    .fp-section.faq-blog-section,
    .fp-section.premium-strategic-section,
    .fp-section.faq-section,
    .fp-section.testimonials-section { padding: 90px 5% 50px !important; }

    /* --- Footer --- */
    .fp-footer-section .way2go-footer { padding-top: 60px !important; }
}

/* =====================================================================
   KÜÇÜK MOBİL (≤480px)
   ===================================================================== */
@media (max-width: 480px) {
    .dark-hero-title { font-size: 1.75rem !important; }
    .hero-desc { font-size: 0.95rem; }
    .dock-submit { font-size: 0.9rem; padding: 12px 18px; }
    .floating-title { font-size: 1.8rem !important; }
    .partners-title { font-size: 1.6rem; }
    .roadmap-header h2 { font-size: 1.75rem !important; }
}

/* =====================================================================
   TABLET DÜZENLEME (769px–1024px) — Fullpage scroll devam eder
   ===================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .fp-section:not(.dark-hero-section):not(.fp-footer-section) {
        padding: 100px 2% 30px;
    }
    .dark-hero-title { font-size: clamp(2.2rem, 3.5vw, 3.5rem); }
    .fp-section.roadmap-section .roadmap-canvas {
        transform: scale(0.75) !important;
        margin-top: -90px !important;
    }
    .fp-section.success-stories-section .testimonial-slider-wrapper {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: 480px !important;
        margin-left: 0 !important;
    }
    .fp-section.success-stories-section .floating-logos-area {
        min-height: auto !important;
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 10px 0 !important;
    }
    .fp-section.success-stories-section .floating-title {
        position: static !important;
        text-align: center !important;
        flex: 0 0 100% !important;
        margin-bottom: 6px;
    }
    .fp-section.success-stories-section .float-logo {
        position: static !important;
        width: 60px !important;
        height: 60px !important;
        animation: none !important;
    }
}
