/* style.css - FINAL MERGED VERSION (FIXED LOGO COLLISION) */

/* 1. KRİTİK AYAR (SCROLL FIX) */
* {
    box-sizing: border-box; 
}

:root {
    /* AÇIK TEMA */
    --bg-color: #ffffff;
    --text-color: #111111;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --border-color: #e5e5e5;
    --primary-color: #0066ff;
    --primary-hover: #0052cc;
    --accent-bg: #f5f5f7;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --whatsapp-color: #25D366;
}

[data-theme="dark"] {
    /* KOYU TEMA */
    --bg-color: #000000;
    --text-color: #ffffff;
    --nav-bg: rgba(0, 0, 0, 0.95);
    --border-color: #333333;
    --primary-color: #3b82f6;
    --primary-hover: #60a5fa;
    --accent-bg: #111111;
    --shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* GENEL AYARLAR */
html { scroll-behavior: smooth; }
body {
    margin: 0; padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 3%;
    backdrop-filter: blur(10px); z-index: 1000;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 32px; width: auto; }
.logo-text { font-size: 26px; font-weight: 800; color: var(--text-color); letter-spacing: -1px; }
.logo-text span { color: var(--primary-color); }

.nav-links { display: flex; gap: 35px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-link { 
    color: var(--text-color); text-decoration: none; font-weight: 600; font-size: 17px; 
    padding: 10px 0; position: relative; display: flex; align-items: center; gap: 5px; cursor: pointer;
    transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 5px; left: 0; background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}
.nav-link:hover { color: var(--primary-color); }
.nav-link:hover::after { width: 100%; }

/* Mobil Elemanlar (Gizli) */
.mobile-menu-header, .mobile-contact-info, .mobile-ai-btn, .mobile-controls { display: none; }

/* Aksiyonlar */
.lang-switch {
    font-size: 14px; font-weight: 700; color: var(--text-color);
    border: 1px solid var(--border-color); padding: 5px 10px; border-radius: 5px;
    cursor: pointer; opacity: 0.8; transition: 0.3s;
}
.lang-switch:hover { opacity: 1; border-color: var(--primary-color); color: var(--primary-color); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.theme-toggle { background: none; border: none; cursor: pointer; color: var(--text-color); font-size: 22px; padding: 5px; }
.btn { padding: 12px 24px; border-radius: 6px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; white-space: nowrap; display: inline-block; }
.btn-primary { background-color: var(--primary-color); color: white; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3); }
.hamburger { display: none; cursor: pointer; font-size: 28px; color: var(--text-color); }
.mobile-only-btn { display: none; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: -20px;
    background-color: var(--nav-bg); border: 1px solid var(--border-color);
    border-radius: 12px; box-shadow: var(--shadow); width: 260px; padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
}
@media (min-width: 993px) { .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); } }
.dropdown-item { display: flex; align-items: flex-start; gap: 15px; padding: 15px; text-decoration: none; border-radius: 8px; transition: background 0.2s; }
.dropdown-item:hover { background-color: var(--accent-bg); }
.d-icon { color: var(--primary-color); font-size: 20px; margin-top: 2px; }
.d-text h4 { margin: 0; font-size: 15px; color: var(--text-color); font-weight: 600; }
.d-text p { margin: 3px 0 0; font-size: 13px; color: var(--text-color); opacity: 0.6; }

/* Yukarı Çık */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px;
    width: 50px; height: 50px; background-color: var(--bg-color);
    border: 1px solid var(--border-color); color: var(--text-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--primary-color); color: white; transform: translateY(-3px); }

/* --- HERO SLIDER (ANASAYFA) --- */
.hero-slider { 
    position: relative; width: 100%; height: 100vh; 
    background-color: var(--bg-color); overflow: hidden; padding-top: 80px;
}
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s; display: flex; align-items: center; justify-content: center; }
.slide.active { opacity: 1; visibility: visible; }

