/* Temel sıfırlama */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #FFFFFF;
}
/* GLOBAL HEADER (ÜST NAVİGASYON BARI) */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    box-sizing: border-box;

    background-color: transparent;
    border-bottom: 1px solid transparent;

    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.4s ease-in-out;
    transform-origin: top center;
}

#main-header.header-hidden {
    transform: translateY(-100%);
}

#main-header.scrolled {
    background-color: #29355B;
    border-bottom: 1px solid #EAEAEA;
}

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

/* Sol Logo */
.nav-logo {
    text-decoration: none;
    display: block;
    position: relative;
    width: 190px;
    height: 70px;
    transition: height 0.3s ease;
}

.nav-logo img {
    height: 170px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

#main-header.scrolled .nav-logo {
    height: 50px;
}

#main-header.scrolled .nav-logo img {
    height: 120px;
}


.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.5vw, 32px);
}

.nav-links a {
    font-size: 1.050rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

#main-header.scrolled .nav-links a {
    color: #ffffff;
}

.nav-links a:hover {
    color: #AAA;
}

/* Orta "Soshy Club" Linki */
.nav-club-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.club-logo-wrapper {
    display: grid;
    align-items: center;
    justify-items: center;
}

.club-logo-wrapper img {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    height: 4.2rem;
    width: auto;
    object-fit: contain;
}

/* CTA Butonu [ Download App ] */
.nav-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 1rem;
    font-weight: 700;

    color: #000000;
    background-color: #FFFFFF;

    padding: 10px 16px;

    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

.nav-cta-button::after {
    content: '';
    display: block;
    width: 1.2em;
    height: 1.2em;
    background-color: currentColor;

    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='m12 15.375l-6-6l.7-.7l5.3 5.3l5.3-5.3l.7.7z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}


/* SAHNE 1: HERO */
#hero {
    min-height: 100svh;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    /* Kendi görselinizle değiştirin: natural.jpg */
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('natural.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-content {
    max-width: 800px;
    padding: 20px 5%;
    text-align: left;
}
.hero-baslik {
    font-family: 'Fredoka One', cursive; /* Yeni font */
    color: #D55335; /* İstediğiniz renk */
    font-size: 5rem;
    /* font-weight: 900; */ /* Fredoka One zaten kalın, bu satıra gerek kalmayabilir */
    margin: 0;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
}
.hero-alt-baslik {
    font-family: 'Poppins', sans-serif; /* Alt başlığı Poppins'te tutalım (veya Fredoka yapabiliriz) */
    color: #FFFFFF; /* Alt başlık rengi beyaz kalsın (veya #D55335 yapabiliriz) */
    font-size: 1.25rem;
    font-weight: 400;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    opacity: 0;
}

.explore-button {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    background: rgb(255, 255, 255);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.explore-button:hover {
    transform: scale(1.05);
}


/* ■■■ GÜNCELLENMİŞ SOSYAL KANIT BÖLÜMÜ STİLLERİ ■■■ */
#social-proof {
    background-color: #FFFFFF;
    color: #0a0a0a;
    padding: 120px 5%;
}
.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}
.proof-text {
    flex: 1;
    min-width: 300px;
}
.proof-text h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}
.proof-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}
.proof-button {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}
.proof-button:hover {
    transform: scale(1.05);
}

/* ■■■ GÜNCELLENMİŞ SOSYAL KANIT CSS (SEÇENEK 2: FAYDA LİSTESİ) ■■■ */

/* ■■■ GÜNCELLENMİŞ SOSYAL KANIT (ANİMASYONLU KART STİLİ) ■■■ */

.proof-benefits {
    /* Bu sınıf artık .proof-card-stack olarak yeniden adlandırıldı,
       ancak HTML'i değiştirmezseniz diye burada bırakıyorum.
       Eğer HTML'i güncellerseniz burayı .proof-card-stack yapın. */
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px; /* Kartlar arası boşluk */
}

/* ESKİ FAYDA LİSTESİ STİLLERİ (benefit-item, benefit-icon, vs.) SİLİNDİ */

.benefit-card {
    background-color: #f4f4f4; /* Beyaz arkaplan üzerine hafif gri */
    border-radius: 20px; /* Modern yuvarlak köşeler */
    padding: 28px;

    /* İnce bir gölge */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);

    /* Animasyon için başlangıç durumu (JS bunu kullanacak) */
    opacity: 0;
    transform: translateY(40px); /* 40px aşağıdan başlasın */

    /* Hover efekti için yumuşak geçiş */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    /* Üzerine gelince kartı hafifçe kaldır ve büyüt */
    transform: translateY(30px) scale(1.02); /* Hem kalksın hem büyüsün */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a; /* Siyah başlık */
    margin: 0 0 8px 0;
}

.benefit-card p {
    font-size: 1rem;
    color: #555; /* Koyu gri yazı */
    margin: 0;
    line-height: 1.6;
}

