/*
Theme Name: Moz Medya
Author: mozmedya.com.tr
Description: Google Keşfet Danışmanlığı ve BİK Uyumlu Haber İçerik Yönetimi Özel Teması
Version: 1.0
Text Domain: moz-medya
*/

:root {
    --background: #ffffff;
    --foreground: #020817;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --primary: #0f172a;
    --accent: #4f46e5;
    --radius: 0.25rem;
    --shadow: 0 10px 15px -3px rgba(0,0,0,0.03);
    /* DİKKAT: Sabit genişlik silindi, functions.php üzerinden yönetiliyor */
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--background); color: var(--foreground); -webkit-font-smoothing: antialiased; overflow-x: clip; line-height: 1.5; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

/* Navigation */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 4.5rem; }
.brand { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.05em; display: flex; align-items: center; gap: 10px; color: var(--primary); text-decoration: none; }
.nav-links { display: none; align-items: center; }
.dynamic-menu { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.dynamic-menu li a { font-size: 0.9rem; font-weight: 500; color: var(--muted-foreground); text-decoration: none; transition: color 0.2s; }
.dynamic-menu li a:hover { color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--primary); margin: 5px 0; transition: 0.3s; }

/* --- MOZ MEDYA FINAL PREMIUM HERO (REVIZE) --- */
/* --- MOZ MEDYA FINAL PREMIUM HERO (REVIZE) --- */
/* --- MOZ MEDYA FINAL PREMIUM HERO (REVIZE) --- */
.hero-slider-section {
    /* GÖRSELDEKİ "MESH GRADIENT / AMBIENT GLOW" (Buz Mavisi Bölgesel Geçişler) */
    background-color: #f4f9ff;
    background-image: 
        radial-gradient(at 25% 45%, rgba(199, 228, 255, 0.65) 0%, transparent 60%),
        radial-gradient(at 75% 55%, rgba(210, 235, 255, 0.55) 0%, transparent 60%),
        radial-gradient(at 50% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
    
    padding: 60px 0 40px 0; 
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* 4. MADDE: Başlık boyutu ve kalınlığı zarifleştirildi */
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 2.8rem); /* 3.5rem'den 2.8rem'e çekildi */
    font-weight: 700; /* 800'den 700'e (Bold) çekildi, daha kurumsal durur */
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Mevcut buton ve badge yapını koruduk */
.hero-badge-wrapper { margin-bottom: 1.2rem; }
.badge-pill {
    background: linear-gradient(90deg, #ff7a18, #af002d 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(175, 0, 45, 0.15);
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}
.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* --- VEKTÖR ALANI --- */
.premium-vector-area {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: floating-vector 6s ease-in-out infinite;
}
.premium-vector-area img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.06));
}

@keyframes floating-vector {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 1. MADDE: Slider ve noktalar arasındaki mesafe (margin-top) artırıldı */
.hero-pagination-custom {
    display: flex;
    gap: 10px;
    margin-top: 4rem; /* 2rem'den 4rem'e çıkarıldı, noktalar aşağı çekildi */
}

.hero-pagination-custom .swiper-pagination-bullet {
    width: 25px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
    opacity: 1;
    transition: 0.3s;
    cursor: pointer;
}

.hero-pagination-custom .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 50px;
}

