/* ========================================= */
/* 1. CORE VARIABLES & THEME ENGINE          */
/* ========================================= */
:root {
    --bg-deep: #030014;
    --bg-card: rgba(17, 25, 40, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --primary: #7000ff;
    --primary-glow: rgba(112, 0, 255, 0.5);
    --secondary: #00c6ff;
    --accent: #ff0055;
    
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    
    --border-light: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    
    --shadow-card: none;
}



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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    width: 100%;
}

body {
    background-color: var(--bg-deep);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden; 
    width: 100%;
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(var(--primary), var(--secondary)); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* Selection */
::selection { background: var(--accent); color: #fff; }

/* ========================================= */
/* 2. BLUR WRAPPER                           */
/* ========================================= */
.blur-wrapper {
    opacity: 0;
    transition: opacity 0.8s ease-out;
    overflow-x: hidden;
}

.blur-wrapper.loaded {
    opacity: 1;
}

/* ========================================= */
/* 3. CANVAS BACKGROUND                      */
/* ========================================= */
#canvas-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; opacity: 0.6; pointer-events: none;
}

/* ========================================= */
/* 3B. MOVING CLOUDS                        */
/* ========================================= */
.clouds-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none; overflow: hidden;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: floatCloud linear infinite;
}

@keyframes floatCloud {
    0% { transform: translateX(-20vw) translateY(0px); }
    25% { transform: translateX(30vw) translateY(-30px); }
    50% { transform: translateX(60vw) translateY(10px); }
    75% { transform: translateX(90vw) translateY(-20px); }
    100% { transform: translateX(120vw) translateY(0px); }
}

/* ========================================= */
/* 4. UTILITY CLASSES & ANIMATIONS           */
/* ========================================= */
.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 24px; 
    position: relative; 
    width: 100%; 
}



.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding { padding: 80px 0; }

.scramble-text { display: inline-block; min-width: 100px; }
@keyframes blink { 50% { opacity: 0; } }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 10px var(--secondary); }
}

.reveal-up {
    opacity: 0; transform: translateY(50px);
    transition: all 1s var(--ease-out);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* ========================================= */
/* 5. PRELOADER                              */
/* ========================================= */
.preloader {
    position: fixed; inset: 0; background: var(--bg-deep); z-index: 99999;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.loader-bar {
    width: 200px; height: 2px; background: rgba(255,255,255,0.1);
    border-radius: 4px; overflow: hidden; position: relative; margin-top: 20px;
}
.loader-progress {
    position: absolute; left: 0; top: 0; height: 100%; width: 0%;
    background: var(--secondary); transition: width 0.1s linear;
}
.preloader-text {
    font-family: var(--font-heading); font-size: 2rem; letter-spacing: 5px;
    font-weight: 700; color: var(--text-main); text-transform: uppercase;
    text-align: center;
}
.preloader-counter { font-family: monospace; color: var(--secondary); margin-top: 10px; }

/* ========================================= */
/* 6. NAVIGATION                             */
/* ========================================= */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 25px 0; transition: all 0.4s var(--ease-out);
    background: rgba(3, 0, 20, 0.65);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid var(--border-light);
}
.navbar.scrolled {
    padding: 15px 0; 
    background: rgba(3, 0, 20, 0.85);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid var(--border-light);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
    color: var(--text-main); text-decoration: none; position: relative; z-index: 1001;
    display: inline-flex; align-items: center;
    padding-top: 4px;
}
.logo span { color: var(--secondary); }

.nav-links { display: flex; gap: 40px; align-items: center; list-style: none; margin: 0; padding: 0;}
.nav-link {
    color: var(--text-muted); text-decoration: none; font-weight: 600;
    font-size: 1.1rem; transition: color 0.3s; position: relative;
    padding: 5px 0;
}
.nav-link::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--secondary); transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text-main); }
.nav-link:hover::before { width: 100%; }
.nav-arrow { display: none; }
.footer-arrow {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 700;
    width: 20px;
    display: inline-block;
}