/* ■■■ SOSYAL KANIT STİLLERİ BİTİŞİ ■■■ */

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;

    /* Animasyon için (script.js'nizdeki ile aynı kalmalı) */
    opacity: 0;
    transform: translateY(30px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 45px; /* Ekran görüntünüzdeki gibi daha küçük */
    height: 45px;
    border-radius: 50%;

    /* "Bedava" hissi veren mor tik stili */
    background-color: #f0edff; /* Morun en açık tonu */
    color: #5E2FFF; /* Ana mor renk */

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    font-size: 1.5rem; /* '✓' ikonunun boyutu */
    line-height: 1;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a; /* Siyah başlık */
    margin: 0 0 5px 0;
}

.benefit-text p {
    font-size: 1rem;
    color: #555; /* Koyu gri */
    margin: 0;
    line-height: 1.5;
}

/* Sol taraftaki .proof-text p (değişmedi) */
.proof-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;

    /* Mor tik stili */
    background-color: #f0edff;
    color: #5E2FFF;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 5px 0;
}

.benefit-text p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
/* ■■■ SOSYAL KANIT STİLLERİ BİTİŞİ ■■■ */


/* FEATURES (MOR BÖLÜM) */
#features {
    background-color: rgb(150, 57, 36);
    color: #FFFFFF;
    padding: 120px 5%;
    text-align: center;
    height: 500vh;
}
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: sticky;
    top: 100px;
}
.features-title {
    font-size: 4.0rem;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background-color: #0a0a0a;
    padding: 30px;
    border-radius: 30px;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
}
.card-icon-placeholder {
    height: 180px;
    width: 100%;
    background-color: #222;
    border-radius: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #555;
    overflow: hidden; /* Taşan resmi gizle */
}

/* ■■■ CSS EKLEMESİ ■■■ */
/* İkonların kutuya sığmasını sağla */
.card-icon-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Resmi kutuya sığdır, gerekirse kırp */
}
/* ■■■ CSS EKLEMESİ SONU ■■■ */


.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 1rem;
    color: #AAA;
    line-height: 1.6;
    margin: 0;
}

/* PHILOSOPHY (SİNEMATİK BÖLÜM) */
#philosophy {
    background-color: #0a0a0a;
    color: #FFFFFF;
    height: 900vh;
    padding: 0;
    overflow: hidden;
}

.philosophy-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
    padding: 0 5%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 10;
    opacity: 0;
    color: #FFFFFF;
}

.philosophy-track {
    display: flex;
    width: 300%;
    height: 100%;
    opacity: 0;
}

.philo-card {
    width: 33.333%;
    height: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Her karta ayrı arkaplan resmi ata (KENDİ GÖRSELLERİNİZLE DEĞİŞTİRİN) */
.philo-card-1 {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('background.jpg'); /* <-- 1. KARTIN RESMİ */
}

.philo-card-2 {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('alone.jpg'); /* <-- 2. KARTIN RESMİ */
}

.philo-card-3 {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('group.jpg'); /* <-- 3. KARTIN RESMİ (veya farklı bir resim) */
}

.philo-text-overlay {
    width: 100%;
    padding: 80px 10%;
    box-sizing: border-box;
    opacity: 0;
}

.philo-card h3 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 20px;
}

.philo-card p {
    font-size: 1.25rem;
    color: #EAEAEA;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}


/* CTA BLOCK */
#cta-block {
    background-color: #0a0a0a;
    padding: 60px 5%;
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
}
.cta-container h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.explore-button.cta-variant {
    background-color: #D55335FF; /* Mor arkaplan */
    color: #FFFFFF; /* Beyaz yazı */
}



/* Responsive İyileştirmeler */
@media (max-width: 768px) {
    .hero-baslik, .cta-container h2 {
        font-size: 3.5rem; /* Başlıkları mobilde küçült */
    }
    .proof-container {
        gap: 30px;
    }
    .philo-card h3 {
        font-size: 2.5rem; /* Philosophy başlıklarını mobilde küçült */
    }
    .philo-card p {
        font-size: 1rem; /* Philosophy paragraflarını mobilde küçült */
    }
    .features-title {
        font-size: 2.5rem; /* Features başlığını mobilde küçült */
    }
}

/* ... (Mevcut diğer stilleriniz, #philosophy'ye kadar) ... */


/* ■■■ GÜNCELLENMİŞ BLOG BÖLÜMÜ (Hily Stili Yatay Kaydırma) ■■■ */
#blog {
    /* Sinematik 300vh yüksekliği kaldır, normal padding'e dön */
    padding: 0px 0 120px 0; /* Üst/Alt padding, YAN padding 0 */
    background-color: #0a0a0a;
    overflow: hidden; /* Dışarı taşmayı engelle */
}

