/* === GENEL AYARLAR VE DEĞİŞKENLER === */
:root {
    --primary-color: #007BFF;  /* Kurumsal Mavi */
    --primary-hover: #0056b3;
    --secondary-color: #28a745; /* Vurgu Rengi - Yeşil */
    --text-dark: #1a1a1a;
    --text-light: #555;
    --container-width: 1140px;
    --font-family: 'Inter', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: #f9f9f9;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* === 1. NAVİGASYON MENÜSÜ === */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: var(--primary-color);
}

/* === CTA BUTONLARI (Genel) === */
.cta-button {
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.nav-cta {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
}


/* === 2. HERO (KARŞILAMA) BÖLÜMÜ === */
.hero {
    /* Arka plan görseli için yer tutucu */
    background-color: #eef5ff; /* Görsel yüklenene kadar mavi tonu */
    /* background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('path/to/your/image.jpg'); 
    background-size: cover;
    background-position: center;
    */
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px; /* İçeriği ortada daha dar tutar */
}

.hero-title {
    font-size: 3.5rem; /* 56px */
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem; /* 20px */
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}


/* === Mobil Uyumluluk (Basit) === */
@media (max-width: 768px) {
    .navbar nav, .nav-cta {
        display: none; /* Mobil için menüyü gizle (hamburger menü gerekir) */
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* === 3. SORUN / ÇÖZÜM BÖLÜMÜ === */
.problem-solution {
    padding: 5rem 0;
    background-color: #ffffff; /* Hero'dan farklı olarak beyaz arka plan */
}

/* Genel Bölüm Başlığı Stili (Diğer bölümlerde de kullanacağız) */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color-light, #eef5ff);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
/* Bölüm Başlığı Bitişi */


.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki eşit sütun */
    gap: 2rem;
    align-items: flex-start;
}

.problem-card, .solution-card {
    border-radius: 12px;
    padding: 2rem;
}

.problem-card {
    background-color: #fff8f8; /* Hafif kırmızımsı arka plan */
    border: 1px solid #ffe0e0;
}

.solution-card {
    background-color: #f6fff8; /* Hafif yeşilimsi arka plan */
    border: 1px solid #dcfce7;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.problem-card .card-title {
    color: #d9534f; /* Kırmızı */
}

.solution-card .card-title {
    color: #5cb85c; /* Yeşil */
}

.problem-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-solution li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.problem-solution li:last-child {
    margin-bottom: 0;
}

.problem-solution .icon {
    display: inline-block;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4; /* İkonu metinle hizala */
}

.problem-solution li strong {
    font-weight: 600;
    color: var(--text-dark);
    display: block; /* Başlığı bir alt satıra indirir */
}

/* === Mobil Uyumluluk === */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr; /* Mobilde sütunları alt alta getir */
    }
}

/* === 4. ÖZELLİKLERE GENEL BAKIŞ BÖLÜMÜ === */
.features {
    padding: 5rem 0;
    background-color: #f9fafb; /* Hafif kirli beyaz */
}

.features-grid {
    display: grid;
    /* Mobilde 1, tablette 2, masaüstünde 4 sütun */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem; /* Kartlar arası boşluk */
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* İkon boyutu */
    margin-bottom: 1.5rem;
    /* Renkler HTML içinde inline olarak verildi */
}