.btn-magnetic {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px;
    background: transparent; color: var(--text-main); border: 1px solid var(--border-light);
    font-weight: 600; text-decoration: none; position: relative; overflow: hidden;
    transition: all 0.3s var(--ease-out); cursor: pointer; z-index: 1;
    height: 50px; white-space: nowrap;
}
.btn-magnetic::after {
    content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: -1; transform: scaleX(0); transform-origin: right;
    transition: transform 0.5s var(--ease-out);
}
.btn-magnetic:hover { border-color: transparent; box-shadow: 0 0 30px rgba(112,0,255,0.4); color: #fff; text-decoration: none !important; }
.btn-magnetic:hover::after { transform: scaleX(1); transform-origin: left; }

.hamburger {
    display: none; cursor: pointer; z-index: 9999;
    width: 28px; padding: 5px 0;
    transform: translateX(50px); opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    margin-left: auto;
}
.hamburger.show {
    transform: translateX(0); opacity: 1;
}
.bar {
    display: block; width: 100%; height: 3px;
    background: var(--text-main); border-radius: 2px;
    margin: 5px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.bar:nth-child(1) { transition-delay: 1s; }
.bar:nth-child(2) { transition-delay: 0.9s; }
.bar:nth-child(3) { transition-delay: 0.8s; }

/* X wrap - slides from right */
.x-wrap {
    position: absolute; left: 0; top: 0; width: 100%; height: 100%;
    transform: translateX(40px); opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition-delay: 0.3s;
}
.x-line {
    position: absolute; left: 0; top: 50%; width: 100%; height: 3px;
    margin-top: -1.5px; background: var(--text-main); border-radius: 2px;
    transition: transform 0.3s ease;
}
.x-top { transform: rotate(0deg); }
.x-right { transform: rotate(0deg); }

.hamburger.active .bar:nth-child(1) {
    transform: translateX(50px); opacity: 0; transition-delay: 0s;
}
.hamburger.active .bar:nth-child(2) {
    transform: translateX(70px); opacity: 0; transition-delay: 0.1s;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateX(90px); opacity: 0; transition-delay: 0.2s;
}
.hamburger.active .x-wrap {
    transform: translateX(0); opacity: 1; transition-delay: 0.3s;
}
.hamburger.active .x-top {
    transform: rotate(45deg); transition-delay: 0.6s;
}
.hamburger.active .x-right {
    transform: rotate(-45deg); transition-delay: 0.6s;
}

/* Mobile fullscreen background overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(3, 0, 20, 0.65);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
    z-index: 999;
    pointer-events: none;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-overlay.active {
    right: 0;
}

/* ========================================= */
/* 7. HERO SECTION                           */
/* ========================================= */
.hero {
    height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding-top: 80px;
}
.hero-content { text-align: left; max-width: 1000px; z-index: 2; width: 100%;}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-radius: 100px;
    background: var(--bg-glass); border: 1px solid var(--border-light);
    font-size: 0.85rem; color: var(--secondary); margin-bottom: 30px;
    backdrop-filter: blur(5px);
}
.hero-badge i { font-size: 0.7rem; animation: pulse-glow 2s infinite; border-radius: 50%; }

.hero-title {
    font-family: var(--font-heading); 
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    line-height: 1.1; font-weight: 700; margin-bottom: 25px; letter-spacing: -2px;
}
.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem); 
    color: var(--text-muted); max-width: 600px; margin: 0 0 40px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 20px; justify-content: flex-start; flex-wrap: wrap; }