/* MOBİL UYUM KONTROLÜ (Ferahlatılmış Versiyon) */
@media (max-width: 1024px) {
    .hero-slider-section {
        padding: 40px 0 30px 0; /* Mobilde dikey boşlukları biraz daha daralttık */
    }

    .hero-container { 
        grid-template-columns: 1fr; 
        align-items: center; 
        text-align: center; 
        gap: 30px; 
    }

    .hero-content { 
        padding-bottom: 0; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        width: 100%; /* İçeriğin tüm genişliği kullanmasını sağladık */
    }

    /* MOBİL BAŞLIK DÜZENLEMESİ: Sıkışıklığı gideren ana nokta burası */
    .hero-content h1 {
        font-size: 1.55rem; /* Mobilde okunabilir, net bir boyut */
        line-height: 1.35;   /* Satır aralığını açtık ki harfler nefes alsın */
        letter-spacing: -0.01em; /* Mobilde çok dar harf arası sıkışıklık yapar, bir tık açtık */
        margin-bottom: 1.2rem;
        max-width: 90%; /* Başlığın sağa sola çok yapışmasını engelledik */
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
        max-width: 100%;
    }

    .hero-trust-badges { 
        justify-content: center; 
        gap: 1rem;
    }

    .hero-pagination-custom { 
        justify-content: center; 
        margin-top: 2.5rem; 
    }

    .premium-vector-area { 
        order: -1; 
        margin-bottom: 1rem; 
        max-width: 280px; /* Mobilde görselin metni ezmemesi için boyutunu sınırladık */
        margin-left: auto;
        margin-right: auto;
    }
}
.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: white; padding: 0.85rem 2.2rem; border-radius: 0.5rem; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.2s; border: 1px solid transparent; cursor: pointer; }
.btn-accent { background: var(--accent); }
.btn-white { background: var(--background); color: var(--primary); border-color: var(--border); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity: 0.95; }

/* --- ÇERÇEVELİ REFERANSLAR (Premium Grid - Daraltıldı) --- */
.references { 
    padding: 2.5rem 0; /* 5rem olan devasa boşluk yarı yarıya indirildi */
    background: 
        radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        #f8fafc; 
    border-bottom: 1px solid var(--border); 
    overflow: hidden; 
}

.ref-title { 
    text-align: center; 
    font-size: 0.8rem; 
    font-weight: 800; 
    color: var(--muted-foreground); 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    margin-bottom: 1.5rem; /* Başlık ile logolar arası mesafe daraltıldı */
}

.ref-swiper { 
    width: 100%; 
    padding: 5px 0; 
}

/* Çerçeve yüksekliği ve iç boşluklar sıkılaştırıldı */
.ref-item { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 75px; /* 90px'den 75px'e çekildi */
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    padding: 0.8rem 1.2rem;
    opacity: 0.7; 
    filter: grayscale(100%); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.ref-item:hover { 
    opacity: 1; 
    filter: grayscale(0%); 
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    transform: translateY(-3px); 
}

.ref-item img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
}

/* --- MİNİMALİST İSTATİSTİKLER (Sopyo Stili Sayaçlar - Daraltıldı) --- */
.stats-minimal-section {
    padding: 3rem 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.stats-minimal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* İŞTE BURASI: 3'ten 4 sütuna çıkarıldı */
    gap: 2rem;
    text-align: center;
}

.stat-minimal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-minimal-item h2.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 800;
    color: #2ea3f2; 
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem; 
    display: inline-flex;
    align-items: center;
}

.stat-minimal-item p {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
    margin: 0;
}

/* --- MOBİL DÜZELTMELER (2'li Izgara Sistemi) --- */
@media (max-width: 1024px) {
    .stats-minimal-grid { 
        grid-template-columns: repeat(2, 1fr); /* İŞTE BURASI: Mobilde 1 yerine 2'li yan yana grid */
        gap: 2.5rem 1.5rem; /* Dikeyde 2.5rem, yatayda 1.5rem boşluk */
    }
    
    .stat-minimal-item h2.stat-number {
        font-size: clamp(2rem, 6vw, 2.8rem); /* 2 sütuna sığması için mobilde rakamlar hafif küçültüldü */
    }

    .ref-swiper { padding: 10px 0; }
    .ref-item { padding: 0.6rem; height: 60px; } 
}

/* --- MOBİL DÜZELTMELER (İç içe geçme önleyici) --- */
@media (max-width: 1024px) {
    .stats-premium-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    
    /* Referansların mobilde sıkışmasını engellemek için padding ekledik */
    .ref-swiper {
        padding: 20px 0;
    }
    
    .ref-item img {
        max-width: 110px;
    }
}