.blog-container {
    /* Sticky ve 100vh yüksekliği kaldır */
    /* overflow-x: auto; */ /* Kaydırmayı etkinleştir */
    overflow-y: hidden;
    overflow-x: scroll; /* Yatay kaydırmayı her zaman göster (iOS uyumu) */

    display: flex; /* blog-track'i flex olarak hizala */

    /* Kaydırma çubuğunu gizle (Chrome, Safari, Edge) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.blog-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.blog-track {
    /* 300% genişliği kaldır */
    display: flex; /* Kartları yan yana diz */
    gap: 0; /* İsteğiniz üzerine kartlar arası boşluk SIFIR */

    /* Konteynere soldan padding vererek ilk kartın "yarım" değil "tam" başlamasını sağla */
    /* 5% padding'i #blog'dan alıp buraya taşıdık */
    padding: 0 5% 0 0;
}

.blog-card {
    /* 33.333% genişliği kaldır */
    width: 40vw; /* Ekran genişliğinin %40'ı. 2.5 kart = 100% */
    flex: 0 0 40vw; /* Küçülme/büyüme, temel 40vw */

    height: 700px; /* Sabit bir yükseklik */

    position: relative;
    display: block;
    text-decoration: none;



    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    transition: color 0.4s ease;

    /* İsteğiniz üzerine boşluk 0 olacak */
    /* margin-right: 30px; */ /* KALDIRILDI */
}
/* Son karta sağ boşluk ver (kaydırmanın bitişi için) */
/* .blog-track a.blog-card:last-child {
    margin-right: 5%;
} */


/* Kartın üzerindeki varsayılan siyah gradient (metnin okunması için) */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.blog-card-overlay {
    position: absolute;
    bottom: 0; /* Kartın altına yapışık */
    left: 0;
    right: 0;
    height: 70%; /* Kartın yüksekliğinin %50'si */
    background-color: #D55335FF;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Kartın metin içeriği (Padding'ler ilk tasarıma döndü) */
.blog-card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
    transition: color 0.4s ease;
    max-width: 90%; /* Kartın %90'ını kaplasın */
}