.feature-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* === Mobil Uyumluluk === */
@media (max-width: 768px) {
    .features-grid {
        /* Ekran küçüldüğünde 2 sütuna düş */
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* === 5. DETAYLI ÖZELLİKLER BÖLÜMLERİ === */
.feature-detail {
    padding: 6rem 0;
}

/* Arka plan renklerini değiştirmek için (zemin ayrımı) */
.feature-detail:nth-child(odd) {
    background-color: #ffffff;
}
.feature-detail:nth-child(even) {
    background-color: #f9fafb; /* .features bölümüyle aynı */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Sütunlar arası daha fazla boşluk */
    align-items: center; /* İçeriği dikeyde ortala */
}

.feature-text h2.section-title,
.feature-text .section-subtitle,
.feature-text .section-tag {
    text-align: left; /* Başlıkları sola hizala */
    margin-left: 0;
    margin-right: 0;
    max-width: none; /* Genişlik kısıtlamasını kaldır */
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.feature-benefits li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.feature-benefits li::before {
    content: '✓'; /* Checkmark ikonu */
    color: var(--secondary-color); /* Yeşil */
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 2px; /* Dikey hizalama */
}

.feature-benefits li strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block; /* Başlık ve açıklamayı ayır */
    margin-bottom: 0.25rem;
}

.feature-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e5e7eb; /* Yer tutucu rengi */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
    font-size: 1.2rem;
}

/* === Mobil Uyumluluk === */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 2rem;
    }

    .feature-text {
        text-align: center; /* Mobilde yazıları ortala */
    }

    .feature-text h2.section-title,
    .feature-text .section-subtitle,
    .feature-text .section-tag {
        text-align: center; /* Başlıkları da ortala */
    }

    /* Ters mizanpajlı bölümlerde (görsel üstte) görseli üste al */
    .feature-alt .feature-grid .feature-image-placeholder {
        order: -1;
    }

    .feature-image-placeholder {
        height: 300px; /* Mobilde görseli biraz küçült */
    }
}

/* === 6. BİZ KİMİZ & NEDEN ÜCRETSİZ? BÖLÜMÜ === */
.why-free {
    padding: 5rem 0;
    background-color: #ffffff; /* Beyaz zemin */
}

.about-us-text {
    max-width: 800px; /* Metin alanını okunaklı tut */
    margin: 0 auto 2.5rem auto; /* Ortala ve boşluk bırak */
    text-align: center; /* Metni ortala */
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-us-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider-line {
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 3.5rem auto; /* Ortala ve boşluk bırak */
    opacity: 0.3;
}

.why-free-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütunlu yapı */
    gap: 2rem;
}

.why-free-card {
    text-align: center;
    padding: 1.5rem;
}

.why-free-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-free-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-free-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* === 7. FAYDALAR BÖLÜMÜ === */
.benefits {
    padding: 5rem 0;
    background-color: #f9fafb; /* Kirli beyaz zemin */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    background-color: #ffffff; /* Fayda kartları beyaz */
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color); /* Ana Renk */
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* === 8. TEKNOLOJİ BÖLÜMÜ === */
.technology {
    padding: 5rem 0;
    background-color: #ffffff; /* Beyaz zemin */
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.tech-logo-item .tech-icon {
    font-size: 3rem; /* Emoji/İkon boyutu */
}

.tech-logo-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem 0;
}

.tech-logo-item p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 300px;
    margin: 0 auto;
}

/* === Mobil Uyumluluk === */
@media (max-width: 768px) {
    .why-free-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .tech-logos {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 2.5rem;
    }
}


/* === 9. SON ÇAĞRI (FINAL CTA) BÖLÜMÜ === */
.final-cta {
    background-color: var(--primary-color); /* Ana Mavi Arka Plan */
    padding: 6rem 0;
    text-align: center;
}

.final-cta .section-title,
.final-cta .section-subtitle {
    color: #ffffff; /* Beyaz Metin */
}

.final-cta .section-subtitle {
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.final-cta-button {
    background-color: #ffffff; /* Beyaz Buton */
    color: var(--primary-color); /* Mavi Metin */
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* === 10. FOOTER (ALT BİLGİ) BÖLÜMÜ === */
.footer {
    background-color: #1a202c; /* Koyu Zemin */
    color: #a0aec0; /* Açık Gri Metin */
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* 4 sütunlu yapı */
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #3a4150;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* === Mobil Uyumluluk (Footer) === */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Tablette 2 sütun */
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .footer-column {
        margin-bottom: 1.5rem; /* Sütunlar arası boşluk */
    }
}

/* Özellikler Alanı Görselleri */
.feature-image-placeholder {
    /* İkon, başlık ve yazıdan kalan padding/margin'leri sıfırla */
    padding: 0; 
    margin: 0;
    /* Kartın kenarlarına tam oturması için */
    overflow: hidden; 
}

.feature-image-placeholder img {
    width: 100%;
    height: 100%;
    /* Resmin orantısını koruyarak alanı kaplamasını sağlar */
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}

.feature-image-placeholder:hover img {
    transform: scale(1.05); /* Üzerine gelince hafifçe büyüme efekti */
}