.btn-primary { background: var(--text-main); color: var(--bg-deep); border: none; }
.btn-primary:hover { color: #fff; }

/* ========================================= */
/* 8. MARQUEE & SERVICES & PROCESS & STATS   */
/* ========================================= */
.marquee-section {
    padding: 40px 0; 
    background: var(--bg-glass); 
    border-top: 1px solid var(--border-light); 
    border-bottom: 1px solid var(--border-light);
    overflow: hidden; 
    white-space: nowrap; 
    position: relative; 
    width: 100%;
}

.marquee-track { 
    display: flex;
    width: fit-content;
    animation: marquee 40s linear infinite;
}

.marquee-content { 
    display: flex;
    gap: 80px; 
    padding-right: 80px;
    flex-shrink: 0;
}

.brand-item {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: var(--text-muted); transition: color 0.3s; cursor: default;
    display: flex; align-items: center; gap: 10px; opacity: 0.5;
    flex-shrink: 0;
}
.brand-item i { font-size: 1.8rem; }
.brand-item:hover { color: var(--text-main); opacity: 1; text-shadow: 0 0 15px rgba(255,255,255,0.5); }

@keyframes marquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); }
}

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-top: 60px;
}
.holo-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    padding: 40px; border-radius: 24px; position: relative; overflow: hidden;
    transition: transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-card);
}
.holo-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
}
.holo-card:hover::before { transform: translateX(100%); }
.holo-card:hover { transform: translateY(-10px); }
.card-icon-box {
    width: 70px; height: 70px; background: var(--bg-glass);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--secondary); margin-bottom: 30px;
    border: 1px solid var(--border-light); transition: all 0.4s;
}
.holo-card:hover .card-icon-box { background: var(--secondary); color: #fff; box-shadow: 0 0 30px var(--secondary); }
.holo-card h3 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 600; }
.holo-card p { color: var(--text-muted); margin-bottom: 30px; }
.card-link { color: var(--text-main); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.holo-card:hover .card-link i { transform: translateX(5px); }

/* --- TIMELINE (STABİL NOKTA GÜNCELLEMESİ) --- */
.timeline { max-width: 800px; margin: 80px auto 0; position: relative; padding: 40px 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; width: 2px; height: 100%;
    background: var(--border-light); transform: translateX(-50%);
    z-index: 0;
}

/* LAZER ÇİZGİSİ */
.timeline-progress {
    position: absolute; left: 50%; top: 0; width: 2px; height: 0%;
    background: linear-gradient(180deg, var(--bg-deep), var(--secondary), var(--primary));
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--secondary); 
    transition: height 0.15s cubic-bezier(0.1, 0.7, 1.0, 0.1); 
    z-index: 1;
}

.timeline-item { 
    margin-bottom: 80px; 
    width: 100%; 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    opacity: 0.2; 
    filter: blur(2px);
    transition: opacity 0.4s ease, filter 0.4s ease;
    z-index: 2;
}

.timeline-item.active { 
    opacity: 1; 
    filter: blur(0);
}

.timeline-content {
    width: 45%; 
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px; border: 1px solid var(--border-light);
    backdrop-filter: blur(10px); position: relative;
    transition: all 0.4s;
    box-shadow: none;
}

/* KART KONUMLANDIRMA */
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; text-align: left; }

/* AKTİF KUTULAR İÇİN YÖNLÜ AYDINLATMA (SPOTLIGHT) */
.timeline-item:nth-child(odd).active .timeline-content {
    border-right-color: var(--secondary); 
    border-left-color: transparent;      
    border-top-color: rgba(0, 198, 255, 0.3);
    border-bottom-color: rgba(0, 198, 255, 0.3);
    background: linear-gradient(to left, rgba(0, 198, 255, 0.15) 0%, rgba(17, 25, 40, 0.8) 70%);
    box-shadow: 10px 0 30px -10px rgba(0, 198, 255, 0.2); 
}

.timeline-item:nth-child(even).active .timeline-content {
    border-left-color: var(--secondary);
    border-right-color: transparent;    
    border-top-color: rgba(0, 198, 255, 0.3);
    border-bottom-color: rgba(0, 198, 255, 0.3);
    background: linear-gradient(to right, rgba(0, 198, 255, 0.15) 0%, rgba(17, 25, 40, 0.8) 70%);
    box-shadow: -10px 0 30px -10px rgba(0, 198, 255, 0.2);
}

/* --- DÜZELTİLMİŞ NOKTA STİLİ (STABİLİTE İÇİN) --- */
.timeline-dot {
    position: absolute; 
    left: 50%; 
    top: 50%;
    width: 20px; 
    height: 20px;
    background: var(--bg-deep); 
    border: 2px solid var(--border-light);
    border-radius: 50%; 
    transform: translate(-50%, -50%);
    z-index: 10; 
    transition: all 0.3s;
    box-shadow: 0 0 0 4px var(--bg-deep); 
}

.timeline-item.active .timeline-dot { 
    background: #fff; 
    border-color: var(--secondary); 
    box-shadow: 0 0 25px var(--secondary), 0 0 0 4px var(--bg-deep);
    transform: translate(-50%, -50%) scale(1.3);
}

.timeline-content h4 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 10px; }
.timeline-number {
    position: absolute; top: -40px; font-size: 5rem; font-weight: 800;
    opacity: 0.1; font-family: var(--font-heading); color: var(--text-muted);
}
.timeline-item:nth-child(odd) .timeline-number { right: 20px; }
.timeline-item:nth-child(even) .timeline-number { left: 20px; }

/* ========================================= */
/* 9. PRICING & FAQ (GÜNCELLENMİŞ)           */
/* ========================================= */
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.cta-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.cta-btn {
    font-size: 1.1rem;
    padding: 18px 48px;
}



