:root {
    --bg-light: #F5F5F5;
    --text-dark: #1a1a1a; 
    --text-white: #ffffff; 
    --accent: #ffaa00; 
    --container-width: 1200px; 
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}


/* --- LOADER SCREEN --- */
#loader-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: #ffffff; z-index: 10000;
    display: flex; justify-content: center; align-items: center;
}

#lartef-logo-svg {
    width: 120px; height: auto; overflow: visible;
}

.logo-path {
    fill: #000000; /* Logo rengi */
}

/* --- HEADER RENK ZORLAMALARI (KESİN ÇÖZÜM) --- */
lartef-navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9999;
    padding: 0;
    transition: color 0.3s ease, filter 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
    background-color: transparent; /* Başlangıçta şeffaf */
    backdrop-filter: none;
}

/* EKLEME: Scroll başlayınca devreye girecek buzlu cam efekti */
lartef-navbar.nav-glass {
    background-color: rgba(245, 245, 245, 0.85);
    backdrop-filter: blur(12px);
}

lartef-navbar.nav-black-force {
    color: #000000 !important;
}
lartef-navbar.nav-black-force .nav-logo,
lartef-navbar.nav-black-force .world-icon {
    filter: invert(1) brightness(0) !important;
}
lartef-navbar.nav-black-force .hamburger-menu span {
    background-color: #000000 !important;
}

lartef-navbar.nav-white-force {
    color: #ffffff !important;
    background-color: transparent !important; /* Final kısımda arka planı kaldırıyoruz */
    backdrop-filter: none !important;
}
lartef-navbar.nav-white-force .nav-logo,
lartef-navbar.nav-white-force .world-icon {
    filter: brightness(0) invert(1) !important;
}
lartef-navbar.nav-white-force .hamburger-menu span {
    background-color: #ffffff !important;
}


/* NAVBAR GENEL */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 2rem 20px; 
}

.nav-left { justify-self: start; }
.nav-logo { height: 32px; width: auto; display: block; }

.nav-center { justify-self: center; }
.nav-links { display: flex; list-style: none; gap: 3rem; }
.nav-links a { text-decoration: none; color: currentColor; font-size: 1rem; font-weight: 500; opacity: 0.9; }
.nav-links a:hover { opacity: 1; }

.nav-right { justify-self: end; display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.9rem; cursor: pointer; }
.world-icon { width: 18px; height: 18px; }

.hamburger-menu { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1002; }
.hamburger-menu span { width: 30px; height: 2px; background-color: currentColor; transition: all 0.3s ease; }

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: #0a0a0a; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 1001;
}
.mobile-links { list-style: none; text-align: center; }
.mobile-links li { margin: 20px 0; overflow: hidden; }
.mobile-links a { display: block; font-size: 2rem; color: #fff; text-decoration: none; font-weight: 600; transform: translateY(100%); transition: transform 0.5s ease; }

@media screen and (max-width: 1250px) { .navbar { padding-left: 5%; padding-right: 5%; } }
@media screen and (max-width: 900px) {
    .nav-center { display: none; }
    .navbar { grid-template-columns: 1fr 1fr; }
    .hamburger-menu { display: flex; }
    .mobile-nav-overlay.active { opacity: 1; visibility: visible; }
    .mobile-nav-overlay.active .mobile-links a { transform: translateY(0); }
    .hamburger-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger-menu.open span:nth-child(2) { opacity: 0; }
    .hamburger-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}
/* EKLEME: Çok küçük ekranlarda navbar padding'ini biraz rahatlat */
@media screen and (max-width: 480px) {
    .navbar { padding: 1.5rem 20px; }
}

/* SCROLLY STORY */
.scrolly-story { width: 100%; height: 400vh; position: relative; }
.sticky-stage { width: 100%; height: 100vh; position: sticky; top: 0; overflow: hidden; display: flex; justify-content: center; align-items: center; background-color: var(--bg-light); }
.layer { position: absolute; width: 100%; height: 100%; top: 0; left: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; }

.hero-layer { z-index: 1; color: var(--text-white); }
.hero-img { width: 100%; height: 100%; object-fit: cover; clip-path: inset(0% 0% 0% 0% round 0px); }

/* GÜNCELLEME: Ana başlık Macbook'ta ufalacak şekilde clamp eklendi */
.hero-title { 
    position: absolute; 
    /* GÜNCELLEME: Macbook'ta (1440px civarı) daha kibar durması için 4.5vw'yi 3.5vw'ye çektik */
    font-size: clamp(2rem, 3.5vw, 4rem); 
    text-align: center; 
    font-weight: 600; 
    text-shadow: none; /* Gölge tamamen kaldırıldı */
    bottom: 20%; 
    padding: 0 20px; 
}

.main-cta { 
    position: absolute; bottom: 12%; 
    /* Butonun iç boşluğu ve yazı boyutu da artık ekranla beraber küçülüyor */
    padding: clamp(10px, 1.2vw, 15px) clamp(25px, 3vw, 40px); 
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    background: var(--accent); border: none; border-radius: 30px; font-weight: 700; 
    color: #ffffff; /* Yazı rengi artık beyaz */
    cursor: pointer; 
    display: flex; align-items: center; gap: 10px; /* Logo ve yazıyı hizala */
    white-space: nowrap;
}

.phone-layer { z-index: 2; pointer-events: none; opacity: 0; color: var(--text-dark); }

/* EKLEME: TELEFONUN LAPTOPTA KÜÇÜLMESİ İÇİN AS-IS YAPIYA DOKUNMADAN ÖLÇEKLENDİRME */
.phone-wrapper { 
    position: relative; 
    width: clamp(270px, 18vw, 350px); 
    height: clamp(540px, 72vh, 700px); 
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); 
}
.phone-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; }
.shop-screen { opacity: 0; }