/* BİK & Bento */
.bik-section { padding: 5rem 0 2rem; }
.bik-notice { background: var(--muted); border: 1px dashed rgba(79, 70, 229, 0.3); padding: 2rem; border-radius: 1rem; display: flex; align-items: center; gap: 1.5rem; max-width: 950px; margin: 0 auto; transition: all 0.3s ease; }
.bik-notice:hover { border-color: var(--accent); background: #f1f5f9; }
section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--primary); margin-bottom: 1rem; }
.section-title p { color: var(--muted-foreground); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.section-muted { background: var(--muted); }
/* --- YENİ NESİL ÖZELLİKLER (Neden Biz? / 4'lü Grid) --- */
/* --- YENİ NESİL ÖZELLİKLER (Neden Biz? / 4'lü Grid) --- */
.premium-features-section {
    padding: 5.5rem 0;
    /* Premium Mesh Gradient (Ambient Glow) - İndigo ve Teknoloji Mavisi Harmanı */
    background-color: #f8fafc; /* Çok hafif, ferah bir gri/mavi temel */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(46, 163, 242, 0.08) 0%, transparent 50%), /* Sol ortadan vuran teknoloji mavisi */
        radial-gradient(circle at 85% 30%, rgba(79, 70, 229, 0.06) 0%, transparent 50%), /* Sağ üstten vuran indigo vurgusu */
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 60%); /* Alttan gelen temiz beyazlık */
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    padding: 2.2rem 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.08);
    transform: translateY(-4px);
}

/* İkonun içindeki Mavi Kutu Tasarımı */
.feature-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(46, 163, 242, 0.08); /* Referanstaki açık mavi ton */
    color: #2ea3f2; /* Referanstaki ikon rengi */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: #2ea3f2;
    color: #ffffff;
}