/* YENİLENMİŞ FAQ TASARIMI */
.faq-container { max-width: 800px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 20px;}
.accordion-item { 
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item:hover { border-color: var(--secondary); transform: translateY(-2px); }
.accordion-item.active { 
    border-color: var(--primary); 
    background: var(--bg-glass);
    box-shadow: 0 10px 30px -10px var(--primary-glow);
}

.accordion-header {
    width: 100%; padding: 20px 30px; background: transparent; border: none;
    color: var(--text-main); text-align: left; font-size: 1.2rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s;
}
.accordion-item.active .accordion-header { color: var(--secondary); }

.accordion-icon { 
    flex-shrink: 0; margin-left: 15px;
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--border-light);
    position: relative;
    font-size: 1.1rem;
    color: var(--secondary);
}
.accordion-icon .acc-icon,
.accordion-icon .acc-icon-x {
    position: absolute;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.accordion-icon .acc-icon {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}
.accordion-icon .acc-icon-x {
    opacity: 0;
    transform: rotate(-90deg) scale(0.4);
}
.accordion-item.active .accordion-icon { 
    background: var(--primary); 
    border-color: transparent;
    color: #fff;
}
.accordion-item.active .accordion-icon .acc-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.4);
}
.accordion-item.active .accordion-icon .acc-icon-x {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.accordion-content {
    max-height: 0; overflow: hidden;
    transition: all 0.4s ease-in-out;
    color: var(--text-muted);
    opacity: 0;
    padding: 0 30px;
}
.accordion-content p { margin: 0; }
.accordion-item.active .accordion-content {
    padding-bottom: 70px;
    opacity: 1;
}

/* MOTION BLUR SLIDE (SOLDAN SAĞA) */
@keyframes motionBlurSlide {
    0% {
        opacity: 0;
        transform: translateX(-100vw) skewX(-20deg); 
        filter: blur(20px); 
    }
    60% {
        opacity: 1;
        transform: translateX(20px) skewX(5deg); 
        filter: blur(2px); 
    }
    80% {
        transform: translateX(-10px) skewX(0); 
        filter: blur(0);
    }
    100% {
        transform: translateX(0); 
        opacity: 1;
        filter: blur(0);
    }
}

.animate-blur {
    animation: motionBlurSlide 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* FAQ ANIMATION KEYFRAMES - SAĞDAN GELİŞ */
@keyframes motionBlurSlideRight {
    0% {
        opacity: 0;
        transform: translateX(100vw) skewX(20deg); 
        filter: blur(20px); 
    }
    60% {
        opacity: 1;
        transform: translateX(-20px) skewX(-5deg); 
        filter: blur(2px); 
    }
    80% {
        transform: translateX(10px) skewX(0); 
        filter: blur(0);
    }
    100% {
        transform: translateX(0); 
        opacity: 1;
        filter: blur(0);
    }
}

.animate-blur-right {
    animation: motionBlurSlideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    padding: 40px; border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    display: flex; flex-direction: column; gap: 25px;
    overflow: hidden;
}
.contact-info-card::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0.02) 40%, rgba(0, 198, 255, 0.25) 90%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.cinfo-item {
    display: flex; align-items: center; gap: 18px;
}
.cinfo-icon {
    width: 50px; height: 50px; background: rgba(255,255,255,0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.2rem; flex-shrink: 0; text-decoration: none;
    transition: 0.3s;
}
.cinfo-wa:hover {
    background: #25d366;
    color: #fff;
}
.cinfo-item h5 { font-weight: 700; margin-bottom: 2px; }
.cinfo-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Legal pages (gizlilik.html / sartlar.html) */
.legal-page.section-padding {
    padding-top: 140px;
}
.legal-heading {
    margin-bottom: 60px;
}
.legal-heading .legal-label {
    color: var(--secondary);
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.legal-heading .legal-title {
    font-size: 3rem;
    margin: 10px 0;
    letter-spacing: -1px;
    font-weight: 700;
}
.legal-heading .legal-sub {
    color: var(--text-muted);
}
.legal-back {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.legal-back a {
    text-decoration: none;
}

/* Footer navigation - navbar style */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s var(--ease-out);
}
.footer-nav-link:hover {
    color: #fff;
}
.footer-nav-link:hover::before {
    width: 100%;
}

/* Legal sections */
.legal-section {
    border-top: 1px solid var(--border-light);
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.9;
    position: relative;
    padding: 28px 36px;
}
.legal-content::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 48px;
    height: 48px;
    border-top: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    opacity: 0.7;
    pointer-events: none;
}
.legal-content::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    border-bottom: 3px solid var(--secondary);
    border-right: 3px solid var(--secondary);
    opacity: 0.7;
    pointer-events: none;
}
.legal-content h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin: 35px 0 15px;
    font-weight: 600;
}
.legal-content p {
    margin-bottom: 15px;
}
.legal-content ul {
    margin: 10px 0 20px 20px;
}
.legal-content li {
    margin-bottom: 8px;
}
.legal-content a {
    color: var(--secondary);
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}