/* EKLEME: YAZILARIN TELEFONA YAKINLIĞINI EKRAN GENİŞLİĞİNE GÖRE (VW) AYARLADIM */
.text-overlay { 
    position: absolute; 
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: clamp(270px, 18vw, 350px); /* Phone wrapper ile aynı genişlik */
    height: 0; /* Dikeyde tam ortalamak için */
    display: block; 
    padding: 0; 
    opacity: 0; 
    font-weight: 600; 
    /* GÜNCELLEME: Macbook'ta 75px'den 55px bandına (yaklaşık 3.4rem) düşecek ayar */
    font-size: clamp(1.7rem, 3.8vw, 4rem); 
    color: var(--text-dark); 
    white-space: nowrap; /* Yazıların aşağı kaymasını engeller */
}
.tinks-text::before { content: "Tinks ile"; position: absolute; right: 100%; margin-right: 15%; top: 50%; transform: translateY(-50%); }
.tinks-text::after { content: "keşfet"; position: absolute; left: 100%; margin-left: 15%; top: 50%; transform: translateY(-50%); }
.tinks-text h2 { visibility: hidden; }
.shop-text::before { content: "Komisyonsuz"; position: absolute; right: 100%; margin-right: 15%; top: 50%; transform: translateY(-50%); }
.shop-text::after { content: "satın al."; position: absolute; left: 100%; margin-left: 15%; top: 50%; transform: translateY(-50%); }
.shop-text h2 { visibility: hidden; }
.text-overlay span { color: var(--accent); }

/* EKLEME: 1100px altındaki ekranlarda yazıları biraz inceltiyoruz (800 -> 600) */
@media screen and (max-width: 1100px) {
    .text-overlay {
        font-weight: 600;
    }
}

/* FINAL SECTION (SOLA YASLI & YAZI DAR) */
.final-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Sola yaslı */
    align-items: center;
    overflow: hidden;
}