.slide-container { 
    display: grid; grid-template-columns: 1fr 1fr; width: 90%; max-width: 1200px; height: 100%; align-items: center; gap: 40px; 
    padding: 0 60px;
}
.slide-text { text-align: left; z-index: 2; }
.slide-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: var(--text-color); }
.slide-desc { font-size: 1.25rem; line-height: 1.6; color: var(--text-color); opacity: 0.8; margin-bottom: 30px; max-width: 500px; }
.slide-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.abstract-shape { position: absolute; border-radius: 50%; background: linear-gradient(135deg, var(--primary-color), #60a5fa); opacity: 0.1; filter: blur(40px); }
.shape-1 { width: 300px; height: 300px; top: 10%; right: 10%; animation: float 6s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: 10%; left: 10%; animation: float 8s ease-in-out infinite reverse; }
.tech-icon-box { width: 150px; height: 150px; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary-color); box-shadow: var(--shadow); z-index: 2; position: relative; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Slider Kontrolleri */
.slider-btn { 
    position: absolute; top: 50%; transform: translateY(-50%); 
    background: var(--accent-bg); color: var(--text-color); width: 50px; height: 50px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; z-index: 100;
    transition: all 0.3s; box-shadow: var(--shadow); 
}
.slider-btn:hover { background: var(--primary-color); color: white; }
.prev-btn { left: 30px; } .next-btn { right: 30px; }
.dots-container { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 100; }
.dot { width: 12px; height: 12px; border-radius: 50%; background-color: var(--text-color); opacity: 0.3; cursor: pointer; transition: all 0.3s; }
.dot.active { opacity: 1; background-color: var(--primary-color); transform: scale(1.2); }

/* Sticky Banner */
.promo-banner {
    background: var(--primary-color); color: white; padding: 15px; text-align: center;
    position: -webkit-sticky; position: sticky;
    top: 80px; z-index: 999; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Güven Barı */
.trust-bar { background-color: var(--accent-bg); padding: 50px 0; border-bottom: 1px solid var(--border-color); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; gap: 20px; text-align: center; }

.trust-item h3 { 
    display: flex; justify-content: center; align-items: center; flex-wrap: nowrap; gap: 5px;
    font-size: 2.5rem !important; font-weight: 900; margin: 0 0 5px 0; 
    color: var(--primary-color); line-height: 1.2;
}
.trust-item h3 span, .trust-item h3 .counter { font-size: inherit; color: inherit; opacity: 1 !important; } 
.trust-item p { margin: 0; color: var(--text-color); font-weight: 600; font-size: 1.1rem; }
.trust-item span { font-size: 0.85rem; opacity: 0.6; display: block; margin-top: 5px; }

/* Arayüz Bölümü */
.interface-section { padding: 100px 5%; background-color: var(--bg-color); text-align: center; }
.mockup-container { max-width: 1000px; margin: 50px auto 0 auto; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); overflow: hidden; position: relative; }
.mockup-header { background: var(--accent-bg); padding: 12px 20px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border-color); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.mockup-body { display: flex; height: 400px; }
.mockup-sidebar { width: 200px; background: var(--accent-bg); border-right: 1px solid var(--border-color); padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.skeleton-line { height: 10px; background: var(--border-color); border-radius: 5px; opacity: 0.5; }
.mockup-content { flex: 1; padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mockup-card { border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; }
.security-badges { display: flex; justify-content: center; gap: 40px; margin-top: 60px; flex-wrap: wrap; }
.badge-item { display: flex; align-items: center; gap: 10px; opacity: 0.7; }
.badge-item i { font-size: 24px; color: var(--primary-color); }
.badge-item span { font-weight: 600; font-size: 14px; color: var(--text-color); }

/* SSS (FAQ) */
.faq-section { padding: 100px 5%; background-color: var(--bg-color); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 10px; }
.faq-item summary { padding: 20px; font-weight: 600; cursor: pointer; color: var(--text-color); list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.1em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5em; color: var(--primary-color); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 20px 20px 20px; color: var(--text-color); opacity: 0.8; line-height: 1.6; }

/* AI BUTON FAQ */
.faq-ai-btn { 
    display: block; margin: 40px auto 0 auto; 
    background: var(--accent-bg); color: var(--primary-color); 
    border: 1px solid var(--primary-color); text-align: center; max-width: 300px; 
    transition: all 0.3s ease;
}
.faq-ai-btn:hover {
    background: var(--primary-color);
    color: #ffffff !important;
}

/* Demo & Destek */
.quick-start-section { padding: 80px 5%; background: linear-gradient(135deg, var(--accent-bg) 0%, var(--bg-color) 100%); text-align: center; border-top: 1px solid var(--border-color); }
.demo-card { max-width: 600px; margin: 0 auto; background: var(--bg-color); padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feature-list { display: flex; justify-content: center; gap: 20px; margin: 20px 0 30px 0; flex-wrap: wrap; }
.feature-pill { font-size: 0.9em; padding: 5px 15px; background: var(--accent-bg); border-radius: 20px; color: var(--text-color); }

.support-wrapper { padding: 100px 5%; background: var(--accent-bg); }
.support-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.support-card { background: var(--bg-color); padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); text-align: center; transition: transform 0.3s; }
.support-card:hover { transform: translateY(-10px); }
.support-icon { font-size: 3rem; margin-bottom: 20px; display: inline-block; }
.ai-style { color: var(--primary-color); } .human-style { color: #10b981; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--whatsapp-color); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; text-decoration: none; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 2000; animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #20b857; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* --- HAKKIMIZDA SAYFASI --- */
.about-hero {
    padding: 150px 5% 100px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--accent-bg) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.about-hero h1 {
    font-size: 3.5rem; font-weight: 900; margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2;
}
.about-hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto; opacity: 0.8; }

.values-section { padding: 100px 5%; background-color: var(--bg-color); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.value-card {
    background: var(--bg-color); padding: 40px; border: 1px solid var(--border-color);
    border-radius: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--primary-color); }
.value-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; display: inline-block; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 700; }
.value-card p { opacity: 0.8; line-height: 1.6; }

.global-local-section { padding: 100px 5%; background-color: var(--accent-bg); display: flex; align-items: center; justify-content: center; }
.gl-container { max-width: 1200px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gl-content h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.gl-visual {
    position: relative; height: 400px; background: var(--bg-color); border-radius: 20px; border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.map-overlay { font-size: 10rem; color: var(--border-color); opacity: 0.5; }
.gl-badge {
    position: absolute; background: var(--bg-color); padding: 15px 25px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 10px; font-weight: 700;
    border: 1px solid var(--border-color); animation: floatBadge 6s infinite ease-in-out;
}
.badge-tr { top: 20%; right: 10%; color: #E30A17; }
.badge-global { bottom: 20%; left: 10%; color: var(--primary-color); animation-delay: 3s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0); } }

.sector-info { text-align: center; padding: 100px 5%; background-color: var(--bg-color); }
.sector-text { max-width: 800px; margin: 0 auto; }
.sector-text h2 { font-size: 2.5rem; margin-bottom: 30px; }
.sector-text p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 20px; }

/* --- İLETİŞİM SAYFASI --- */
.contact-hero { padding: 120px 5% 60px; background-color: var(--accent-bg); text-align: center; }
.contact-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; color: var(--text-color); }
.contact-hero p { font-size: 1.2rem; opacity: 0.7; max-width: 600px; margin: 0 auto; }

.contact-wrapper { max-width: 1200px; margin: 60px auto; padding: 0 5%; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-box { display: flex; flex-direction: column; gap: 30px; }
.c-info-item { background: var(--bg-color); padding: 25px; border: 1px solid var(--border-color); border-radius: 12px; transition: transform 0.3s; }
.c-info-item:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: var(--shadow); }
.c-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
.c-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; display: block; color: var(--text-color); }
.c-content { font-size: 0.95rem; opacity: 0.8; line-height: 1.6; color: var(--text-color); text-decoration: none; font-style: normal; }
.c-link { text-decoration: none; color: var(--text-color); transition: 0.3s; font-weight: 500; }
.c-link:hover { color: var(--primary-color); }

.contact-form-container { background: var(--bg-color); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid var(--border-color); }
.form-header { margin-bottom: 30px; }
.form-header h3 { margin: 0 0 10px 0; font-size: 1.8rem; }
.ai-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 102, 255, 0.1); color: var(--primary-color); padding: 8px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(0, 102, 255, 0.2); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px;
    background: var(--accent-bg); color: var(--text-color); font-family: inherit; font-size: 1rem;
    transition: 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary-color); background: var(--bg-color); }
.form-textarea { resize: vertical; min-height: 120px; }

.map-section { width: 100%; height: 450px; background-color: var(--accent-bg); border-top: 1px solid var(--border-color); filter: grayscale(100%); transition: filter 0.5s; }
.map-section:hover { filter: grayscale(0%); }