.blog-card-content h3 {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.blog-card-content p {
    font-size: 1rem;
    margin: 10px 0 0 0;
    line-height: 1.5;
    color: #EAEAEA;
    opacity: 1;
    transition: opacity 0.4s ease, color 0.4s ease;
}

/* Hover'da çıkan tarih (Padding ilk tasarıma döndü) */
.blog-card-date {
    font-size: 0.9rem;
    font-weight: 700;
    background-color: #FFFFFF;
    color: #0a0a0a;
    padding: 5px 12px;
    border-radius: 20px;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* Hover'da çıkan ok (Padding ilk tasarıma döndü) */
.blog-card-arrow {
    font-size: 2.5rem;
    font-weight: 400;
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 3;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}


/* --- HOVER EFEKTLERİ --- */
/* ... (hover efektleri değişmedi) ... */

.blog-card:hover {
    color: #0a0a0a;
}
.blog-card:hover::before {
    opacity: 0;
}
.blog-card:hover .blog-card-overlay {
    opacity: 0.55;
}
.blog-card:hover .blog-card-date {
    opacity: 1;
    transform: translateY(0);
}
.blog-card:hover .blog-card-arrow {
    opacity: 1;
    transform: translateX(0);
}
.blog-card:hover .blog-card-content p {
    color: #0a0a0a;
}
/* ■■■ BLOG STİLLERİ BİTİŞİ ■■■ */


/* Responsive İyileştirmeler */
@media (max-width: 768px) {
    /* ... (diğer responsive ayarlarınız) ... */

    /* YENİ EKLENEN BLOG RESPONSIVE AYARI */
    .blog-track {
        /* Mobilde de yan padding olsun */
        padding: 0 5%;
    }

    .blog-card {
        /* Mobilde 1 tam, 1 yarım kart görünsün */
        width: 70vw;
        flex: 0 0 70vw;
        height: 450px; /* Mobilde biraz daha kısa */
    }

    .blog-card-content h3 {
        font-size: 1.5rem; /* Mobilde başlık fontu */
    }
}

#footer {
    padding: 60px 5% 40px;
    background-color: #050505;
    color: #b0b0b0;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ÜST KISIM: Brand + 3 kolon link */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Sol marka bloğu */
.footer-brand {
    flex: 1 1 260px;
    min-width: 220px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-tagline {
    margin: 0 0 20px 0;
    color: #888;
    line-height: 1.5;
}

/* Dil satırı (Hily'deki EN + diller) */
.footer-language {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.footer-language .lang-current {
    font-weight: 700;
    color: #ffffff;
}

.footer-language .lang-separator {
    opacity: 0.5;
}

.footer-language a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-language a:hover {
    color: #ffffff;
}

/* Sağ kısım: 3 kolon link (Hily footer nav gibi) */
.footer-links-columns {
    flex: 2 1 480px;
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 24px;
}

.footer-col {
    min-width: 140px;
}

.footer-col-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #b0b0b0;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

/* ALT KISIM: sosyal + copyright + store badge */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

/* Sol alt */
.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Sosyal ikonlar - Hily tarzı küçük daireler */
.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    display: inline-flex;  /* GÜNCELLENDİ: Flexbox ile merkezleme için */
    align-items: center;    /* GÜNCELLENDİ: Dikey merkezleme */
    justify-content: center;/* GÜNCELLENDİ: Yatay merkezleme */

    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #cccccc;
    text-decoration: none;
    transition: background-color 0.2s ease; /* 'color' ve 'font' kuralları kaldırıldı */
}

.footer-social-icons a:hover {
    background-color: #ffffff;
    /* İkon rengi değişimi için aşağıdaki nota bakın */
}

/* YENİ KURAL (İkon resimlerinin boyutunu ayarlar) */
.footer-social-icon-img {
    width: 16px;  /* 30px'lik daire içinde 16px idealdir */
    height: 16px;
    display: block;
}

.footer-copy {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* ■■■ CSS DÜZELTMESİ 1 ■■■ */
/* Sağ alt: store badge'ler */
.footer-bottom-right {
    display: flex;
    flex-direction: row; /* 'column' DEĞİL, 'row' (YATAY) OLARAK DEĞİŞTİRİLDİ */
    align-items: center; /* DİKEYDE ORTALANDI */
    gap: 16px; /* Aralarına boşluk eklendi (8px yerine 16px) */
}

/* ■■■ CSS DÜZELTMESİ 2 (YENİ EKLENDİ) ■■■ */
/* Bu kuralların @media dışında, ana CSS'te olması gerekiyor */

/* [Simge] + [Yazı] linkinin kendisi */
.footer-store-link {
    display: inline-flex; /* Simge ve yazıyı yan yana getir */
    align-items: center;
    gap: 10px; /* Simge ve yazı arası boşluk */

    text-decoration: none;
    color: #b0b0b0; /* Link rengi */
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-store-link:hover {
    color: #ffffff; /* Üzerine gelince parlasın */
}

/* Simgenin boyutu */
.footer-store-icon {
    height: 20px; /* Boyutu 20px yapalım */
    width: auto;
    display: block;
    opacity: 0.9;
}


/* ESKİ KURALLAR (artık gerek yok) */
/* .footer-stores { ... } */
/* .store-badge img { ... } */
/* .footer-store-text { ... } */




@media (max-width: 480px) {

    .footer-links-columns {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        font-size: 2rem;
    }
}
/* ■■■ NAVİGASYON DOWNLOAD DROPDOWN STİLLERİ ■■■ */

/* 1. Wrapper: Konumlandırma için */
.nav-cta-wrapper {
    position: relative;
}

/* 2. Buton: <button> etiketine uyum sağlaması için güncellendi */
.nav-cta-button {
    /* Mevcut stilleriniz korunuyor */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    background-color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;

    /* Buton sıfırlamaları */
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif; /* Fontu miras almalı */
}

/* 2b. Buton oku (Zaten vardı, geçiş eklendi) */
.nav-cta-button::after {
    content: '';
    display: block;
    width: 1.2em;
    height: 1.2em;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='m12 15.375l-6-6l.7-.7l5.3 5.3l5.3-5.3l.7.7z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: transform 0.2s ease; /* Okun dönmesi için */
}

/* 2c. Dropdown açıkken oku 180 derece döndür */
.nav-cta-button.active::after {
    transform: rotate(180deg);
}

/* 3. Açılır Menü (Gizli) */
.nav-download-dropdown {
    position: absolute;
    top: calc(100% + 10px); /* Butonun 10px altına */
    right: 0;
    width: 180px; /* Sabit genişlik */
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #EAEAEA;
    z-index: 1100; /* Header'ın üstünde kalması için */

    /* Başlangıçta gizli */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* 4. Menüyü Gösteren Sınıf */
.nav-download-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 5. Menü İçindeki Linkler (Footer'dakinin beyaz temalısı) */
.nav-store-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0a0a0a; /* SİYAH YAZI */
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.nav-store-link:hover {
    background-color: #f4f4f4; /* Hafif gri hover */
}

/* 6. Menü İçindeki İkonlar */
.nav-store-icon {
    height: 22px;
    width: 22px;
    display: block;
    /* Footer'daki SVG'ler (appstore.svg, android.svg)
       büyük ihtimalle 'currentColor' kullanıyordur.
       Bu sayede otomatik olarak siyah (#0a0a0a) olacaklardır. */
}
/* Varsayılan: hamburger desktop'ta görünmesin */
.nav-mobile-toggle {
    display: none;
}
/* ========== MOBİL LAYOUT (≤ 768px) ========== */
@media (max-width: 768px) {

    /* HEADER & NAV */
    #main-header {
        padding: 10px 16px;
    }

    .nav-container {
        max-width: 100%;
        gap: 0;
        justify-content: flex-start;
    }

    .nav-logo {
        width: 140px;
        height: 48px;
    }

    .nav-logo img {
        height: 120px;
    }

    /* CTA sağ tarafa yaslansın */
    .nav-cta-wrapper {
        margin-left: auto;
    }

    .nav-cta-button {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    /* Desktop nav-link barını, mobilde üstten açılan overlay'e çeviriyoruz */
    .nav-links {
        position: fixed;
        top: 64px;          /* header yüksekliği kadar */
        left: 0;
        right: 0;
        padding: 16px 20px 20px;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        border-bottom: 1px solid #222;

        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        z-index: 999;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Scroll'da header'ı saklama efektini mobile kapat */
    #main-header.hidden {
        transform: translateY(0);
    }

    /* HAMBURGER BUTONU */
    .nav-mobile-toggle {
        display: inline-flex;
        margin-left: 12px;
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 999px;
        border: 1px solid rgba(248, 250, 252, 0.25);
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .nav-mobile-toggle span {
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 99px;
        background: #f9fafb;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-mobile-toggle span:nth-child(2) {
        margin-block: 3px;
    }

    .nav-mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .nav-mobile-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    /* HERO */
    #hero {
        align-items: flex-end;
        padding-bottom: 72px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 16px 40px;
        text-align: left;
    }

    .hero-baslik {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-alt-baslik {
        font-size: 1rem;
        margin: 14px 0 0;
    }

    .hero-cta {
        margin-top: 24px;
    }

    .explore-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* SOCIAL PROOF */
    #social-proof {
        padding: 60px 16px;
    }

    .proof-container {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .proof-text h2 {
        font-size: 2.1rem;
    }

    .proof-text p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .proof-benefits {
        gap: 16px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card h4 {
        font-size: 1.05rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    /* FEATURES – uzun sinematik yapı yerine daha normal mobile */
    #features {
        height: auto;
        padding: 72px 16px 80px;
        text-align: left;
    }

    .features-container {
        max-width: 100%;
        position: static;
        top: auto;
    }

    .features-title {
        font-size: 2rem;
        margin-bottom: 28px;
        opacity: 1;
        transform: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px 18px;
        border-radius: 20px;
        opacity: 1;
        transform: none;
    }

    .card-icon-placeholder {
        height: 120px;
        margin-bottom: 16px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    /* PHILOSOPHY – yatay scroll yerine dikey stack */
    #philosophy {
        height: auto;
        padding: 64px 0 40px;
        overflow: visible;
    }

    .philosophy-container {
        position: static;
        height: auto;
        width: 100%;
    }

    .philosophy-title {
        position: static;
        transform: none;
        padding: 0 16px;
        margin-bottom: 24px;
        width: 100%;
        font-size: 2rem;
        text-align: left;
        opacity: 1;
    }

    .philosophy-track {
        width: 100%;
        flex-direction: column;
        opacity: 1;
    }

    .philo-card {
        width: 100%;
        min-height: 320px;
    }

    .philo-text-overlay {
        opacity: 1;
        padding: 40px 16px 48px;
    }

    .philo-card h3 {
        font-size: 1.6rem;
    }

    .philo-card p {
        font-size: 0.95rem;
        max-width: none;
    }

    /* BLOG – zaten yatay scroll, biraz daha mobile uyum */
    #blog {
        padding: 32px 0 72px;
    }

    .blog-track {
        padding: 0 5%;
    }

    .blog-card {
        width: 70vw;
        flex: 0 0 70vw;
        height: 450px;
    }

    .blog-card-content h3 {
        font-size: 1.4rem;
    }

    .blog-card-content p {
        font-size: 0.9rem;
    }

    /* CTA BLOK */
    #cta-block {
        padding: 48px 16px 72px;
    }

    .cta-container {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .cta-container h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .explore-button.cta-variant {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* FOOTER – biraz sıkılaştırma (temelde zaten responsive) */
    #footer {
        padding: 40px 16px 32px;
    }

    .footer-container {
        gap: 28px;
    }

    .footer-bottom {
        gap: 16px;
    }
}
/* ■■■ ANA SAYFA FOOTER MOBİL DÜZENLEMESİ (V4 - ORTALI & YAN YANA BUTONLAR) ■■■ */
@media (max-width: 768px) {

    /* 1. Genel Footer Hizalama */
    #footer {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center; /* Tüm metinleri ortala */
    }

    .footer-container {
        align-items: center; /* İçerikleri ortala */
        gap: 30px;
    }

    /* 2. Üst Kısım (Marka ve Linkler) */
    .footer-top {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-brand {
        align-items: center; /* Flex ögelerini ortala */
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-tagline {
        margin: 0 auto 20px auto;
    }

    .footer-language {
        justify-content: center; /* Dilleri ortala */
        width: 100%;
    }

    /* Linkler yine solda kalsın ama ızgara düzgün dursun */
    .footer-links-columns {
        width: 100%;
        text-align: left;
        /* Grid yapısı style.css'de zaten tanımlı, dokunmuyoruz */
    }

    /* 3. Alt Kısım (Store & Copyright) */
    .footer-bottom {
        flex-direction: column-reverse; /* Copyright altta, Store üstte */
        align-items: center !important; /* Her şeyi ortala */
        gap: 30px;
        width: 100%;
        border-top: 1px solid #222;
        padding-top: 30px;
    }

    /* Copyright ve Sosyal İkonlar */
    .footer-bottom-left {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .footer-social-icons {
        justify-content: center; /* İkonları ortala */
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-copy {
        text-align: center;
        display: block;
        width: 100%;
    }

    /* 4. Store Butonları (YAN YANA VE ORTADA) */
    .footer-bottom-right {
        display: flex !important;
        flex-direction: row !important; /* Yan yana zorla */
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important; /* Ortala */
        gap: 15px !important;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Store linklerinin iç yapısını düzenle */
    .footer-store-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* ■■■ ANA SAYFA FOOTER FİNAL DÜZELTME (V5) ■■■ */
@media (max-width: 768px) {

    /* 1. Genel Footer Hizalama */
    #footer {
        padding: 40px 20px 40px 20px !important;
        text-align: center !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. Üst Kısım (Logo, Dil vb.) */
    .footer-top {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .footer-brand {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .footer-tagline {
        margin: 0 auto 20px auto !important;
    }

    .footer-language {
        justify-content: center !important;
        width: 100% !important;
    }

    /* 3. Linkler (2 Sütun) */
    .footer-links-columns {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 10px !important;
        width: 100% !important;
        text-align: left !important;
    }

    /* 4. Alt Kısım (Butonlar Yan Yana) */
    .footer-bottom {
        display: flex !important;
        flex-direction: column-reverse !important; /* Copyright altta kalsın */
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
        border-top: 1px solid #222 !important;
        padding-top: 30px !important;
    }

    /* --- BUTONLARI YAN YANA ZORLAYAN KISIM --- */
    .footer-bottom-right {
        display: flex !important;
        flex-direction: row !important; /* Yan yana (Satır) */
        flex-wrap: nowrap !important;     /* Asla alt satıra inme */
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
    }

    /* Store Linklerinin İç Yapısı */
    .footer-store-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
    }

    /* Copyright ve Sosyal Medya */
    .footer-bottom-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-social-icons {
        justify-content: center !important;
        margin-bottom: 15px !important;
    }

    .footer-copy {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
/* ■■■ MOBİL NAVİGASYON – HINGE FULLSCREEN (BLOG İLE AYNI) ■■■ */

/* Varsayılan: desktop’ta gizli */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

@media (max-width: 768px) {

    /* Hamburger sadece mobilde görünsün */
    .nav-mobile-toggle {
        display: flex;
        margin-left: 15px;
    }

    .nav-mobile-toggle.is-open {
        position: fixed;
        top: 28px;
        left: 5%;
        right: auto;
        transform: none;
    }

    /* Full ekran menü kapsayıcısı (blog.css ile birebir) */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        width: 100vw;
        height: 100vh;
        background-color: #0a0a0a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;

        padding: 120px 25px 40px 25px;
        box-sizing: border-box;

        border-bottom: none;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none; /* Eski translateY(-120%)’yi iptal et */

        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9990;
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    /* Link stilleri – büyük serif font, Hinge havası */
    .nav-links a {
        display: block;
        width: 100%;
        font-family: 'Times New Roman', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
        line-height: 1.2;

        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);

        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
    }

    .nav-links a:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-links a:hover {
        color: #cccccc;
    }

    /* Club linki için özel ayar (logo satırı) */
    .nav-club-link {
        margin-top: 0 !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
        border-top: none !important;
    }

    .nav-club-link .club-logo-wrapper {
        width: 100px;
        max-width: 100%;
        filter: none;
        opacity: 1;
        display: block;
        margin-top: 5px;
    }

    .nav-club-link .club-logo-wrapper img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        display: block;
    }

    /* Açılış animasyonları – sırayla içeri gelsin */
    .nav-links.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.is-open a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.is-open a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.is-open a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.is-open a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.is-open a:nth-child(5) { transition-delay: 0.3s; }

    /* Hamburger’in X ikonuna dönüşmesi */
    .nav-mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-mobile-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .nav-mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Menü açıkken arka plan kaymasını engelle */
body.menu-open {
    overflow: hidden;
}

}
/* =========================================
   MOBİL İÇERİK DÜZENLEMESİ (HEADER & FOOTER HARİÇ)
   ========================================= */

@media (max-width: 980px) {

    /* --- 1. HERO BÖLÜMÜ --- */
    #hero {
        /* Resmi mobilde daha iyi ortalar */
        background-attachment: scroll;
        background-position: center center;
        padding-top: 120px; /* Header payı */
        padding-bottom: 60px;
        min-height: auto; /* 100svh zorunluluğunu kaldır */
    }

    .hero-content {
        text-align: center; /* Mobilde ortalı metin daha iyidir */
        padding: 0 20px;
    }

    .hero-baslik {
        font-size: 2.8rem; /* 5rem'den küçültüldü */
        line-height: 1.1;
    }

    .hero-alt-baslik {
        font-size: 1.1rem;
        max-width: 100%;
        margin: 15px 0 30px;
    }

    .hero-cta {
        justify-content: center; /* Butonu ortala */
        margin-top: 20px;
    }

    /* --- 2. SOCIAL PROOF --- */
    #social-proof {
        padding: 60px 20px;
    }

    .proof-container {
        flex-direction: column;
        gap: 40px;
    }

    .proof-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .proof-text p {
        text-align: center;
    }

    .proof-text .proof-button {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }

    /* --- 3. FEATURES (MOR BÖLÜM - DÜZELTME) --- */
    /* Masaüstündeki 800vh yüksekliği iptal edip normal akışa alıyoruz */
    #features {
        height: auto !important;
        padding: 60px 20px;
    }

    .features-container {
        position: relative; /* Sticky özelliğini iptal et */
        top: auto;
        max-width: 100%;
    }

    .features-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
        transform: none !important; /* GSAP çakışmasını önle */
        opacity: 1 !important;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 20px;
    }

    .feature-card {
        transform: none !important; /* Animasyonsuz net görünüm */
        opacity: 1 !important;
        padding: 25px;
    }

    /* --- 4. PHILOSOPHY (SİNEMATİK BÖLÜM - DÜZELTME) --- */
    /* Yana kaymayı iptal edip dikey kartlara çeviriyoruz */
    #philosophy {
        height: auto !important; /* 900vh iptal */
        overflow: visible;
        padding: 0;
    }

    .philosophy-container {
        position: relative;
        height: auto;
        overflow: visible;
        display: block;
    }

    .philosophy-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        padding: 60px 20px 30px;
        font-size: 2rem;
        opacity: 1 !important;
        background-color: #0a0a0a;
        margin: 0;
    }

    .philosophy-track {
        display: flex;
        flex-direction: column; /* Yan yana değil, alt alta */
        width: 100%;
        height: auto;
        opacity: 1 !important;
        transform: none !important;
    }

    .philo-card {
        width: 100%;
        height: 80vh; /* Mobilde her kart neredeyse tam ekran olsun */
        min-height: 500px;
        background-attachment: scroll;
    }

    .philo-text-overlay {
        opacity: 1 !important;
        transform: none !important;
        padding: 40px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); /* Yazı okunsun diye */
    }

    .philo-card h3 {
        font-size: 2.5rem;
    }

    /* --- 5. BLOG --- */
    #blog {
        padding: 60px 0;
    }

    .blog-container {
        padding-bottom: 20px; /* Scroll bar için pay */
    }

    .blog-track {
        padding: 0 20px; /* Kenar boşlukları */
        gap: 15px;
    }

    .blog-card {
        width: 85vw; /* Kartlar mobilde daha geniş */
        flex: 0 0 85vw;
        height: 400px;
    }

    .blog-card-content h3 {
        font-size: 1.4rem;
    }

    /* --- 6. CTA BLOCK --- */
    .cta-container {
        padding: 40px 20px;
        border-radius: 20px;
        width: 90%; /* Kenarlardan taşmasın */
        margin: 0 auto;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .explore-button.cta-variant {
        width: 100%; /* Buton tam genişlik */
        display: block;
        box-sizing: border-box;
    }
}
/* =========================================
   MOBİL DÜZELTMELERİ (FINAL V2)
   ========================================= */

/* 1. Global Taşma Engelleyici */
html, body {
    overflow-x: hidden; /* Sağa sola kaymayı kesin engelle */
    width: 100%;
    position: relative;
}

@media (max-width: 980px) {

    /* --- HERO DÜZELTMESİ --- */
    #hero {
        padding-top: 140px; /* Header altı boşluk */
        padding-bottom: 60px;
        min-height: auto;
        height: auto;
        /* Arkaplanı mobilde sabitleme, sorun çıkarabilir */
        background-attachment: scroll;
        text-align: center;
    }
    .hero-baslik { font-size: 2.8rem; margin-bottom: 15px; }
    .hero-cta { justify-content: center; margin-top: 30px; }

    /* --- FEATURES (MOR BÖLÜM) DÜZELTMESİ --- */
    #features {
        height: auto !important; /* 800vh iptal */
        padding: 80px 20px;
    }
    .features-container {
        position: static !important; /* Yapışkanlığı kaldır */
        transform: none !important;
        width: 100%;
    }
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 30px; /* Kartlar arası boşluk */
    }
    .feature-card {
        opacity: 0; /* JS ile görünür olacak */
        transform: translateY(50px); /* JS ile yukarı kayacak */
        width: 100%;
        box-sizing: border-box;
    }
    .features-title {
        font-size: 2rem;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
    }

    /* --- PHILOSOPHY (HOW REAL CONNECTIONS) DÜZELTMESİ --- */
    #philosophy {
        height: auto !important; /* 900vh iptal */
        overflow: hidden;
        background-color: #0a0a0a;
        padding-bottom: 60px;
    }
    .philosophy-container {
        position: static !important; /* Pinning iptal */
        height: auto !important;
        display: block;
        width: 100%;
    }
    /* =========================================
   MOBİL DÜZELTMELERİ (FINAL V2)
   ========================================= */

@media (max-width: 980px) {
    /* ... Diğer kodların (Hero, Features vs.) aynı kalsın ... */

    /* --- PHILOSOPHY BAŞLIK DÜZENLEMESİ --- */
    .philosophy-title {
        position: static;
        transform: none !important;
        opacity: 0; /* JS ile açılacak */
        width: 100%;
        max-width: 350px; /* Mobilde çok yayılmasını engelle, derli toplu dursun */
        margin: 0 auto;   /* Ortala */
        text-align: center;

        /* Padding ayarı: Üstten biraz daha boşluk bırak */
        padding: 80px 10px 50px 10px;

        /* TİPOGRAFİ GÜNCELLEMESİ */
        font-family: 'Poppins', sans-serif; /* Fredoka yerine daha ciddi duran Poppins */
        font-size: 2.4rem; /* Biraz daha büyük ve okunaklı */
        font-weight: 800;  /* Kalın */
        line-height: 1.15; /* Satırları birbirine yaklaştır */
        letter-spacing: -1px; /* Harfleri sıkılaştır (Modern Apple tarzı) */

        /* MODERN GRADYAN YAZI EFEKTİ */
        background: linear-gradient(135deg, #FFFFFF 0%, #A0A0A0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent; /* Desteklemeyen tarayıcılar için fallback */

        /* Hafif bir parlama efekti */
        text-shadow: 0px 10px 20px rgba(0,0,0,0.5);
    }

    /* ... Diğer philo-track, philo-card kodların aynı kalsın ... */
}
    .philosophy-track {
        display: flex;
        flex-direction: column; /* Yan yana değil alt alta */
        width: 100% !important; /* 300% iptal */
        height: auto;
        opacity: 1 !important;
        transform: none !important;
    }
    .philo-card {
        width: 100%; /* Tam genişlik */
        height: 70vh; /* Mobilde dikine uzunluk */
        min-height: 500px;
        margin-bottom: 10px;
        position: relative;
    }
    .philo-text-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 20px;
        /* Yazının okunması için arkaya gölge */
        background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0));
        opacity: 0; /* JS ile gelecek */
        transform: translateY(30px);
    }
    .philo-card h3 { font-size: 2rem; }
    .philo-card p { font-size: 1rem; }

    /* --- BLOG DÜZELTMESİ --- */
    #blog { padding: 60px 0; }
    .blog-card {
        width: 80vw; /* Kart genişliği */
        height: 400px;
    }

    /* --- FOOTER BUTONLARI --- */
    .footer-bottom-right {
        flex-direction: row !important;
        gap: 10px !important;
    }
}
/* --- PRIVACY POLICY / LEGAL PAGES STYLE --- */

.legal-page {
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px; /* Header payı için üst padding */
    display: flex;
    gap: 50px;
    position: relative;
}

/* Sidebar (Sol Menü) */
.legal-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.legal-sidebar nav {
    position: sticky;
    top: 120px; /* Kaydırınca üstte sabit kalma mesafesi */
    padding-right: 20px;
    border-right: 2px solid #eee;
}

.legal-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-sidebar li {
    margin-bottom: 15px;
}

.legal-sidebar a {
    text-decoration: none;
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
}

.legal-sidebar a:hover, 
.legal-sidebar a.active {
    color: #FF4B2B; /* Soshy ana rengine göre ayarla */
    padding-left: 5px;
    font-weight: 700;
}

/* Main Content (Sağ İçerik) */
.legal-content {
    flex-grow: 1;
    max-width: 800px;
}

.legal-content section {
    margin-bottom: 60px;
    scroll-margin-top: 140px; /* Linke tıklayınca header altında kalmasın */
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
}

.legal-content p, 
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-box p {
    margin-bottom: 5px;
}

.contact-box a {
    color: #FF4B2B;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .legal-container {
        flex-direction: column;
        padding-top: 100px;
    }

    .legal-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .legal-sidebar nav {
        position: static;
        border: none;
    }
    
    .legal-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .legal-sidebar li {
        margin: 0;
    }

    .legal-sidebar a {
        background: #fff;
        padding: 8px 15px;
        border-radius: 20px;
        border: 1px solid #eee;
        font-size: 0.85rem;
    }
}