.final-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.final-bg { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.gradient-overlay {
    position: absolute; top: 0; left: 0;
    width: 70%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.final-content {
    position: relative; z-index: 5;
    padding-left: 10%; 
    
    /* GÖRSELDEKİ GİBİ DAR YAZI ALANI */
    width: 100%;
    max-width: 650px; 
    
    text-align: left;
    color: #fff;
    margin-bottom: 85px;
}

.fade-in-text {
    /* GÜNCELLEME: Son sayfa yazısı da Macbook'ta jilet gibi 50-55px civarına iner */
    font-size: clamp(2rem, 4vw, 3.5rem); 
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 600; 
    white-space: nowrap !important;
    opacity: 1 !important; transform: none !important;
}

.final-link {
    color: #fff !important; /* Rengi zorla beyaz yap */
    /* GÜNCELLEME: Link de orantılı ufalır */
    font-size: clamp(0.9rem, 1.2vw, 1.3rem); 
    text-decoration: none; 
    font-weight: 500;
    opacity: 1 !important; 
    display: inline-flex; /* Logo ve yazıyı hizalamak için flex yaptık */
    align-items: center;
    gap: 10px; /* Logo ile yazı arasındaki boşluk */
    position: relative; 
    z-index: 101; /* Footer veya diğer katmanların üzerine çıkar */
    cursor: pointer;
}
.final-link:hover { opacity: 0.8; }

.evritink-logo {
    height: 1.3em; /* Yazı boyutuna göre otomatik oranlanır */
    width: auto;
}

/* FOOTER */
lartef-footer {
    width: 100%; z-index: 99; display: block;
    position: relative; /* Hakkımızda vb. sayfalarda akışın en altında durması için */
}
.lartef-footer-container {
    width: 100%; padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}
.footer-row {
    width: 100%; max-width: var(--container-width); 
    margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 20px;
    border-top: none; font-size: 0.8rem; font-weight: 500;
}
.f-logo { height: 24px; width: auto; display: block; }
.f-center { text-align: center; white-space: nowrap; }
.f-right a { text-decoration: none; color: currentColor; font-weight: 700; }

/* Final Section (Anasayfa) için Footer'ı tekrar alta sabitle */
.final-section lartef-footer {
    position: absolute; bottom: 0; left: 0;
}

/* Footer Beyaz Mod */
.final-section lartef-footer .lartef-footer-container { border-color: rgba(255, 255, 255, 0.4); color: #ffffff; }
.final-section lartef-footer .f-logo { filter: brightness(0) invert(1); }

@media screen and (max-width: 900px) {
    .fade-in-text { font-size: 2.2rem; white-space: normal !important; }
    .final-content { max-width: 100%; padding-right: 5%; }
    .footer-row { flex-direction: column; gap: 8px; text-align: center; padding: 15px 20px; }
    .f-center { white-space: normal; font-size: 0.7rem; opacity: 0.8; }
}

/* --- HAKKIMIZDA SAYFASI --- */
.about-main {
    padding-top: 140px; /* Fixed navbar için boşluk */
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 100px; /* Footer ile mesafe */
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

.mission-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Tam kare */
    object-fit: cover;
    border-radius: 20px;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

@media screen and (max-width: 900px) {
    .mission-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mission-img {
        max-width: 100%;
    }
    .mission-title { font-size: 24px; } /* Mobilde başlık boyutu optimize edildi */
}

/* --- FELSEFEMİZ (PHILOSOPHY) SECTION --- */
.philosophy-section {
    padding: 100px 20px; /* Üstten ve alttan 100px boşluk */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.philosophy-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* GÜNCELLEME: Görseli 1080x210 boyutunda bir maske içine alıyoruz */
.philosophy-img-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 210px;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}

.philosophy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    max-width: 1080px; /* Yazı genişliği görselle aynı sınıra çekildi */
}

@media screen and (max-width: 900px) {
    .philosophy-text { font-size: 24px; }
    .philosophy-img-wrapper { height: auto; aspect-ratio: 16 / 9; }
}
@media screen and (max-width: 600px) {
    .philosophy-section { padding: 60px 20px; } /* Dikey boşluklar mobilde azaltıldı */
    .philosophy-text { font-size: 20px; }
}

/* --- İLKELERİMİZ (PRINCIPLES) SECTION --- */
.principles-section {
    padding: 0 20px 100px 20px; /* Üst padding yok, alt 100px */
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.principles-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 800px;
    margin: 20px 0 60px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Akordeon Stilleri */
.accordion-item {
    background-color: #EDEDED; /* İstenilen özel gri shape */
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0; 
    transition: transform 0.4s ease; /* Başlık hareketi için */
}

.arrow-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background-color: #fff;
    display: flex; justify-content: center; align-items: center;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-content {
    max-height: 0;
    opacity: 0;
    padding: 0 25px;
    overflow: hidden;
    /* Apple standardı pürüzsüz açılma */
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, padding 0.5s ease;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0; 
    /* İçerik animasyonu başlangıç durumu */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s; /* Hafif gecikmeli geliş */
}

/* Aktif Durum */
.accordion-item.active .accordion-header h3 {
    transform: translateY(-5px); /* Başlık yukarı kayar */
}

.accordion-item.active .arrow-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    opacity: 1;
    padding-bottom: 25px;
}

/* İçerik metninin süzülerek gelmesi */
.accordion-item.active .accordion-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Sağ Görsel */
.principles-image-wrapper {
    width: 100%; height: 100%;
    border-radius: 20px; overflow: hidden;
}
.principles-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; min-height: 400px; }

@media screen and (max-width: 900px) {
    .principles-grid { grid-template-columns: 1fr; gap: 40px; }
    .principles-img { min-height: 300px; } /* Mobilde görsel çok uzamasın */
}
@media screen and (max-width: 600px) {
    .principles-intro { font-size: 16px; margin-bottom: 40px; }
    .principles-section { padding-bottom: 60px; }
}

/* --- KURUCULARIMIZ (FOUNDERS) SECTION --- */
.founders-section {
    padding: 100px 20px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Başlığı grid dışına aldığımız için altına boşluk veriyoruz */
.founders-section .mission-subtitle {
    display: block;
    margin-bottom: 30px;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.founders-intro {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a1a1a;
    margin-top: 0; /* Kartlarla üstten hizalanması için sıfırlandı */
}

.founders-cards-wrapper {
    display: flex;
    flex-direction: column;
}

.founder-card {
    background-color: #EDEDED;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 24px 0 0; /* Görsel sola ve dikeyde tam otursun, sadece sağdan boşluk */
    margin-bottom: 24px;
}
.founder-card:last-child { margin-bottom: 0; }

.founder-img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.founder-info {
    margin-left: 24px; /* Görsel ile metin arasındaki 24px boşluk */
}

.founder-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
}

.founder-info span {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    display: block;
}

@media screen and (max-width: 900px) {
    .founders-grid { grid-template-columns: 1fr; gap: 40px; }
    /* Tablet/Laptop geçişinde fontu biraz küçültüyoruz */
    .founders-intro { font-size: 22px; }
}

/* EKLEME: Küçük mobil ekranlar (iPhone SE vb.) için Kurucu Kartı Optimizasyonu */
@media screen and (max-width: 500px) {
    .founders-section { padding: 60px 20px; }
    .founders-intro { font-size: 20px; }
    
    /* Başlık ile metin arasındaki boşluğu mobilde biraz açalım */
    .founders-section .mission-subtitle { margin-bottom: 20px; }

    /* Kart yapısını bozmadan küçültüyoruz */
    .founder-card { padding: 0 16px 0 0; }
    .founder-img { width: 100px; height: 100px; } /* Görseli biraz küçülttük */
    
    .founder-info { margin-left: 16px; }
    .founder-info h3 { font-size: 18px; }
    .founder-info span { font-size: 14px; }
}

/* --- İLETİŞİM SAYFASI --- */
.contact-section {
    padding-top: 160px;
    padding-bottom: 100px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: stretch; /* Görsel ve yazının boyunu eşitle */
}

/* Başlık artık section içinde, info içinde değil */
.contact-section h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #000;
}

.contact-group h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-group p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #444;
    margin-bottom: 32px;
    white-space: pre-line; /* Satır sonlarını korur (\n) */
}

/* Son elemanın alt boşluğunu al ki görselle alt çizgi tam tutsun */
.contact-group:last-child p { margin-bottom: 0; }

.contact-image-wrapper { position: relative; height: 100%; }

.contact-img {
    position: absolute; /* Yüksekliği içeriğe değil, kapsayıcıya (metin kolonuna) göre ayarla */
    top: 0; left: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(100%);
}

@media screen and (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-section h1 {
        font-size: 32px;
    }
    /* Mobilde absolute yapıyı bozup normale dönüyoruz */
    .contact-image-wrapper { height: auto; }
    .contact-img { position: static; height: auto; }
}

/* --- GİZLİLİK SAYFASI --- */
.privacy-page-container {
    padding-top: 120px;
    padding-bottom: 100px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Grid Yapıları */
.privacy-grid-top,
.privacy-grid-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* Görsel ve metin boyunu eşitle */
}

.privacy-grid-middle {
    margin-top: 20px; /* Başlık artık dışarıda olduğu için boşluğu azalttık */
}

/* Tipografi */
.privacy-page-container h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

/* Başlık artık text-col içinde değil, genel container içinde */
.privacy-page-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    margin-top: 100px; /* Üst blokla arayı aç */
}