/* --- FİYATLANDIRMA SAYFASI ÖZEL --- */

.pricing-header { padding: 150px 5% 50px; text-align: center; background: var(--bg-color); }
.pricing-header h1 { font-size: 3rem; margin-bottom: 15px; color: var(--text-color); }
.pricing-header p { font-size: 1.2rem; color: var(--text-color); max-width: 700px; margin: 0 auto; font-weight: 500; }

.pricing-toggle-container { display: flex; justify-content: center; align-items: center; gap: 15px; margin: 40px 0; flex-wrap: wrap; }
.toggle-label { font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: 0.3s; color: var(--text-color); }
.toggle-label.active { color: var(--primary-color); }
.switch { position: relative; display: inline-block; width: 60px; height: 34px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(26px); }
.discount-badge { background: #FFEFEE; color: #FF5F56; padding: 5px 10px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; border: 1px solid #FF5F56; white-space: nowrap; }

/* Fiyat Kartları Grid (GENİŞ EKRAN YAYILMA FIX) */
.pricing-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    /* Ekranı doldurması için max-width artırıldı */
    max-width: 1600px; 
    width: 95%; /* Responsive width */
    margin: 0 auto 40px; 
    padding: 0; /* Padding kaldırıldı, width yönetiyor */
}

.price-card {
    background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 16px;
    padding: 40px 25px 30px 25px; text-align: center; transition: 0.3s; position: relative;
    display: flex; flex-direction: column; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.price-card.popular { border: 2px solid var(--primary-color); box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15); transform: scale(1.05); z-index: 2; }
