/* --- MODERN & CLEAN TASARIM SİSTEMİ --- */
:root {
    --primary: #00f2ea;
    --secondary: #ff0050;
    --dark-bg: #0f172a;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --radius: 16px;
    --shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- HEADER --- */
header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
}


.highlight { color: var(--secondary); }

nav a {
    text-decoration: none; color: var(--text-main); font-weight: 600; margin-left: 25px;
    font-size: 14px; transition: 0.3s;
}
nav a:hover { color: var(--secondary); }

/* --- HERO SECTION --- */
.hero {
    position: relative; padding: 80px 20px 100px; text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffe4e6 100%);
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, var(--secondary), #ff4757);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 25px;
}
.dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; display: block; box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }

h1 { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero-desc { font-size: 18px; color: var(--text-light); margin-bottom: 40px; }

/* Arama Kutusu */
.search-wrapper { max-width: 700px; margin: 0 auto; }
.search-box {
    background: white; padding: 8px; border-radius: 60px;
    display: flex; align-items: center;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05); transition: 0.3s;
}
.search-box:focus-within { transform: translateY(-2px); box-shadow: 0 25px 50px -10px rgba(0,0,0,0.15); border-color: var(--primary); }

.icon-zone { padding-left: 20px; font-size: 20px; }
input {
    flex: 1; border: none; outline: none; padding: 15px 20px; font-size: 16px;
    font-family: 'Inter', sans-serif; color: var(--text-main);
}
.primary-btn {
    background: var(--dark-bg); color: white; border: none;
    padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.primary-btn:hover { background: var(--secondary); transform: scale(1.02); }

.security-note {
    margin-top: 20px; font-size: 12px; color: #94a3b8; font-weight: 500;
}

/* --- STATS BAR --- */
.stats-bar { background: white; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; padding: 25px 0; }
.stats-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; text-align: center; }
.stat-num { display: block; font-size: 24px; font-weight: 800; color: var(--text-main); }
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- FEATURES --- */
.features { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.feature-card {
    background: white; padding: 40px 30px; border-radius: 24px;
    box-shadow: var(--shadow); transition: 0.3s; border: 1px solid #f1f5f9;
}
.feature-card:hover { transform: translateY(-10px); }
.card-icon {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}
.card-icon.blue { background: #e0f2fe; color: #0284c7; }
.card-icon.pink { background: #fce7f3; color: #db2777; }
.card-icon.purple { background: #f3e8ff; color: #9333ea; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--text-light); }


/* --- FAQ --- */
.faq-section { padding: 80px 20px; background: #fff; }
.faq-wrapper { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-box { border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; }
.faq-trigger {
    width: 100%; padding: 20px; background: white; border: none; text-align: left;
    font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; cursor: pointer; color: var(--text-main);
}
/* MEVCUT CSS'TE BUNU BULUN VE GÜNCELLEYİN */
.faq-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out, padding 0.4s ease; /* transition'ı güncelledim */
    padding: 0 20px; 
    color: var(--text-light); 
    font-size: 14px; 
    background: #f8fafc; 
}
.faq-box.active .faq-content { 
    padding-bottom: 20px; 
    max-height: 500px; /* 150px'den 500px'e çıkardım ki uzun cevaplar kesilmesin */
}

/* --- SEO TEXT & FOOTER --- */
.seo-text-area { background: #f8fafc; padding: 60px 20px; color: #475569; }
.seo-text-area h2 { font-size: 24px; color: var(--text-main); margin-bottom: 15px; }
.seo-text-area p { margin-bottom: 15px; font-size: 15px; }

footer { background: var(--dark-bg); color: #94a3b8; padding: 40px 20px; font-size: 14px; text-align: center; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.links a { color: #cbd5e1; text-decoration: none; margin-left: 20px; transition: 0.2s; }
.links a:hover { color: white; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    .footer-inner { flex-direction: column; }
    .stats-grid { gap: 30px; }
}

/* --- NASIL ÇALIŞIR EKLEMELERİ --- */
.how-it-works-section { padding: 50px 20px; background: #f8fafc; }
.step-card { position: relative; overflow: hidden; text-align: center; }
.step-number {
    background: var(--dark-bg); color: white;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.step-card:hover .step-number { background: var(--secondary); transform: scale(1.1); transition: 0.3s; }


/* --- style.css --- */

/* 1. LOGO KAPSAYICISI (Yazı ve Resim arasındaki boşluk ayarı) */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    /* BURAYI GÜNCELLEYİN: Boşluğu 16px'e çıkardık (daha önce 10px veya 12px idi) */
    gap: 16px; 
    transition: transform 0.3s ease;
}

/* İsteğe bağlı: Üzerine gelince hafif büyüme efekti */
.logo:hover {
    transform: scale(1.02);
}

/* 2. LOGO GÖRSELİ (Yumuşak köşe ayarı) */
.logo-icon {
    height: 30px; /* Mobilde yükseklik */
    width: auto;
    object-fit: contain;
    /* BURAYI EKLEYİN: Kare logoyu yumuşatır */
    border-radius: 12px; 
    /* İsteğe bağlı: Hafif bir gölge ile kutuyu daha hoş gösterebilirsiniz */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

/* Masaüstü görünüm için medya sorgusu */
@media (min-width: 768px) {
    .nav-container {
        padding: 15px 30px;
    }
    .logo-icon {
        height: 35px; /* Masaüstünde logo biraz daha büyük */
    }
    .logo-text {
        font-size: 26px;
    }
}

/* --- TRUSTED & SECURED BY SECTION (Güvenlik Logoları) --- */
.trusted-by {
    text-align: center;
    padding: 30px 20px 10px;
    background: linear-gradient(to bottom, #ffe4e6 0%, #f8fafc 100%);
    border-bottom: 1px solid #f1f5f9;
}
.trusted-text {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.7;
}
.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #64748b;
    filter: grayscale(100%); /* Başlangıçta gri yapar */
    transition: all 0.3s ease;
    cursor: default;
}
.trust-logo-item:hover {
    filter: grayscale(0%); /* Üzerine gelince renklenir */
    transform: translateY(-3px) scale(1.05); /* Hafifçe yukarı kalkıp büyür */
    color: var(--text-main);
}
@media (max-width: 768px) {
    .trust-logos { gap: 25px; }
    .trust-logo-item { font-size: 15px; }
    .trusted-by { padding: 20px 20px 0; }
}

/* --- YILDIZLI DEĞERLENDİRME (Hero Reviews) --- */
.hero-reviews {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    animation: fadeIn 1s ease-in-out;
}
.stars {
    letter-spacing: 1px;
    font-size: 14px;
    /* Yıldızların daha canlı görünmesi için hafif bir gölge */
    text-shadow: 0 0 5px rgba(250, 204, 21, 0.4); 
}
.review-text strong {
    color: var(--text-main);
    font-weight: 700;
}