.privacy-page-container h2 .light-text {
    font-weight: 300;
    color: #888;
}

.privacy-page-container p {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Görseller */
.privacy-img-col {
    position: relative;
    width: 100%;
    height: 100%;
}

.privacy-img-rounded {
    position: absolute; /* Yüksekliği metne göre ayarla */
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* Alt Blok (Ekosistem) */
.ecosystem-section {
    margin-top: 80px;
}
.ecosystem-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

/* Buton */
.btn-pill-grey {
    background-color: #E5E5E5;
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}
.btn-pill-grey:hover {
    background-color: #d4d4d4;
}
.arrow-icon-small { font-size: 1.1em; line-height: 1; }

/* Responsive */
@media screen and (max-width: 900px) {
    .privacy-grid-top,
    .privacy-grid-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Mobilde görsel sıralamasını düzeltmek için (Orta blokta görsel üstte kalsın) */
    .privacy-grid-middle .privacy-img-col { order: -1; }
    
    .privacy-page-container h1 { font-size: 32px; }
    .privacy-page-container h2 { font-size: 26px; margin-top: 60px; }

    /* Mobilde absolute yapıyı bozup normale dönüyoruz */
    .privacy-img-col { height: auto; aspect-ratio: 16/9; }
    .privacy-img-rounded { position: static; height: 100%; }
}

/* --- LANGUAGE OVERRIDES (ENGLISH) --- */
html[lang="en"] .tinks-text::before { content: "Discover"; }
html[lang="en"] .tinks-text::after { content: "with Tinks"; }

html[lang="en"] .shop-text::before { content: "Shop"; }
html[lang="en"] .shop-text::after { content: "Direct"; }

/* --- MOBİL DÜZENLEME (< 550px) --- */
/* Yazıları telefonun yanlarından alıp altına koyuyoruz */
@media screen and (max-width: 550px) {
    .text-overlay {
        top: 85%; /* Telefon %75'te bitiyor + %10 boşluk = %85 */
        bottom: auto;
        transform: translateX(-50%); /* Sadece yatayda ortala (dikey iptal) */
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem; /* Yazıyı %15 küçülttük */
        white-space: normal;
        text-align: center;
    }

    /* Görünmez h2 elementini yok et ki flex ortalamayı bozmasın */
    .text-overlay h2 { display: none; }

    /* Telefonu tam ortaya al ve boyutu optimize et */
    .phone-wrapper {
        transform: none; /* Tam ortaya (center) oturması için kaydırmayı iptal et */
        height: 50vh; /* Yüksekliği biraz kıstık */
        min-height: auto; /* Clamp min-height'i iptal et */
        width: 100%; /* Genişlik serbest */
    }

    /* TEK PARÇA YAZI OPERASYONU (Boşluk sorununu çözer) */
    .tinks-text::after, .shop-text::after { display: none; }

    .tinks-text::before {
        content: "Tinks ile keşfet";
        position: static;
        transform: none;
        margin: 0;
    }
    
    .shop-text::before {
        content: "Komisyonsuz satın al.";
        position: static;
        transform: none;
        margin: 0;
    }

    /* İngilizce Tek Parça Override */
    html[lang="en"] .tinks-text::before { content: "Discover with Tinks"; }
    html[lang="en"] .shop-text::before { content: "Shop Direct"; }
}

/* --- FINAL SECTION MOBİL DÜZENLEME (< 550px) --- */
@media screen and (max-width: 550px) {
    /* Görseli %15 sağa kaydır (Odak noktasını sola çekerek görseli sağa itiyoruz) */
    .final-bg {
        object-position: 35% center; 
    }

    /* Yazıyı footer'ın hemen üstüne al (Footer ~80px + 20px boşluk) */
    .final-content {
        position: absolute;
        bottom: 15%; /* Yazıyı %10 aşağı indirdik */
        left: 0;
        margin-bottom: 0;
        padding: 0 20px;
        width: 100%;
        z-index: 10;
    }

    .fade-in-text {
        font-size: 1.8rem; /* Yazıyı küçülttük */
    }
}