@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Space+Grotesk:wght@700&display=swap');

:root {
    --bg: #020617;
    --primary: #6366f1;
    --accent: #22d3ee;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f8fafc;
    --text-dim: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

body { 
    background-color: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 100px;
    background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border); z-index: 1000;
    display: flex; align-items: center;
}

.nav-container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo-link {
    display: flex; align-items: center; height: 100%; text-decoration: none;
}

.logo-link img {
    height: 96px; 
    width: auto;
    max-width: 360px;
    object-fit: contain;
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.btn-panel {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 10px 24px; border-radius: 8px; color: white;
    font-weight: 700; text-decoration: none; display: inline-block; transition: 0.3s; text-align: center;
}
.btn-panel:hover { box-shadow: 0 0 15px rgba(99, 102, 241, 0.5); }
.btn-panel.discord { background: #5865F2 !important; }

/* --- HERO & SAYAÇLAR --- */
.hero { padding: 160px 20px 80px; text-align: center; }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--text-dim); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }

.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px; max-width: 1000px; margin: 60px auto 0;
}
.stat-item h3 { font-size: 2.8rem; color: var(--primary); font-family: 'Space Grotesk'; }
.stat-item p { color: var(--text-dim); font-size: 0.9rem; text-transform: uppercase; }
.feature-card h3 { font-size: 1.4rem; margin-top: 10px; }

/* --- GENEL KARTLAR VE GRID --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 100px 20px 60px; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Space Grotesk'; font-size: 3rem; }

.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card, .price-card, .contact-card, .feature-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 48px; transition: 0.3s;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.card:hover, .price-card:hover, .contact-card:hover, .feature-card:hover { 
    border-color: var(--primary); transform: translateY(-5px); 
}

/* --- FİYATLANDIRMA ÖZEL --- */
.price-card.featured { border: 2px solid var(--primary); background: rgba(99, 102, 241, 0.05); }
.price-val { font-size: 2.2rem; font-weight: 800; font-family: 'Space Grotesk'; margin: 20px 0; text-align: center; }
.p-time { font-size: 1.1rem; color: var(--text-dim); font-weight: 400; }
.price-features { list-style: none; margin-bottom: 30px; color: var(--text-dim); padding: 0; }
.price-features li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.price-features i { color: var(--accent); }

/* --- TESTIMONIALS / MÜŞTERİ YORUMLARI --- */
.testimonials { padding: 40px 20px 60px; }
.testimonials .section-title h2 { font-size: 2.4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1200px; margin: 20px auto 0; }
.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    padding: 28px; border-radius: 16px; display: flex; flex-direction: column; gap: 14px; min-height: 180px;
}
.testimonial-quote { color: var(--text-dim); font-size: 1rem; line-height: 1.6; }
.testimonial-author { font-weight: 700; color: var(--text); }
.testimonial-role { color: var(--text-dim); font-size: 0.9rem; }
.testimonial-stars { color: var(--accent); }
.testimonial-card .fa-quote-left { color: rgba(34,211,238,0.12); font-size: 2.2rem; margin-bottom: -6px; }

@media (max-width: 768px) {
    .logo-link img { height: 64px; max-width: 220px; }
}

/* --- ANIMATIONS & PERFORMANCE --- */
.fade-in { opacity: 0; transform: translateY(12px); transition: transform 560ms cubic-bezier(.2,.9,.3,1), opacity 560ms ease; will-change: transform, opacity; }
.in-view { opacity: 1; transform: translateY(0); }

.testimonial-card { opacity: 0; transform: translateY(12px); transition: transform 560ms cubic-bezier(.2,.9,.3,1), opacity 560ms; will-change: transform, opacity; }
.testimonial-card.in-view { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 12px 30px rgba(2,6,23,0.55); }

.logo-link img { transition: transform 300ms ease, opacity 300ms ease; will-change: transform, opacity; }
.logo-link img:hover { transform: scale(1.04); }

.card, .price-card, .contact-card, .feature-card { will-change: transform, opacity; }

@media (max-width: 480px) {
    .fade-in, .testimonial-card { transition-duration: 420ms; }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in, .testimonial-card, .logo-link img, .card { transition: none !important; transform: none !important; }
}

/* Switch */
.switch-box { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 20px; }
.switch { width: 50px; height: 26px; background: #1e293b; border-radius: 20px; position: relative; cursor: pointer; border: 1px solid var(--border); }
.slider { width: 18px; height: 18px; background: var(--accent); border-radius: 50%; position: absolute; top: 3px; left: 4px; transition: 0.3s; }
.switch.active .slider { left: 26px; background: white; }
.switch.active { background: var(--primary); }

/* --- S.S.S. (Akordeon) --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 15px; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s; color: var(--text-dim); }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 200px; }

/* --- İLETİŞİM İKONLARI --- */
.contact-card { text-align: center; }
.contact-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

/* --- FOOTER --- */
.footer { border-top: 1px solid var(--border); padding: 40px; text-align: center; color: var(--text-dim); margin-top: 60px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .logo-link img { height: 56px; }
}