.feature-icon-box svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* --- MOBİL UYUM (4'lü, 2'li ve 1'li Yapı) --- */
@media (max-width: 1024px) {
    .premium-features-grid { 
        grid-template-columns: repeat(2, 1fr); /* Tablette yan yana 2'li düzen */
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .premium-features-grid { 
        grid-template-columns: 1fr; /* Mobilde alt alta tekli düzen */
    }
    .feature-card { padding: 1.8rem 1.5rem; }
}

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step-card { padding: 3rem 2.5rem; background: var(--background); border: 1px solid var(--border); border-radius: 1.25rem; position: relative; overflow: hidden; transition: all 0.3s; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.step-card:hover { border-color: var(--accent); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); transform: translateY(-5px); }
.step-number { font-size: 6rem; font-weight: 800; color: var(--muted); position: absolute; top: -1rem; right: 0.5rem; line-height: 1; z-index: 0; transition: color 0.3s; }
.step-card:hover .step-number { color: #e0e7ff; }
.step-card h4 { margin: 1rem 0 1rem; font-size: 1.35rem; font-weight: 800; color: var(--primary); position: relative; z-index: 1; letter-spacing: -0.02em; }
.step-card p { color: var(--muted-foreground); font-size: 1rem; line-height: 1.6; position: relative; z-index: 1; margin: 0; }

/* YENİ: MÜŞTERİ YORUMU (SHADCN PREMIUM KART) */
.testimonial-wrapper { max-width: 850px; margin: 6rem auto 0; position: relative; }
.testimonial-card { background: var(--background); border: 1px solid var(--border); border-radius: 1.5rem; padding: 4rem 3rem 3rem; text-align: center; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05); transition: all 0.3s; position: relative; }
.testimonial-card:hover { border-color: #cbd5e1; box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.08); transform: translateY(-3px); }
.quote-icon { position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border: 4px solid var(--background); box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3); }
.testimonial-quote { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 500; color: var(--primary); line-height: 1.6; margin-bottom: 2.5rem; font-style: normal; letter-spacing: -0.01em; }
.testimonial-author-box { display: flex; align-items: center; justify-content: center; gap: 1.2rem; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-author-info { display: flex; flex-direction: column; text-align: left; }
.testimonial-name { font-weight: 800; color: var(--primary); font-size: 1.1rem; }
.testimonial-role { color: var(--muted-foreground); font-size: 0.9rem; font-weight: 500; }

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item details { width: 100%; padding: 1.5rem 0; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; font-weight: 600; color: var(--primary); cursor: pointer; list-style: none; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; } 
.faq-item summary::after { content: "+"; font-size: 1.8rem; font-weight: 400; color: var(--muted-foreground); transition: transform 0.3s ease; }
.faq-item details[open] summary::after { content: "−"; transform: rotate(180deg); color: var(--accent); }
.faq-item p { color: var(--muted-foreground); line-height: 1.6; margin-top: 1rem; padding-right: 2rem; font-size: 1.05rem; animation: slideDown 0.3s ease-out forwards; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* BLOG CAROUSEL */
.blog-swiper { position: relative; overflow: hidden; }
@media (min-width: 1024px) {
    .blog-swiper { padding: 1rem 4rem 5rem 4rem !important; margin-left: -4rem !important; width: calc(100% + 8rem) !important; }
}
@media (max-width: 1023px) {
    .blog-swiper { padding: 1rem 0 5rem 0 !important; margin-left: 0 !important; width: 100% !important; }
    .swiper-button-next, .swiper-button-prev { display: none !important; }
}
.swiper-slide { height: auto !important; display: flex; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; display: flex; flex-direction: column; transition: 0.3s ease-in-out; width: 100%; height: 100%; }
.blog-card:hover { border-color: #cbd5e1; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); transform: translateY(-5px); }
.blog-img-box { position: relative; width: 100%; height: 220px; background: #f1f5f9; display: block; overflow: hidden; flex-shrink: 0; }
.blog-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img-box img { transform: scale(1.05); }
.blog-card-badge { position: absolute; top: 1.25rem; left: 1.25rem; z-index: 10; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(4px); color: #0f172a; font-size: 0.7rem; font-weight: 700; padding: 6px 14px; border-radius: 99px; white-space: nowrap; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); }
.blog-body { padding: 2rem 1.5rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; text-align: center; }
.blog-card-title { font-size: 1.15rem; font-weight: 800; color: #0f172a; line-height: 1.4; margin: 0; }
.blog-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-footer { padding: 0 1.5rem 1.5rem; margin-top: auto; width: 100%; }
.blog-card-btn { display: block; width: 100%; background: #18181b; color: #fff; text-align: center; padding: 0.85rem; border-radius: 0.5rem; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.2s; border: none; }
.blog-card-btn:hover { background: var(--accent); color: #fff !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2); }
.swiper-button-next, .swiper-button-prev { background: #fff !important; border: 1px solid var(--border) !important; border-radius: 50% !important; width: 44px !important; height: 44px !important; box-shadow: var(--shadow) !important; color: var(--primary) !important; transition: all 0.2s !important; margin-top: -2.5rem !important; }
.swiper-button-next:hover, .swiper-button-prev:hover { border-color: var(--primary) !important; color: var(--primary) !important; transform: scale(1.05); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; font-weight: 800 !important; }
.swiper-button-next { right: 0.5rem !important; }
.swiper-button-prev { left: 0.5rem !important; }
.swiper-pagination { bottom: 0.5rem !important; }
.swiper-pagination-bullet { background: var(--muted-foreground) !important; opacity: 0.3 !important; width: 10px !important; height: 10px !important; transition: all 0.3s !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; opacity: 1 !important; width: 24px !important; border-radius: 5px !important; }

/* CTA & Footer */
.exclusive-banner { color: white; border-radius: 1.5rem; padding: 6rem 3rem; text-align: center; position: relative; overflow: hidden; }
.exclusive-banner h2 { color: white; margin-bottom: 1.2rem; font-size: 2.5rem; position: relative; z-index: 1; letter-spacing: -0.04em; }
.exclusive-banner p { color: #e0e7ff; margin-bottom: 3rem; font-size: 1.2rem; position: relative; z-index: 1; max-width: 600px; margin-left: auto; margin-right: auto; }
footer { padding: 5rem 0 3rem; background: var(--muted); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
.footer-col h5 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 0.08em; color: var(--primary); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--muted-foreground); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted-foreground); flex-wrap: wrap; gap: 1rem; }

/* --- PREMIUM SINGLE & RELATED --- */
.article-header-wrapper { background: var(--muted); padding: 4rem 0 3rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
.article-header-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.breadcrumb { font-size: 0.85rem; color: var(--muted-foreground); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; color: var(--muted-foreground); font-size: 0.95rem; flex-wrap: wrap; }
.article-author-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.article-featured-hero { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); margin: 0 0 3rem 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); display: block; }
.prose { color: #334155; font-size: 1.1rem; line-height: 1.8; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; }
.prose p { margin-bottom: 1.8rem; }
.prose h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin: 3rem 0 1.2rem; letter-spacing: -0.03em; line-height: 1.3; }
.prose h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 2.5rem 0 1rem; }
.prose ul, .prose ol { margin-bottom: 1.8rem; padding-left: 1.5rem; color: #475569; }
.prose li { margin-bottom: 0.75rem; }
.prose blockquote { border-left: 4px solid var(--accent); font-size: 1.2rem; font-style: italic; font-weight: 500; margin: 3rem 0; padding: 1.5rem 2rem; background: var(--muted); border-radius: 0 var(--radius) var(--radius) 0; color: var(--primary); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }

.author-bar { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; margin: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 1.5rem; }
.author-bar-info { display: flex; align-items: center; gap: 1rem; }
.author-bar-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-bar-text { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.author-bar-name { font-weight: 700; color: var(--primary); font-size: 1rem; }
.author-bar-dot { color: #cbd5e1; font-weight: 800; font-size: 1.2rem; line-height: 1; }
.author-bar-role { color: var(--muted-foreground); font-size: 0.9rem; font-weight: 500; }
.author-bar-share { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.author-bar-share .share-btn { width: 38px; height: 38px; border-radius: 50%; background: #111827; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; border: none; }
.author-bar-share .share-btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.single-layout-grid { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: stretch; }
.single-layout-grid > * { min-width: 0; } 
.sidebar-sticky { position: sticky; top: 6rem; align-self: start; }
.sidebar-widget { margin-bottom: 3rem; }
.sidebar-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; letter-spacing: 0.02em; }
.toc-list { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--border); }
.toc-list li { margin-bottom: 0; }
.toc-list a { display: block; padding: 0.6rem 0 0.6rem 1.2rem; color: var(--muted-foreground); font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.2s; position: relative; margin-left: -2px; border-left: 2px solid transparent; }
.toc-list a:hover { color: var(--accent); border-left-color: var(--accent); background: linear-gradient(90deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%); }
.share-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.share-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted-foreground); text-decoration: none; transition: all 0.2s; background: var(--background); }
.share-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }

.related-posts-section { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid var(--border); }
.related-posts-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.related-posts-title { font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; margin: 0; }
.related-horizontal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.related-h-card { display: flex; align-items: center; justify-content: space-between; background: var(--background); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.5rem; gap: 2rem; overflow: hidden; transition: all 0.3s; text-decoration: none; color: inherit; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.related-h-card:hover { border-color: #cbd5e1; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); transform: translateY(-3px); }
.related-h-content { flex: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.related-h-title { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1.4; margin-bottom: 0.75rem; }
.related-h-excerpt { font-size: 0.95rem; color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-h-badge { background: transparent; color: var(--accent); font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 99px; border: 1px solid var(--accent); transition: all 0.2s; }
.related-h-card:hover .related-h-badge { background: var(--accent); color: white; }
.related-h-image { width: 180px; height: 180px; border-radius: 1rem; background: var(--muted); flex-shrink: 0; overflow: hidden; box-shadow: var(--shadow); }
.related-h-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.related-h-card:hover .related-h-image img { transform: scale(1.05); }

/* KATEGORİ ASİMETRİK EDİTORYAL GRID */
.cat-editorial-hero { padding: 4rem 0 3rem; background: var(--muted); margin-bottom: 4rem; border-bottom: 1px solid var(--border); }
.cat-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--primary); letter-spacing: -0.05em; text-align: center; margin-bottom: 1rem; }
.cat-hero-desc { font-size: 1.15rem; color: var(--muted-foreground); text-align: center; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.editorial-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; margin-bottom: 5rem; }
.editorial-main-card { position: relative; border-radius: 1.25rem; overflow: hidden; min-height: 480px; display: flex; align-items: flex-end; border: 1px solid var(--border); box-shadow: var(--shadow); isolation: isolate; background: var(--primary); }
.editorial-main-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.editorial-main-bg img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; margin: 0; transition: transform 0.7s; }
.editorial-main-card:hover .editorial-main-bg img { transform: scale(1.03); }
.editorial-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42, 0.95) 0%, rgba(15,23,42, 0.2) 60%, transparent 100%); z-index: 1; pointer-events: none; display: block; }
.editorial-main-content { position: relative; z-index: 2; padding: 3rem; color: white; width: 100%; }
.editorial-main-badge { background: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; padding: 6px 14px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; display: inline-block; }
.editorial-main-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 1rem; }
.editorial-main-title a { color: white; text-decoration: none; }
.editorial-main-meta { display: flex; align-items: center; gap: 0.8rem; color: #cbd5e1; font-size: 0.9rem; }
.editorial-main-author-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); }
.editorial-side-list { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.editorial-side-card { display: flex; gap: 1.5rem; align-items: center; text-decoration: none; color: inherit; background: var(--background); border: 1px solid var(--border); padding: 1.5rem; border-radius: 1.25rem; transition: all 0.3s; flex: 1; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.editorial-side-card:hover { border-color: var(--accent); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); transform: translateY(-3px); }
.editorial-side-img { width: 140px; height: 140px; border-radius: 1rem; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow); }
.editorial-side-content { display: flex; flex-direction: column; justify-content: center; }
.editorial-side-badge { color: var(--accent); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.editorial-side-title { font-size: 1.15rem; font-weight: 800; color: var(--primary); line-height: 1.3; margin-bottom: 0.5rem; }
.editorial-side-meta { font-size: 0.85rem; color: var(--muted-foreground); }
.prose .wp-block-table, .prose .table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 2.5rem 0; border-radius: var(--radius); box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; text-align: left; min-width: 600px; }
.prose th { background-color: var(--muted); font-weight: 700; color: var(--primary); padding: 1.2rem 1rem; border-bottom: 2px solid var(--border); white-space: nowrap; }
.prose td { padding: 1rem; border-bottom: 1px solid var(--border); color: #334155; }
.prose figure.wp-block-embed { max-width: 100% !important; margin: 2.5rem 0; overflow: hidden; }
.prose iframe, .prose embed, .prose object, .prose .twitter-tweet, .prose .instagram-media { max-width: 100% !important; width: 100% !important; border-radius: var(--radius); display: block; margin: 0 auto; }
.prose .wp-block-embed-youtube iframe { aspect-ratio: 16 / 9; height: auto !important; }
.prose figure { max-width: 100% !important; margin: 2.5rem 0; overflow: hidden; }
.prose img { max-width: 100% !important; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.prose figcaption { text-align: center; font-size: 0.85rem; color: var(--muted-foreground); margin-top: 0.8rem; font-style: italic; }
.prose pre { background: #0f172a; color: #f8fafc; padding: 1.5rem; border-radius: var(--radius); overflow-x: auto; font-size: 0.9rem; margin: 2rem 0; border: 1px solid #1e293b; max-width: 100%; }
.prose code { background: #f1f5f9; color: var(--accent); padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.9em; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; word-break: break-word; }
.pagination-container { margin-top: 4rem; text-align: center; }
.pagination-container .nav-links { display: flex; justify-content: center; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.pagination-container .page-numbers { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1.2rem; border-radius: var(--radius); background: var(--background); color: var(--primary); font-weight: 600; text-decoration: none; border: 1px solid var(--border); transition: all 0.2s; }
.pagination-container .page-numbers.current { background: var(--primary); color: white; border-color: var(--primary); }
.pagination-container .page-numbers:hover:not(.current) { background: var(--muted); border-color: #94a3b8; }

/* --- RESPONSIVE / MOBİL --- */
@media (min-width: 768px) { 
    .nav-links { display: flex; } 
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 4.5rem; left: 0; width: 100%; background: white; padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1.5rem; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; order: 2; }
    .brand { order: 1; }
    .nav-content .btn { display: none; } 
    .bik-notice { flex-direction: column; text-align: center; }
    .hero { padding: 4rem 0 3rem; }
    .hero p { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
    
    .process-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 3rem 1.5rem 2rem; }
}
@media (max-width: 992px) and (min-width: 769px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .container { padding: 0 1rem !important; }
    .single-layout-grid { display: flex; flex-direction: column; gap: 0; }
    .sidebar-col { order: 1; margin-bottom: 2rem; width: 100%; }
    .main-content-col { order: 2; width: 100%; }
    .article-header-wrapper { padding: 3rem 0; margin-bottom: 2rem; }
    .article-header-inner { text-align: left !important; }
    .article-header-inner h1 { font-size: 1.8rem !important; text-align: left !important; line-height: 1.2; margin-bottom: 1.5rem; }
    .breadcrumb { justify-content: flex-start !important; }
    .article-meta { justify-content: flex-start !important; flex-wrap: wrap; }
    .article-featured-hero { height: 250px !important; margin-left: -1rem !important; margin-right: -1rem !important; width: calc(100% + 2rem) !important; border-radius: 0 !important; margin-bottom: 2rem !important; border: none !important; }
    .sidebar-widget { margin-bottom: 1.5rem; background: var(--muted); padding: 1.5rem; border-radius: var(--radius); }
    .sidebar-sticky { position: static; margin-top: 0; padding-top: 0; border-top: none; }
    .author-bar { flex-direction: column; justify-content: center; text-align: center; gap: 1rem; }
    .author-bar-info { flex-direction: column; text-align: center; gap: 0.5rem; }
    .author-bar-text { justify-content: center; }
    .author-bar-dot { display: none; } 
    .share-buttons { justify-content: flex-start; }
    .related-horizontal-grid { grid-template-columns: 1fr; }
    .related-h-card { flex-direction: column-reverse; padding: 1.25rem; gap: 1.5rem; }
    .related-h-image { width: 100%; height: 200px; min-height: auto; }
    .cat-editorial-hero { padding: 3rem 0 2rem; margin-bottom: 3rem; }
    .editorial-grid { grid-template-columns: 1fr; margin-bottom: 4rem; }
    .editorial-main-card { min-height: 350px; }
    .editorial-main-content { padding: 1.5rem; }
    .editorial-side-card { flex-direction: column; align-items: flex-start; padding: 1.2rem; }
    .editorial-side-img { width: 100%; height: 180px; }
    .exclusive-banner { border-radius: 0 !important; margin-left: -1rem !important; width: calc(100% + 2rem) !important; padding: 3.5rem 1.5rem !important; }
    .exclusive-banner h2 { font-size: 1.8rem !important; }
    .exclusive-banner p { font-size: 1rem !important; margin-bottom: 2rem !important; }
}
@media (max-width: 900px) { 
    .bento-wide, .bento-slim { grid-column: span 12; } 
    .hero h1 { font-size: 2.5rem; } 
}

/* --- APPLE SAFARI MOCKUP STİLLERİ --- */
.mockup-frame-mac {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.20);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.mac-browser-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.mac-dots {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.dot-close { background: #ff5f56; border: 1px solid #e0443e; }
.dot-minimize { background: #ffbd2e; border: 1px solid #dea123; }
.dot-expand { background: #27c93f; border: 1px solid #1aab29; }

.mac-address-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    margin: 0 auto;
    transform: translateX(-20px); /* Ortalamak için küçük bir hile */
}

.mockup-screen-mac {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.mockup-screen-mac img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Pagination Garantisi */
.hero-pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 50; /* Görünürlüğü garanti altına alıyoruz */
}

.hero-pagination-custom .swiper-pagination-bullet {
    width: 35px;
    height: 5px;
    background: var(--border);
    border-radius: 4px;
    opacity: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-pagination-custom .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 70px;
}