.popular-badge {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: white;
    padding: 8px 25px; border-radius: 30px; font-weight: 700; font-size: 0.95rem; white-space: nowrap; box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.plan-name { font-size: 1.4rem; font-weight: 800; color: var(--text-color); margin-bottom: 5px; }
.plan-storage { font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--text-color); margin: 15px 0 5px 0; }
.plan-storage span { font-size: 1.5rem; font-weight: 700; color: var(--text-color); vertical-align: super; }
.plan-price { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); margin: 10px 0 0; }
.plan-period { font-size: 0.95rem; font-weight: 500; opacity: 0.8; }
.daily-cost { font-size: 0.95rem; color: #10b981; font-weight: 700; margin-bottom: 25px; min-height: 25px; background: rgba(16, 185, 129, 0.1); display: inline-block; padding: 4px 12px; border-radius: 12px; }
.plan-features {
    list-style: none; padding: 0; margin: 20px 0 30px 0; flex-grow: 1; text-align: left;
    border-top: 1px solid var(--border-color); padding-top: 20px;
}
.plan-features li { margin-bottom: 15px; font-size: 1rem; font-weight: 500; color: var(--text-color); display: flex; align-items: center; gap: 12px; }
.plan-features li i { color: #10b981; font-size: 1.3rem; flex-shrink: 0; }
.plan-features li.disabled { opacity: 0.5; text-decoration: line-through; }
.plan-features li.disabled i { color: var(--border-color); }
.price-card .btn { width: 100%; display: block; margin-top: auto; padding: 15px; font-size: 1.1rem; }
.pricing-notes { text-align: center; margin-bottom: 80px; padding: 0 5%; font-size: 0.9rem; opacity: 0.7; }

/* SSS (FAQ) */
.pricing-faq { max-width: 900px; margin: 0 auto 100px; padding: 0 5%; }
.pricing-faq h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
.faq-details { background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
.faq-details summary {
    padding: 20px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
    background: var(--accent-bg); transition: 0.3s;
}
.faq-details summary:hover { color: var(--primary-color); }
.faq-details summary::after { content: '+'; font-size: 1.5rem; }
.faq-details[open] summary::after { content: '-'; }
.faq-details p { padding: 20px; margin: 0; opacity: 0.9; line-height: 1.6; border-top: 1px solid var(--border-color); }

/* Karşılaştırma */
.compare-section { max-width: 1600px; width: 95%; margin: 0 auto 60px; padding: 0; }
.compare-toggle {
    width: 100%; text-align: center; background: var(--accent-bg); padding: 20px; border-radius: 10px; cursor: pointer;
    font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.1rem; color: var(--text-color);
}
.compare-table-wrapper { display: none; margin-top: 30px; width: 100%; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th, .compare-table td { padding: 15px; border-bottom: 1px solid var(--border-color); text-align: center; font-size: 1rem; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; }
.compare-table tr:hover { background: var(--accent-bg); }

.roi-section { background: linear-gradient(135deg, var(--bg-color) 0%, var(--accent-bg) 100%); padding: 80px 5%; text-align: center; border-top: 1px solid var(--border-color); }

/* FOOTER */
.site-footer { background-color: var(--bg-color); padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-col h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--text-color); }
.footer-col p { font-size: 14px; line-height: 1.6; color: var(--text-color); opacity: 0.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: var(--text-color); opacity: 0.7; font-size: 14px; transition: 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--primary-color); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 13px; color: var(--text-color); opacity: 0.5; }

/* RESPONSIVE (MOBİL & TABLET) */
@media (max-width: 992px) {
    .hamburger { display: block; z-index: 1001; }
    .nav-actions { display: none; }
    .navbar { height: 65px; padding: 0 5%; }

    /* Mobil Menü */
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 350px; height: 100vh;
        background-color: var(--bg-color); display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); z-index: 2000; border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5); padding-top: 0; padding-bottom: 150px; overflow-y: auto; 
    }
    .nav-links.active { right: 0; }
    
    .mobile-menu-header { display: flex; justify-content: center; align-items: center; width: 100%; padding: 20px 0; border-bottom: 1px solid var(--border-color); margin-bottom: 10px; position: relative; min-height: 70px; }
    .mobile-close-btn { font-size: 28px; color: var(--text-color); cursor: pointer; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); z-index: 2001; }
    .nav-links li { margin: 0; width: 100%; text-align: center; flex-shrink: 0; padding: 2px 0; }
    .nav-link { font-size: 18px; justify-content: center; width: 100%; }
    .mobile-only-btn { display: block !important; width: 100%; padding: 10px 20px; margin-top: 10px; }
    .mobile-only-btn .btn { width: auto; display: inline-block; padding: 10px 30px; font-size: 14px; }
    .mobile-controls { display: flex !important; justify-content: center; align-items: center; gap: 20px; width: 100%; margin: 15px 0; }
    .mobile-contact-info, .mobile-ai-btn { display: block !important; }
    .mobile-ai-btn { margin: 10px 0 20px 0; }
    .ai-link { color: var(--primary-color); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; font-size: 14px; border: 1px solid var(--border-color); padding: 8px 15px; border-radius: 20px; }
    .mobile-contact-info { display: flex !important; flex-direction: column; gap: 15px; padding: 20px 20px 40px 20px; width: 100%; border-top: 1px solid var(--border-color); margin-top: 10px; }
    .m-contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-color); font-size: 14px; text-decoration: none; justify-content: center; }
    .m-contact-item i { color: var(--primary-color); font-size: 18px; }
    
    .dropdown { position: static; box-shadow: none; background: transparent; border: none; visibility: visible; opacity: 1; padding-left: 0; width: 100%; display: none; text-align: center; margin-top: 0; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
    .dropdown.active { display: block; animation: fadeIn 0.3s ease; }
    
    /* Mobil Grid Düzeltmeleri */
    .about-hero h1 { font-size: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .gl-container { grid-template-columns: 1fr; }
    .gl-visual { height: 300px; order: -1; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-hero { padding-top: 100px; }

    /* Fiyatlandırma Mobil Fix */
    .pricing-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        width: 90%; /* Kenarlara yapışmasını engeller */
    }
    .price-card.popular { transform: scale(1); }
    .pricing-toggle-container { flex-direction: row; }
    .plan-storage { font-size: 3rem; }
    .pricing-faq h2 { font-size: 2rem; }
    
    /* Mockup */
    .slide-visual { display: none !important; }
    .mockup-container { display: block !important; width: 100%; margin: 30px auto; box-shadow: none; border: 1px solid var(--border-color); }
    .mockup-body { flex-direction: column; height: auto; }
    .mockup-sidebar { width: 100%; flex-direction: row; justify-content: space-around; padding: 10px; border-right: none; border-bottom: 1px solid var(--border-color); }
    .skeleton-line { width: 50px !important; margin: 0; }
    .mockup-content { grid-template-columns: 1fr; padding: 20px; }
    .mockup-card[style*="span 2"] { grid-column: auto !important; }
    .slide-container { grid-template-columns: 1fr; text-align: center; gap: 0; padding: 0 15px; }
    .slide { align-items: center; padding-top: 0; height: 100%; }
    .slide-text { padding-left: 0; display: flex; flex-direction: column; align-items: center; width: 100%; }
    .slide-title { font-size: 2.2rem; }
    .slider-btn { display: none; }
    .dots-container { bottom: 20px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .trust-item h3 { font-size: 2rem !important; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 80px; right: 20px; width: 40px; height: 40px; font-size: 20px; }
    .support-container { grid-template-columns: 1fr; gap: 30px; }
    .hero-slider { padding-top: 65px; }
    .promo-banner { position: sticky; top: 65px; padding: 8px; font-size: 0.9em; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }


/* --- ÜRÜN SAYFASI (UI SİMÜLASYONU) --- */

/* Yazılım Arayüzü (Mockup) İçin Özel Stiller */
.software-ui {
    display: flex;
    height: 100%;
    width: 100%;
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Sol Menü */
.ui-sidebar {
    width: 220px;
    background: #1e293b; /* Koyu Lacivert */
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.ui-menu-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    font-size: 0.9rem;
    cursor: default;
    border-left: 3px solid transparent;
}
.ui-menu-item.active {
    background: #334155;
    opacity: 1;
    border-left-color: var(--primary-color);
}
.ui-menu-item i { font-size: 1.1rem; }

/* Ana Ekran */
.ui-content {
    flex: 1;
    padding: 30px;
    background: #f1f5f9;
}
.ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.ui-title { font-size: 1.2rem; font-weight: 600; color: #334155; }
.ui-status { 
    background: #dcfce7; color: #166534; 
    padding: 5px 12px; border-radius: 20px; 
    font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 5px;
}

/* Tablo Simülasyonu */
.ui-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.ui-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.ui-row:last-child { border-bottom: none; }
.ui-label { display: flex; align-items: center; gap: 10px; font-weight: 500; color: #475569; font-size: 0.9rem; }
.ui-icon-sql { color: #A91D22; font-size: 1.1rem; }
.ui-icon-folder { color: #F59E0B; font-size: 1.1rem; }
.ui-info { font-size: 0.85rem; color: #64748b; }
.ui-badge-success { color: #10b981; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* 2FA Güvenlik Bölümü */
.security-feature-section {
    background: #0f172a; /* Çok koyu tema */
    color: white;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}
.sec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.sec-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.sec-content p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 30px; }
.sec-list { list-style: none; padding: 0; }
.sec-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.05rem; }
.sec-list li i { color: #10b981; font-size: 1.4rem; }

/* Adım Adım Kurulum */
.steps-section { padding: 100px 5%; text-align: center; background: var(--bg-color); }
.steps-container { 
    display: flex; justify-content: center; gap: 40px; 
    max-width: 1000px; margin: 50px auto 0; flex-wrap: wrap;
}
.step-item { flex: 1; min-width: 250px; position: relative; }
.step-number { 
    width: 60px; height: 60px; background: var(--accent-bg); color: var(--primary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; border: 2px solid var(--border-color);
}
.step-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.step-item p { font-size: 0.95rem; opacity: 0.7; }

/* Responsive */
@media (max-width: 992px) {
    .sec-grid { grid-template-columns: 1fr; }
    .ui-sidebar { width: 60px; align-items: center; } /* Mobilde menüyü daralt */
    .ui-menu-text { display: none; }
    .ui-menu-item { justify-content: center; padding: 15px 0; }
}


/* --- PARTNER (BAYİLİK) SAYFASI ÖZEL (SCROLL FIX V2) --- */

/* 1. HERO BÖLÜMÜ */
.partner-hero {
    background: #0f172a; /* Tech Dark */
    padding: 120px 5% 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden; /* Taşan görsel efektleri gizle */
    width: 100%;
}
.partner-hero h1 {
    font-size: 3rem; font-weight: 800; margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    word-wrap: break-word; /* Uzun kelimeleri kır */
}
.partner-hero p {
    font-size: 1.2rem; opacity: 0.8; max-width: 800px; margin: 0 auto;
    color: #cbd5e1; font-weight: 300; letter-spacing: 0.5px;
}

/* 2. DASHBOARD SİMÜLASYONU */
.partner-ui-container {
    max-width: 1100px; 
    width: 90%; /* Mobilde kenarlardan boşluk bırakır */
    margin: 40px auto 80px; 
    position: relative; z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 12px; overflow: hidden; border: 1px solid #334155;
    background: #1e293b; font-family: 'Segoe UI', sans-serif;
}

.p-ui-header {
    background: #0f172a; padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #334155;
}
.p-ui-logo { font-weight: 700; color: white; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.p-ui-logo span { background: var(--primary-color); padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; }
/* Mobilde admin ismini gizle */
.p-ui-header div:last-child { font-size: 0.8rem; color: #94a3b8; text-align: right; }

.p-ui-body { display: flex; height: 450px; }
.p-ui-sidebar { width: 220px; background: #0f172a; border-right: 1px solid #334155; padding: 20px 0; flex-shrink: 0; }
.p-menu-item {
    padding: 12px 25px; color: #94a3b8; font-size: 0.9rem; display: flex; align-items: center; gap: 10px;
}
.p-menu-item.active { color: white; background: #1e293b; border-left: 3px solid var(--primary-color); }

/* İçerik Alanı - SCROLL FIX */
.p-ui-content { 
    flex: 1; 
    background: #1e293b; 
    padding: 30px; 
    overflow-x: auto; /* Tablo taşarsa sadece burası scroll olsun */
}

/* Tablo Yapısı */
/* Min-width ekleyerek tablonun bozulmasını engelliyoruz, scroll devreye giriyor */
.p-table-header { 
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; 
    padding-bottom: 15px; border-bottom: 1px solid #334155; 
    color: #94a3b8; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; 
    min-width: 600px; 
}
.p-table-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; 
    padding: 15px 0; border-bottom: 1px solid #334155; 
    color: white; align-items: center; font-size: 0.9rem; 
    min-width: 600px;
}

.p-client-name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.p-status { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.p-status.online { background: #10b981; box-shadow: 0 0 10px #10b981; }
.p-status.offline { background: #ef4444; }
.p-progress-bg { width: 100%; height: 6px; background: #334155; border-radius: 3px; position: relative; margin-top: 5px; }
.p-progress-fill { height: 100%; border-radius: 3px; }

/* 3. ÖZELLİKLER GRID */
.partner-features { padding: 80px 5%; background: var(--bg-color); width: 100%; overflow: hidden; }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; width: 100%; }
.pf-card {
    padding: 30px; border: 1px solid var(--border-color); border-radius: 12px;
    transition: 0.3s; background: var(--bg-color);
}
.pf-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.pf-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; color: var(--text-color); }
.pf-card p { font-size: 0.95rem; opacity: 0.8; line-height: 1.6; color: var(--text-color); }
.pf-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }

/* 4. KARŞILAŞTIRMA (Biz vs Rakipler) - MOBIL FIX */
.vs-section { 
    padding: 80px 5%; 
    background: var(--accent-bg); 
    width: 100%; 
    overflow: hidden; /* Taşan gölgeleri kırp */
}
.vs-container { 
    max-width: 1000px; margin: 0 auto; 
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; 
    align-items: stretch; width: 100%;
}
.vs-card { 
    padding: 40px; border-radius: 16px; 
    display: flex; flex-direction: column; justify-content: center;
    width: 100%; /* Kart genişliğini sınırla */
}

/* Rakip Kartı */
.vs-card.competitor { background: #e2e8f0; color: #475569; }
.vs-card.competitor h3 { color: #334155; }
[data-theme="dark"] .vs-card.competitor { background: #1e293b; color: #cbd5e1; }
[data-theme="dark"] .vs-card.competitor h3 { color: #ffffff; }

/* Kladim Kartı */
.vs-card.kladim { 
    background: white; border: 2px solid var(--primary-color); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    margin-top: 0; 
}
[data-theme="dark"] .vs-card.kladim {
    background: #0f172a; border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
[data-theme="dark"] .vs-card.kladim h3 { color: #ffffff; }

.vs-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }
/* Liste metinlerinin taşmasını engelle */
.vs-list li div, .vs-list li strong { word-break: break-word; } 

/* 5. BAŞVURU FORMU */
.partner-form-section { padding: 100px 5%; background: var(--bg-color); text-align: center; width: 100%; overflow: hidden; }
.partner-form-wrapper { 
    max-width: 800px; margin: 0 auto; text-align: left; 
    background: var(--accent-bg); padding: 50px; 
    border-radius: 20px; border: 1px solid var(--border-color);
    width: 100%; 
}
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- RESPONSIVE DÜZELTMELER (MOBİL) --- */
@media (max-width: 992px) {
    /* Hero */
    .partner-hero { padding: 100px 5% 60px; }
    .partner-hero h1 { font-size: 2.2rem; }

    /* Dashboard */
    .p-ui-sidebar { display: none; } /* Yan menüyü gizle */
    .partner-ui-container { width: 95%; margin: 20px auto 50px; }
    .p-ui-content { padding: 15px; } /* İç boşluğu azalt */

    /* Gridler Tek Sütun */
    .pf-grid { grid-template-columns: 1fr; gap: 25px; }
    .vs-container { grid-template-columns: 1fr; gap: 30px; }
    .pf-row { grid-template-columns: 1fr; gap: 15px; }

    /* Karşılaştırma Bölümü Fix */
    .vs-section { padding: 50px 5%; }
    .vs-card { padding: 25px; }
    
    /* Mobilde Kladim Kartı Gölgesini Kaldır (Taşmayı Önler) */
    .vs-card.kladim { 
        box-shadow: none; 
        border: 2px solid var(--primary-color); 
    }

    /* Form */
    .partner-form-wrapper { padding: 20px; }
    .partner-form-section { padding: 60px 5%; }
}

/* --- WHITE LABEL SAYFASI ÖZEL (SCROLL FIXED) --- */

.wl-hero {
    background: #0b0f19; /* Deep Dark */
    padding: 140px 5% 100px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Animasyon taşmasını engeller */
    color: white;
    width: 100%;
}
.wl-hero::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(0,0,0,0) 50%);
    animation: rotate 20s linear infinite; z-index: 0;
}
.wl-content { position: relative; z-index: 2; }
.wl-hero h1 {
    font-size: 3.5rem; font-weight: 800; margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    word-wrap: break-word;
}
.wl-hero p {
    font-size: 1.25rem; color: #94a3b8; max-width: 800px; margin: 0 auto; line-height: 1.6;
}

/* Konsept Bölümü (Build vs Buy) */
.wl-concept-section { padding: 80px 5%; background: var(--bg-color); width: 100%; overflow: hidden; }
.wl-concept-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; 
    max-width: 1200px; margin: 0 auto; align-items: center; 
}
.wl-concept-text h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--text-color); }
.wl-concept-text p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 30px; }
.build-buy-chart {
    background: var(--accent-bg); padding: 40px; border-radius: 20px; border: 1px solid var(--border-color);
}
.chart-row { display: flex; justify-content: space-between; margin-bottom: 15px; align-items: center; }
.chart-bar-bg { flex: 1; height: 10px; background: #e2e8f0; margin: 0 20px; border-radius: 5px; overflow: hidden; }
.chart-bar-fill { height: 100%; border-radius: 5px; }

/* BRANDING SIMULATOR (GÖRSEL KANIT) */
.wl-simulator-section { 
    background: #1e293b; padding: 100px 5%; 
    overflow: hidden; /* FIX: Taşmayı önler */
    width: 100%;
}
.simulator-container {
    max-width: 1200px; margin: 0 auto; 
    display: grid; grid-template-columns: 350px 1fr; gap: 0;
    border-radius: 16px; overflow: hidden; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.3); border: 1px solid #334155;
    background: #0f172a;
}

/* Sol Taraf: Ayarlar */
.sim-settings { background: #0f172a; padding: 40px; border-right: 1px solid #334155; }
.sim-title { color: white; font-weight: 700; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
.sim-group { margin-bottom: 25px; }
.sim-label { color: #94a3b8; font-size: 0.85rem; margin-bottom: 10px; display: block; font-weight: 600; }
.sim-input-fake {
    background: #1e293b; border: 1px solid #334155; padding: 10px; border-radius: 6px; color: white; font-size: 0.9rem; width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.color-picker-fake { width: 25px; height: 25px; border-radius: 4px; background: #6366f1; border: 2px solid white; cursor: pointer; }

/* Sağ Taraf: Canlı Önizleme */
.sim-preview { 
    background: #f8fafc; padding: 50px; 
    display: flex; align-items: center; justify-content: center; 
    position: relative; overflow: hidden;
}
.sim-window {
    width: 100%; max-width: 600px; 
    background: white; border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    overflow: hidden; border: 1px solid #e2e8f0;
}
.sim-win-header { background: #6366f1; padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; color: white; }
.sim-win-logo { font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }
.sim-win-body { padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sim-stat-card { background: #f1f5f9; padding: 20px; border-radius: 8px; text-align: center; }
.sim-stat-num { font-size: 1.5rem; font-weight: 700; color: #334155; }
.sim-stat-lbl { font-size: 0.8rem; color: #64748b; }

/* Teknik Derinlik (Grid) */
.wl-tech-section { padding: 100px 5%; background: var(--bg-color); width: 100%; overflow: hidden; }
.wl-tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.wl-tech-card { padding: 30px; border: 1px solid var(--border-color); border-radius: 12px; transition: 0.3s; }
.wl-tech-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.wl-tech-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-color); }
.wl-tech-card p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }
.wl-tech-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 20px; }

/* --- RESPONSIVE FIXES (WHITE LABEL) --- */
@media (max-width: 992px) {
    .wl-hero { padding: 100px 5% 60px; }
    .wl-hero h1 { font-size: 2.2rem; }
    
    .wl-concept-grid { grid-template-columns: 1fr; gap: 40px; }
    .build-buy-chart { padding: 20px; } /* Chart padding azaltıldı */
    
    /* Simulator Fix */
    .simulator-container { 
        grid-template-columns: 1fr; 
        box-shadow: none; /* Mobilde gölge taşmasını engelle */
    }
    .sim-settings { 
        padding: 25px; 
        border-right: none; 
        border-bottom: 1px solid #334155; 
    }
    .sim-preview { 
        padding: 20px; /* Padding ciddi oranda azaltıldı */
    }
    .sim-win-body { 
        grid-template-columns: 1fr; /* Simülatör içi tek sütun */
        gap: 10px; 
    }
    
    /* Tech Grid */
    .wl-tech-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* GHOST BUTON STİLİ */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px; /* Buton genişliği */
    background-color: transparent; /* Arka plan şeffaf */
    color: var(--text-color); /* Yazı rengi tema rengi olsun */
    border: 1px solid var(--border-color); /* İnce bir çerçeve */
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--primary-color); /* Hover'da çerçeve mavi olsun */
    color: var(--primary-color); /* Yazı mavi olsun */
    background-color: rgba(0, 102, 255, 0.05); /* Çok hafif bir arka plan gelsin */
}

/* --- BLOG DETAY SAYFASI --- */

/* Genel Düzen */
.blog-page-container {
    /* 1100px yerine 1300px yapıldı. Hem dolu durur hem dağılmaz. */
    max-width: 1300px; 
    margin: 40px auto;
    padding: 0 5%;
    display: grid;
    /* 1fr: Kalan tüm alanı yazıya ver, 300px: Sidebar sabit kalsın */
    grid-template-columns: 1fr 300px; 
    gap: 60px;
}

/* Sol Taraf: Makale İçeriği */
.blog-main {
    width: 100%;
    min-width: 0; /* Grid taşmasını önler */
}

/* Makale Başlığı (Hero) */
.blog-header { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
.blog-meta { display: flex; align-items: center; gap: 15px; color: var(--text-gray); font-size: 0.9rem; margin-bottom: 15px; }
.blog-cat { color: var(--primary-color); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.blog-title { font-size: 2.5rem; line-height: 1.2; font-weight: 800; color: var(--text-color); margin-bottom: 20px; }

/* --- İÇERİK TİPOGRAFİSİ --- */
.blog-content {
    color: var(--text-color);
    font-size: 1.1rem; /* Okuma kolaylığı için büyük punto */
    line-height: 1.8;  /* Ferah satır aralığı */
}

.blog-content p { margin-bottom: 25px; opacity: 0.9; }

.blog-content h2 {
    font-size: 1.8rem; font-weight: 700; color: var(--text-color);
    margin: 50px 0 20px 0; /* Üstten boşluk bırakır */
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 1.4rem; font-weight: 600; color: var(--text-color);
    margin: 40px 0 15px 0;
}

.blog-content ul, .blog-content ol { margin-bottom: 25px; padding-left: 20px; }
.blog-content li { margin-bottom: 10px; position: relative; }

/* Linkler */
.blog-content a { color: var(--primary-color); text-decoration: underline; font-weight: 500; }
.blog-content a:hover { color: var(--primary-hover); }

/* Alıntı (Blockquote) */
.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    background: var(--accent-bg);
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic; color: var(--text-color);
}

/* Kod Blokları (Teknik Blog için Kritik) */
.blog-content pre {
    background: #1e293b; /* Her zaman koyu */
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    border: 1px solid #334155;
}
.blog-content code {
    background: var(--accent-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: monospace;
    color: var(--primary-color);
}
.blog-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Görseller */
.blog-content img {
    max-width: 100%; height: auto;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}

/* --- SIDEBAR --- */
.blog-sidebar { position: sticky; top: 100px; height: fit-content; }

.sidebar-widget {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}
.widget-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--text-color); border-bottom: 2px solid var(--accent-bg); padding-bottom: 10px; }

/* Yazar Kutusu */
.author-box { display: flex; align-items: center; gap: 15px; }
.author-img { width: 50px; height: 50px; border-radius: 50%; background: #ccc; object-fit: cover; }
.author-info h5 { margin: 0; font-size: 1rem; color: var(--text-color); }
.author-info span { font-size: 0.8rem; color: var(--text-gray); }

/* CTA (Ürün Tanıtımı) */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white; text-align: center; border: none;
}
.sidebar-cta h4 { color: white; margin-bottom: 10px; font-size: 1.2rem; }
.sidebar-cta p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 20px; }
.btn-white { background: white; color: var(--primary-color); padding: 10px 20px; border-radius: 6px; font-weight: 600; display: inline-block; }

/* MOBİL */
@media (max-width: 992px) {
    .blog-page-container { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; margin-top: 40px; }
    .blog-title { font-size: 2rem; }
}

/* --- BLOG ANA SAYFA (SADE & KOMPAKT) --- */

/* Basit Başlık Alanı */
.blog-simple-header {
    padding: 60px 5% 40px;
    text-align: center;
    background: var(--bg-color);
}
.blog-simple-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--text-color); margin-bottom: 10px; }
.blog-simple-header p { font-size: 1.1rem; color: var(--text-gray); }

/* Ana Konteyner */
.blog-feed-container {
    max-width: 1300px; margin: 0 auto; padding: 0 5% 80px;
}

/* Öne Çıkan (Featured) - Biraz daha kompakt */
.featured-post {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; /* Boşluk kaldırıldı, bitişik */
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 16px; overflow: hidden; margin-bottom: 50px;
    align-items: stretch; /* Yükseklikleri eşitle */
}
.featured-post:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--primary-color); }
.fp-image { height: 100%; min-height: 300px; object-fit: cover; width: 100%; }
.fp-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.fp-tag { 
    color: var(--primary-color); font-weight: 700; text-transform: uppercase; 
    font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px;
}
.fp-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; line-height: 1.3; color: var(--text-color); }
.fp-desc { color: var(--text-gray); font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }

/* POST GRID (KÜÇÜLTÜLDÜ) */
.posts-grid {
    display: grid; 
    /* 350px yerine 260px yapıldı. Kartlar küçüldü, satıra 4 tane sığar */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 30px; /* Boşluk 40px'den 30px'e düştü */
}

.post-card {
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 12px; overflow: hidden; transition: 0.3s;
    display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary-color); }

/* Görsel Alanı Küçüldü */
.pc-img-wrapper { height: 160px; overflow: hidden; position: relative; } /* 220px'den 160px'e düştü */
.pc-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.post-card:hover .pc-img { transform: scale(1.05); }

/* İçerik Alanı Sıkılaştırıldı */
.pc-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-meta { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-gray); margin-bottom: 8px; }
.pc-dot { width: 3px; height: 3px; background: var(--text-gray); border-radius: 50%; }

/* Başlık Fontu Küçüldü */
.pc-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-color); line-height: 1.4; }
.pc-excerpt { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; margin-bottom: 15px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Link */
.pc-link { color: var(--primary-color); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 4px; margin-top: auto; }

/* Hidden items for Lazy Load simulation */
.post-hidden { display: none; }

/* Load More Button */
.load-more-container { text-align: center; margin-top: 50px; }
.btn-load-more {
    padding: 12px 30px; border-radius: 50px; border: 1px solid var(--border-color);
    background: var(--card-bg); color: var(--text-color); font-weight: 600; cursor: pointer; transition: 0.2s;
}
.btn-load-more:hover { border-color: var(--primary-color); color: var(--primary-color); }

@media (max-width: 992px) {
    .featured-post { grid-template-columns: 1fr; }
    .fp-image { height: 200px; min-height: auto; }
}

/* ========================================= */
/* --- AUTH PAGES (LOGIN/SIGNUP) STYLES --- */
/* ========================================= */

.login-container { 
    display: flex; min-height: 100vh; width: 100%; 
    background: #ffffff; 
    /* Auth Sayfası Değişkenleri */
    --auth-text-dark: #0f172a;
    --auth-text-gray: #64748b;
    --auth-border: #cbd5e1;
    --auth-bg-light: #f1f5f9;
}

/* SOL TARAF (FORM) */
.login-left {
    width: 50%;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    padding: 60px; /* Login sayfasındaki geniş padding */
    background: #ffffff; 
    position: relative;
    color: var(--auth-text-dark);
}

.form-wrapper { width: 100%; max-width: 750px; }

.auth-logo {
    /* position: absolute;  <-- KALDIRILDI: Çakışmayı önleyen asıl değişiklik */
    /* top: 50px; left: 60px; <-- KALDIRILDI */
    position: relative; 
    width: 100%;
    max-width: 750px; /* Form wrapper ile hizalamak için */
    margin-bottom: 40px; /* Aşağısındaki elemanla (badge/header) mesafe */
    display: flex; align-items: center; gap: 12px; 
    font-size: 1.8rem; font-weight: 800; color: var(--auth-text-dark); 
    text-decoration: none;
}
.auth-logo span { color: var(--primary-color); }

/* Güven Rozeti (Varsayılan: Mavi/Signup) */
.trust-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(99, 102, 241, 0.1); color: #4f46e5;
    padding: 10px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 700;
    margin-bottom: 30px; border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Güven Rozeti (Yeşil/Login Varyasyonu) */
.trust-badge.success {
    background: rgba(16, 185, 129, 0.1); 
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.auth-header { margin-bottom: 40px; }
.auth-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--auth-text-dark); margin: 0 0 15px 0; letter-spacing: -1px; }
.auth-header p { color: var(--auth-text-gray); margin: 0; font-size: 1.1rem; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 25px; position: relative; }
.form-label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 1rem; color: var(--auth-text-dark); }

.input-icon-wrapper { position: relative; }
.input-icon {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    color: var(--auth-text-gray); font-size: 1.3rem; opacity: 0.6;
}

/* Inputlar (Büyük Stil) */
.form-input {
    width: 100%; 
    padding: 18px 20px 18px 55px; /* Login sayfasındaki büyük padding */
    font-size: 1.1rem; /* Büyük yazı */
    border: 2px solid var(--auth-border);
    border-radius: 12px;
    background: var(--auth-bg-light); color: var(--auth-text-dark); 
    transition: 0.3s; font-family: inherit; font-weight: 500;
}
.form-input:focus { outline: none; border-color: var(--primary-color); background: #ffffff; box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05); }
.form-input:focus + .input-icon { opacity: 1; color: var(--primary-color); }

.password-toggle {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: var(--auth-text-gray); cursor: pointer; font-size: 1.3rem; z-index: 2;
}
.password-toggle:hover { color: var(--auth-text-dark); }

/* Login Sayfası Ekstraları (Beni Hatırla / Şifremi Unuttum) */
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; font-size: 1rem; color: var(--auth-text-gray); }
.remember-me { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; font-weight: 500; }
.forgot-link { color: var(--primary-color); font-weight: 600; text-decoration: none; transition: 0.2s; }
.forgot-link:hover { text-decoration: underline; color: var(--primary-hover); }

/* Signup Sayfası Ekstraları (Sözleşme) */
.terms-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 30px; font-size: 0.95rem; color: var(--auth-text-gray); line-height: 1.5; }
.terms-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary-color); cursor: pointer; }
.terms-check a { color: var(--auth-text-dark); font-weight: 600; text-decoration: underline; }

.btn-auth {
    width: 100%; padding: 18px; border-radius: 12px;
    background: var(--primary-color); color: white; border: none;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}
.btn-auth:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3); }

.auth-footer { text-align: center; margin-top: 40px; font-size: 1rem; color: var(--auth-text-gray); }
.auth-footer a { color: var(--auth-text-dark); font-weight: 700; text-decoration: none; margin-left: 5px; }
.auth-footer a:hover { color: var(--primary-color); text-decoration: underline; }

/* SAĞ TARAF (GÖRSEL) */
.login-right {
    width: 50%;
    background: #0f172a; 
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 80px; color: white; text-align: center; position: relative; overflow: hidden;
}
.abstract-circle { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(0,0,0,0) 70%); filter: blur(60px); opacity: 0.6; }