/* FOOTER BOŞLUK DÜZELTMESİ */
footer { 
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(4px);
    padding: 80px 0 0; 
    border-top: 1px solid var(--border-light); 
    margin-top: 0; 
    color: #fff;
    position: relative;
    overflow: hidden;
}
footer .container {
    position: relative;
    z-index: 1;
}
footer a:not(.social-icon) {
    background: linear-gradient(135deg, #a1a1aa 48%, var(--secondary), #ffffff);
    background-size: 250% 250%;
    background-position: 0% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.5s ease;
}
footer a:not(.social-icon):hover {
    background-position: 100% 100%;
    text-decoration: none;
}
footer .social-icon {
    transition: all 0.4s ease;
}
footer .social-icon:hover {
    background: #fff;
    border-color: transparent;
    color: #000;
    transform: translateY(-5px);
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-icon {
    width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center; color: #fff;
    text-decoration: none; transition: 0.3s;
}
.social-icon:hover { background: #fff; color: #000; transform: translateY(-5px); }

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px clamp(20px, 5vw, 64px) 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.25);
    font-size: 0.82rem;
}
.footer-bbm-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.footer-bbm {
    display: inline-flex;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(120px);
}
.footer-bbm.is-visible {
    animation: bbmSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.footer-bbm img {
    display: block;
    height: 14px;
    width: auto;
    transition: filter 0.25s ease;
}
.footer-bbm:hover img { filter: brightness(0) invert(1); }
.footer-copy {
    color: inherit;
}

@keyframes bbmSlideIn {
    from { opacity: 0; transform: translateX(120px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========================================= */
/* 11. CRITICAL RESPONSIVE MEDIA QUERIES     */
/* ========================================= */

@media (max-width: 1024px) {
    .hero-title { font-size: clamp(3rem, 6.5vw, 4.2rem); }
    .timeline::before { left: 40px; }
    .timeline-progress { left: 40px; }
    .timeline-item { flex-direction: column; align-items: flex-start; margin-left: 0; padding-left: 70px; }
    .timeline-content { width: 100% !important; text-align: left !important; margin-left: 0 !important; margin-right: 0 !important; }
    .timeline-dot { left: 40px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }

    .footer-top { grid-template-columns: 1fr 1fr; text-align: left; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

    /* MOBİLDE TÜM IŞIKLAR SOLDAN (ÇİZGİ SOLDAN GEÇİYOR) */
    .timeline-item:nth-child(odd).active .timeline-content,
    .timeline-item:nth-child(even).active .timeline-content {
        border-left-color: var(--secondary);
        border-right-color: transparent;
        border-top-color: rgba(0, 198, 255, 0.3);
        border-bottom-color: rgba(0, 198, 255, 0.3);
        background: linear-gradient(to right, rgba(0, 198, 255, 0.15) 0%, rgba(17, 25, 40, 0.8) 70%);
        box-shadow: -10px 0 30px -10px rgba(0, 198, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 50px 0; } 
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column; justify-content: center; align-items: flex-start;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 40px; padding-left: 40px; gap: 28px;
        margin: 0;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .nav-links li {
        opacity: 0; transform: translateX(-80px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        list-style: none;
        width: 100%;
    }
    .nav-links.show-links li {
        opacity: 1; transform: translateX(0);
    }
    .nav-links.show-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.show-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.show-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.show-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.show-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.show-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links.closing li {
        opacity: 0; transform: translateX(-80px);
        transition-duration: 0.4s;
    }
    .mobile-menu-open { overflow: hidden; }
    .nav-links .nav-link {
        position: relative; display: flex; align-items: center; gap: 12px;
        font-size: 1.4rem; font-weight: 700; letter-spacing: 1px;
        color: #fff; text-decoration: none;
        transition: all 0.3s ease;
        padding: 10px 16px;
    }
    .nav-links .nav-link::before {
        content: none;
    }
    .nav-links .nav-link:hover {
        text-shadow: 0 0 20px var(--secondary), 0 0 40px var(--secondary);
    }
    .nav-arrow {
        color: var(--secondary);
        font-size: 1.2rem;
        font-weight: 700;
        flex-shrink: 0;
        width: 24px;
        display: inline-block;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .contact-info-card { padding: 30px; gap: 20px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    
    /* Mobilde timeline düzenlemeleri */
    .timeline-item { padding-left: 50px; }
    .timeline::before, .timeline-progress { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-number { position: relative; top: 0; left: 0 !important; right: 0 !important; font-size: 3rem; margin-bottom: 10px; display: block; }
    
    .marquee-track { animation-duration: 25s; }
    .brand-item { font-size: 1.1rem; }
    .brand-item i { font-size: 1.3rem; }
    .faq-container { padding: 0; }
}

/* ORTA BOYUT TELEFONLAR (600px ve altı) */
@media (max-width: 600px) {
    .hero-title { font-size: clamp(3rem, 9vw, 4rem); }
    .hero-content { padding: 0 15px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contact-info-card { padding: 30px; }
    .section-padding { padding: 50px 0; }
}

/* KÜÇÜK TELEFONLAR (480px ve altı) */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 35px 0; }
    .hero { min-height: 100vh; padding-top: 40px; }
    .hero-content { padding: 0 10px; }
    .hero-title { font-size: clamp(2.6rem, 10vw, 3.5rem); letter-spacing: -1px; text-align: left; padding-left: 0; }
    .hero-title .scramble-text { display: block; margin-top: 5px; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 30px; max-width: 100%; padding: 0 10px; }
    .hero-actions { flex-direction: row; justify-content: center; gap: 12px; }
    .hero-actions .btn-magnetic { width: auto; max-width: 200px; white-space: normal; height: auto; padding: 14px 24px; font-size: 0.9rem; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 20px; }
    
    .navbar { padding: 15px 0; }
    .navbar.scrolled { padding: 12px 0; }
    .logo { font-size: 1.4rem; }
    .logo img { height: 26px; }
    .nav-links .nav-link { font-size: 1.1rem; }
    .nav-links li:last-child { width: 100%; }
    
    .marquee-section { padding: 25px 0; }
    .marquee-track { animation-duration: 20s; }
    .marquee-content { gap: 40px; padding-right: 40px; }
    .brand-item { font-size: 0.9rem; gap: 6px; }
    .brand-item i { font-size: 1.1rem; }
    
    .services-grid { gap: 20px; margin-top: 40px; }
    .holo-card { padding: 25px; }
    .holo-card h3 { font-size: 1.4rem; }
    .holo-card p { font-size: 0.9rem; margin-bottom: 20px; }
    .card-icon-box { width: 55px; height: 55px; font-size: 1.4rem; margin-bottom: 20px; }
    
    
    .timeline { margin: 40px auto 0; padding: 20px 0; }
    .timeline-item { padding-left: 40px; margin-bottom: 40px; }
    .timeline::before, .timeline-progress { left: 15px; }
    .timeline-dot { left: 15px; width: 16px; height: 16px; }
    .timeline-content { padding: 20px; border-radius: 14px; }
    .timeline-content h4 { font-size: 1.2rem; }
    .timeline-content p { font-size: 0.85rem; }
    .timeline-number { font-size: 2.2rem; }
    
    h2 { font-size: clamp(1.6rem, 6vw, 2rem) !important; }
    

    .contact-wrapper { gap: 30px; }
    .contact-info-card { padding: 25px; border-radius: 20px; }
    .cinfo-icon { width: 44px; height: 44px; font-size: 1rem; }
    .cinfo-item { gap: 14px; }
    .cinfo-item p { font-size: 0.85rem; }
    
    footer { padding: 50px 0 0; }
    .footer-top { gap: 30px; margin-bottom: 40px; }
    .footer-top h4 { font-size: 1rem; margin-bottom: 15px; }
    .footer-top p, .footer-top li { font-size: 0.85rem; }
    .social-icon { width: 42px; height: 42px; font-size: 1rem; }
    .social-links { gap: 12px; }

    .footer-bottom { font-size: 0.72rem; flex-direction: column; align-items: flex-start; gap: 6px; }
    
    .accordion-header { padding: 18px 18px; font-size: 1rem; min-height: 44px; }
    .accordion-content { padding: 0 18px; font-size: 0.9rem; }
    .accordion-item.active .accordion-content { padding-bottom: 20px; }
    .accordion-icon { width: 28px; height: 28px; font-size: 0.9rem; }
    
    .preloader-text { font-size: 1.2rem; letter-spacing: 3px; }
    .preloader-counter { font-size: 0.85rem; }
    .loader-bar { width: 160px; }
    
    .cloud { opacity: 0.15 !important; filter: blur(60px) !important; }
}

/* TOUCH CİHAZLAR İÇİN OPTİMİZASYON */
@media (hover: none) and (pointer: coarse) {
    .btn-magnetic:hover { border-color: var(--border-light); box-shadow: none; color: var(--text-main); }
    .btn-magnetic:hover::after { transform: scaleX(0); }
    .btn-magnetic:active::after { transform: scaleX(1); }
    .btn-magnetic:active { border-color: transparent; color: #fff; }

    .holo-card:hover { transform: none; }
    .holo-card:hover .card-icon-box { background: var(--bg-glass); color: var(--secondary); box-shadow: none; }
    .holo-card:active { transform: translateY(-5px); }
    .holo-card:active .card-icon-box { background: var(--secondary); color: #fff; }

    .timeline-item.active .timeline-content { box-shadow: none; }
    .accordion-item:hover { border-color: var(--border-light); transform: none; }

}

/* === INLINE STYLE REPLACEMENTS === */
.section-label { color: var(--secondary); letter-spacing: 2px; font-size: 0.9rem; }
.section-title { font-size: 3rem; margin: 10px 0; }
.section-desc { color: var(--text-muted); }
.section-desc-lg { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; line-height: 1.6; }
.section-header-center { text-align: center; margin-bottom: 50px; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.timeline-desc { color: var(--text-muted); }
.cta-title { font-size: 3rem; margin-bottom: 20px; }
.process-title { text-align: center; font-size: 3rem; margin-bottom: 20px; }
.faq-title { text-align: center; margin-bottom: 40px; }
.contact-section { background: rgba(0,0,0,0.2); padding-bottom: 40px; }
.contact-title { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 10px; letter-spacing: -1px; }
.contact-title .hl { color: var(--secondary); }
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.cinfo-name { font-size: 1rem; margin: 0; font-weight: 700; }
.cinfo-phone { color: var(--text-muted); margin: 0; }
.instagram-box { display: flex; flex-direction: column; gap: 8px; margin-top: 15px; }
.footer-col { text-align: left; }
.footer-desc { color: #a1a1aa; margin-top: 20px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-smedesc { color: #a1a1aa; font-size: 0.9rem; margin-bottom: 20px; }
.contact-link { color: inherit; text-decoration: none; }

/* ÇOK KÜÇÜK TELEFONLAR (360px ve altı) */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 2.8rem); }
    .hero-desc { font-size: 0.8rem; }
    .hero-actions .btn-magnetic { max-width: 160px; font-size: 0.8rem; padding: 10px 16px; }
    .logo { font-size: 1.2rem; }
    .logo img { height: 20px; }
    .hamburger .bar { width: 24px; height: 3px; margin: 5px 0; }
    
    .holo-card { padding: 20px; }
    .holo-card h3 { font-size: 1.2rem; }
    .card-icon-box { width: 45px; height: 45px; font-size: 1.2rem; }
    
    
    .timeline-item { padding-left: 35px; }
    .timeline::before, .timeline-progress { left: 13px; }
    .timeline-dot { left: 13px; width: 14px; height: 14px; }
    .timeline-content { padding: 15px; }
    .timeline-content h4 { font-size: 1rem; }
    .timeline-number { font-size: 1.8rem; }
    

    .footer-top { gap: 25px; }
    .social-links { gap: 10px; }
    
    .accordion-header { font-size: 0.85rem; padding: 12px 14px; }
    .accordion-content { font-size: 0.8rem; }
    .contact-info-card { padding: 20px; }
    
    .brand-item { font-size: 0.75rem; }
    .brand-item i { font-size: 0.9rem; }
    .marquee-content { gap: 25px; padding-right: 25px; }
}