/* Daire Pozisyonları (Login/Signup Ortak Ayarlandı) */
.c1 { width: 600px; height: 600px; top: -150px; right: -150px; }
.c2 { width: 500px; height: 500px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(0,0,0,0) 70%); }
/* Yeşil Daire Varyasyonu */
.c-green { background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(0,0,0,0) 70%) !important; }

.feature-box { position: relative; z-index: 10; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); padding: 50px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.1); max-width: 600px; }
.feature-icon { font-size: 4rem; color: var(--primary-color); margin-bottom: 25px; display: block; }
.feature-title { font-size: 2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.feature-desc { opacity: 0.8; line-height: 1.7; font-size: 1.2rem; }

/* AUTH RESPONSIVE */
@media (max-width: 1100px) {
    .auth-header h1 { font-size: 2rem; }
    .form-wrapper { max-width: 100%; }
}

@media (max-width: 992px) {
    .login-container { flex-direction: column; }
    .login-right { display: none; }
    .login-left { width: 100%; padding: 40px 25px; min-height: 100vh; justify-content: flex-start; }
    .auth-logo { position: static; margin-bottom: 40px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .auth-header h1 { font-size: 1.8rem; }
}

/* reCAPTCHA Kapsayıcı */
.recaptcha-wrapper { margin-bottom: 25px; display: flex; justify-content: flex-start; }
@media (max-width: 400px) {
    .recaptcha-wrapper { transform: scale(0.85); transform-origin: 0 0; }
}
/* =========================================
   MODERN SOSYAL MEDYA İKONLARI
   ========================================= */
.social-links-modern {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links-modern a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Tam yuvarlak profesyonel görünüm */
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(148, 163, 184, 0.3); /* Soft bir kenarlık */
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-modern a:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-4px); /* Üzerine gelince hafif yukarı kalkma efekti */
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4); /* Kladim mavisine uygun gölge */
}

/* Mobil menüdeki sosyal ikonlar için ekstra ortalama ayarı */
.mobile-social-info {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    margin-top: 10px;
}
.mobile-social-info .social-links-modern {
    margin-top: 0;
}
/* =========================================
   404 HATA SAYFASI TASARIMI
   ========================================= */
.error-page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Header ve footer arasında tam ortalanması için */
    padding: 60px 20px;
    background-color: transparent;
    text-align: center;
}

.error-container {
    max-width: 600px;
    width: 100%;
}

.error-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: floatingCloud 3s ease-in-out infinite;
}

.error-icon {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.8;
}

/* 404 yazısını ikonun üzerine hafif şeffaf yerleştiriyoruz */
.error-glitch-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 5px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.error-description {
    font-size: 1.1rem;
    color: #64748b; /* Soft bir gri tonu */
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Primary buton zatan var, ama outline buton için ek stil: */
.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Bulut süzülme animasyonu */
@keyframes floatingCloud {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobil Uyumluluk */
@media (max-width: 576px) {
    .error-title { font-size: 2rem; }
    .error-icon { font-size: 100px; }
    .error-actions { flex-direction: column; }
    .error-btn { width: 100%; justify-content: center; }
}