:root {
    --primary-color: #28a745;
    --secondary-color: #f4f7f6;
    --text-color: #333;
    --heading-color: #222;
    --border-color: #ddd;
    --link-color: #007bff;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ================================= 
   HEADER BÖLÜMÜ - GÜNCELLENMİŞ
==================================== */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 80px; 
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; 
}

.logo a {
    display: inline-block;
}

.logo img {
    max-height: 120px; 
    width: auto;
    vertical-align: middle;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

/* --- YENİ EKLENEN HAMBURGER MENÜ VE MOBİL UYUMLULUK KODLARI --- */

/* Hamburger Menü İkonu (Başlangıçta masaüstünde gizli) */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Menünün üzerinde kalması için */
}

.hamburger-menu .line {
    width: 30px;
    height: 3px;
    background-color: #333; /* Logonuzdaki renklere uygun bir renk seçebilirsiniz */
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobil ve Tablet Görünümü için Media Sorgusu (768px altı) */
@media screen and (max-width: 768px) {
    nav ul {
        /* Menüyü dikey hale getir ve ekranın dışına taşı */
        flex-direction: column;
        position: fixed; /* Ekranla birlikte kaymaması için fixed */
        width: 80%; /* Menü genişliği */
        max-width: 300px;
        height: 100vh; /* Tüm ekran yüksekliği */
        top: 0;
        left: 0; /* Başlangıçta solda */
        background-color: white;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        padding-top: 100px; /* Üstten boşluk */
        
        /* Geçiş efekti için */
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    /* JavaScript ile .nav-active class'ı eklendiğinde menüyü göster */
    nav ul.nav-active {
        transform: translateX(0);
    }

    nav li {
        margin-left: 0;
        width: 100%;
    }

    nav a {
        /* Mobil menüdeki linkleri daha belirgin hale getir */
        display: block;
        padding: 15px 30px;
        font-size: 1.1em;
        text-align: left;
    }
    
    /* Hamburger menü ikonunu mobil cihazlarda göster */
    .hamburger-menu {
        display: block;
    }
}
#hero { background: var(--secondary-color); padding: 60px 0; text-align: center; }
h1 { font-size: 3em; color: var(--heading-color); margin-bottom: 10px; }
.subtitle { font-size: 1.2em; color: #666; margin-bottom: 40px; }
.scraper-panel {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
select, input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}
.options { margin: 20px 0; text-align: center; }
#start-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px; /* Köşeleri biraz daha yumuşatalım */
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 15px;
    
    /* Butona derinlik katmak için hafif bir gölge */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    /* Daha yumuşak ve kapsamlı bir geçiş efekti */
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* 1. Fare üzerine geldiğinde (Hover) */
#start-btn:hover:not(:disabled) {
    /* Arka planı hafifçe koyulaştır */
    background-color: #0056b3; /* var(--primary-color)'ın daha koyu bir tonu varsayılıyor */
    /* Butonu hafifçe yukarı kaldırarak etkileşim hissi ver */
    transform: translateY(-2px);
    /* Gölgeyi biraz daha belirgin yap */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 2. Butona basıldığı an (Active) */
#start-btn:active:not(:disabled) {
    /* Basma efekti için butonu eski yerine indir */
    transform: translateY(0);
    /* Gölgeyi kaldırarak butonun "içeri gömüldüğü" hissini ver */
    box-shadow: none;
}

/* 3. Klavye ile seçildiğinde (Focus) - Erişilebilirlik için KRİTİK */
#start-btn:focus-visible {
    outline: 3px solid #0056b3; /* Ana rengin koyu tonunda bir çerçeve */
    outline-offset: 2px; /* Çerçeve ile buton arasına boşluk koy */
}


/* 4. Buton pasifken (Disabled) */
#start-btn:disabled {
    /* Marka rengini koruyarak soluklaştır, düz griden daha iyidir */
    background-color: var(--primary-color);
    opacity: 0.5;
    cursor: not-allowed;
    /* Pasifken tüm efektleri kaldır */
    box-shadow: none;
    transform: none;
}

.hidden { display: none !important; }
#progress-container, #download-links-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
}
#progress-status, #download-links-container p { margin: 0 0 10px 0; font-size: 1em; color: #333; text-align: center; }
.progress-bar { width: 100%; height: 20px; background-color: #e0e0e0; border-radius: 10px; overflow: hidden; }
#progress-bar-fill { width: 0%; height: 100%; background-color: var(--primary-color); transition: width 0.4s ease; }
#progress-percentage { text-align: center; font-weight: bold; margin-top: 5px; }
#download-links-container { text-align: center; }


#features { padding: 80px 0; text-align: center; }
h2 { font-size: 2.5em; margin-bottom: 10px; }
.section-subtitle { font-size: 1.1em; color: #666; margin-bottom: 50px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}
.feature-item { padding: 20px; }
.feature-item img { height: 48px; margin-bottom: 15px; }
.feature-item h3 { font-size: 1.4em; margin-bottom: 10px; color: var(--heading-color); }
footer { background: var(--heading-color); color: #fff; text-align: center; padding: 20px 0; }


/* ========================
   FİYATLANDIRMA BÖLÜMÜ
   ======================== */

#pricing {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center; /* Kartların hizalı durması için */
}

.pricing-plan {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* "En Popüler" etiketi için */
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pricing-plan.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05); /* Popüler planı biraz daha büyük göster */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.plan-header h3 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
    color: var(--heading-color);
}

.plan-header p {
    color: #666;
    min-height: 40px; /* Başlıkların aynı hizada kalması için */
}

.plan-price {
    margin: 30px 0;
    font-weight: bold;
}

.price-currency {
    font-size: 1.5em;
    vertical-align: super;
    margin-right: 2px;
}

.price-amount {
    font-size: 4em;
    color: var(--heading-color);
    line-height: 1;
}

.price-period {
    color: #666;
    font-weight: normal;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px 0; /* Yatay padding'i kaldırıp sadece dikey padding veriyoruz */
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--primary-color);
    box-sizing: border-box; /* Bu, padding ve border'ın genişliği etkilememesini sağlar */
}

.pricing-plan.popular .plan-button,
.plan-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}


/* ========================
   FİYATLANDIRMA - PNG İKONLU VE LOGOLU ÖZELLİK LİSTESİ
   ======================== */

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading-color);
    font-size: 0.95em; /* Metinleri biraz daha okunaklı yapabiliriz */
}

/* Sol taraftaki ana ikon (tik, çarpı) */
.feature-icon {
    display: inline-flex;
    width: 18px; /* İkon boyutunu ayarla */
    height: 18px;
    flex-shrink: 0; /* Küçülmesini engelle */
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

/* Metnin kendisi */
.feature-text {
    flex-grow: 1; /* Metnin kalan boşluğu doldurmasını sağlar */
}

/* Sağ taraftaki marka logoları */
.feature-logos {
    margin-left: auto; /* Logo grubunu en sağa iter */
    display: flex;
    align-items: center;
    gap: 6px; /* Logolar arasına boşluk koyar */
}

.feature-logos img {
    height: 21px; /* Logoların yüksekliğini metinle orantılı yap */
    width: auto; /* Genişlik otomatik ayarlansın */
}

/* Pasif (disabled) özelliklerin görünümü */
.plan-features li.disabled {
    color: #9ca3af; /* Metni soluklaştır */
}

.plan-features li.disabled .feature-icon img {
    /* Pasif ikonları biraz daha az belirgin yap */
    opacity: 0.7; 
}

.plan-theme {
    display: inline-block; /* Sadece içeriği kadar yer kaplaması için */
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
    
    /* Standart Planlar İçin Varsayılan Stil */
    background-color: #f0f4f8; /* Açık ve modern bir mavi-gri */
    color: #4a5568; /* Koyu gri metin */
    border: 1px solid #e2e8f0;
}

/* Popüler Planın Başlığını Öne Çıkarma */
.pricing-plan.popular .plan-theme {
    background-color: var(--primary-color); /* Ana renk */
    color: #fff; /* Beyaz metin */
    border: 1px solid var(--primary-color);
}

/* ---- LinkedIn Radar görsel vurgular ---- */
.pricing-plan.special{
  position: relative;
  border: 2px solid #15a6a6;        /* marka tonu */
  box-shadow: 0 10px 24px rgba(21,166,166,.12);
}

.new-badge{
  position:absolute; top:-10px; left:16px;
  background:#14b86a; color:#fff; font-weight:700;
  font-size:12px; letter-spacing:.3px;
  padding:6px 10px; border-radius:10px;
}

.chip{display:inline-block; padding:2px 8px; font-size:11px; border-radius:999px; margin-left:6px;}
.chip-bonus{background:#ffe8b0; color:#7a4d00; border:1px solid #ffd67a;}

.plan-button.as-link{display:inline-block; text-align:center; text-decoration:none;}

/* “muted” bilgi satırı */
.plan-features .muted{opacity:.8}

/* Küçük ekranlarda 4. kart düzgün yerleşsin */
@media (max-width: 900px){
  .pricing-grid{grid-template-columns:1fr!important;}
  .pricing-plan.special{order:4;}
}


.pricing-plan.special{
  position:relative; border:2px solid #15a6a6;
  box-shadow:0 10px 24px rgba(21,166,166,.12);
}
.new-badge{
  position:absolute; top:-10px; left:16px;
  background:#14b86a; color:#fff; font-weight:700;
  font-size:12px; letter-spacing:.3px;
  padding:6px 10px; border-radius:10px;
}
.chip{display:inline-block; padding:2px 8px; font-size:11px; border-radius:999px; margin-left:6px;}
.chip-bonus{background:#e6f9ff; color:#05637a; border:1px solid #b8ecff;}
.plan-button.as-link{display:inline-block; text-align:center; text-decoration:none;}
.pricing-note{margin-top:12px; font-size:12.5px; color:#6b7280;}
.pricing-note a{color:#0ea5a6; text-decoration:underline;}

/* PRICING GRID – 4 sütun desktop, 2 sütun tablet, 1 sütun mobil */
.pricing-grid{
  display:grid;
  gap:24px;
  grid-template-columns: 1fr;             /* mobile */
}
@media (min-width: 700px){
  .pricing-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }  /* tablet */
}
@media (min-width: 1200px){
  .pricing-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }  /* desktop */
}
/* grid içi kartların sığması için */
.pricing-plan{ min-width: 0; }

/* Plan özellik listesinde tipografi */
.plan-features{ margin:16px 0 0; padding:0; list-style:none; }
.plan-features li{ display:flex; align-items:flex-start; gap:10px; line-height:1.5; margin:10px 0; }
.plan-features .feature-icon img{ width:18px; height:18px; margin-top:2px; }
.plan-features strong{ font-weight:700; }

/* “muted” bilgi satırı */
.plan-features .muted{ opacity:.85; }

.pricing-plan.special{ border:2px solid #15a6a6; box-shadow:0 10px 24px rgba(21,166,166,.12); }
.new-badge{ position:absolute; top:-10px; left:16px; background:#14b86a; color:#fff; padding:6px 10px; font-size:12px; font-weight:700; border-radius:10px; }
.plan-button.as-link{ display:block; text-align:center; }




/* ========================
   Sık Sorulan Sorular (SSS)
   ======================== */



#faq {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden; /* Köşelerin yuvarlak kalmasını sağlar */
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px 25px;
    
    /* İçeriği hizalamak için flexbox */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-answer {
    /* Başlangıçta kapalı olması için */
    max-height: 0;
    overflow: hidden;
    background-color: #fdfdff;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    line-height: 1.6;
    color: #4a5568;
}

/* --- İkon Stilleri --- */
.faq-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--heading-color);
    border-bottom: 2px solid var(--heading-color);
    transform: rotate(45deg); /* Aşağı bakan ok */
    transition: transform 0.4s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

/* --- Açık Durum Stilleri (JavaScript ile eklenecek 'active' sınıfı) --- */

.faq-item.active .faq-question {
    background-color: #f9fafb;
}

.faq-item.active .faq-answer {
    /* Açıldığında içeriğin görünmesi için */
    max-height: 300px; /* Cevabınızın sığacağı bir yükseklik */
    padding-top: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(-135deg); /* Yukarı bakan ok */
}


/* ========================
   PARTNER ŞİRKETLER
   ======================== */

/* ========================
   "KİMLER İÇİN UYGUN?" BÖLÜMÜ
   ======================== */

#who-is-it-for {
    /* Eski partners bölümüyle aynı arka plan rengini koruyoruz */
    background-color: #fff; 
    padding: 60px 0;
    text-align: center;
}

#who-is-it-for h3 {
    font-size: 1.8em;
    color: var(--heading-color);
    margin-bottom: 50px;
}

.user-profiles-grid {
    display: grid;
    /* Mobilde 1, tablette 2, geniş ekranda 4 sütun */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.user-profile {
    text-align: center;
}

.profile-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    
    /* İkonu ortalamak için */
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: var(--secondary-color);
    border-radius: 50%; /* Daire şekli */
}

.profile-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.user-profile h4 {
    font-size: 1.2em;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.user-profile p {
    color: #666;
    line-height: 1.6;
}

/* ================================= 
   TESTIMONIALS (MÜŞTERİ YORUMLARI) - TAM VE GÜNCEL KOD
==================================== */

#testimonials {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

#testimonials h2 {
    font-size: 2em;
    margin-bottom: 50px;
    color: var(--heading-color);
}

.testimonial-slider-container {
    /* Yatay scroll bar'ı gizlerken, içeriğin taşmasını sağlar */
    overflow: hidden;
    position: relative;
    
    /* Sağ ve solda hafif bir gölge efekti için */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.testimonial-slider {
    /* Tüm kartları yan yana diz */
    display: flex;
    width: fit-content; /* İçerik kadar genişlik */
    
    /* Animasyon tanımı */
    animation: scroll 40s linear infinite;
}

/* Animasyon duraklatma (fare üzerine gelince) */
.testimonial-slider-container:hover .testimonial-slider {
    animation-play-state: paused;
}

.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 30px;
    margin: 15px; /* Kartlar arasına boşluk */
    
    /* Her kartın genişliğini ayarla */
    width: 350px; 
    flex-shrink: 0; /* Kartların küçülmesini engelle */
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-quote {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--heading-color);
    margin: 0 0 20px 0;
    /* Tırnak işareti efekti */
    position: relative;
    padding-left: 35px;
}

.testimonial-quote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3em;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.author-name {
    font-weight: bold;
    margin: 0;
    color: var(--heading-color);
}

.author-title {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Scroll Animasyonu */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* (Kart Genişliği + Kart Marjı * 2) * Kart Sayısı / 2 */
        /* (350px + 30px) * 6 / 2 = 1140px */
        transform: translateX(-1140px);
    }
}


@media screen and (max-width: 768px) {
    /* Hero bölümünün yüksekliğini ekran yüksekliğine ayarla */
    #hero {
        min-height: 50vh; /* Ekranın en az %100'ü kadar yüksek ol */
        display: flex;
        flex-direction: column;
        justify-content: center; /* İçeriği dikeyde ortala */
        padding-top: 20px; /* Header için boşluk */
        padding-bottom: 20px;
    }

    /* Başlıkların altındaki boşluğu azalt */
    #hero h1 {
        margin-bottom: 10px;
        font-size: 1.6em; /* Yazı boyutunu biraz küçült */
    }

    #hero .subtitle {
        margin-bottom: 10px;
        font-size: 1.1em;
    }

    .scraper-panel {
        padding: 20px; /* Panel iç boşluğunu azalt */
    }

    .form-grid {
        /* Mobil için tek sütunlu yapı */
        grid-template-columns: 1fr;
    }
}

/* ==================
   FOOTER STİLLERİ
   ================== */

footer {
    background: #222; /* Koyu arka plan */
    color: #aab2c0; /* Açık gri metin rengi */
    padding-top: 60px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff; /* Beyaz başlıklar */
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    color: #aab2c0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul a:hover {
    color: #ffffff; /* Vurgu rengi */
    padding-left: 5px; /* Hafif içeri kayma efekti */
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #aab2c0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-3px); /* İkonun hafifçe yukarı çıkma efekti */
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85em;
}



 /* ========================
           HESABIM SAYFASI - NİHAİ TASARIM (TAŞMAYAN LİSTE)
           ======================== */
        
        .page-main {
            background-color: var(--secondary-color);
            padding-top: 40px;
            padding-bottom: 80px;
        }

        .page-main h1 { text-align: center; margin-bottom: 40px; }

        .account-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .account-panel {
            background-color: #fff; padding: 30px; border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid #e2e8f0;
        }

        .account-panel h3 {
            margin-top: 0; margin-bottom: 25px; border-bottom: 1px solid #e2e8f0;
            padding-bottom: 15px; font-size: 1.3em; color: var(--heading-color);
        }

        .account-panel p { margin: 0 0 15px 0; color: #4a5568; }

        .plan-badge, .credit-badge {
            font-weight: bold; padding: 4px 10px; border-radius: 20px; font-size: 0.9em;
        }
        .plan-badge { background-color: #eef2ff; color: #4338ca; }
        .credit-badge { background-color: #dcfce7; color: #166534; }

        .form-panel .form-description { font-size: 0.9em; color: #6b7280; margin-bottom: 25px; line-height: 1.5; }
        .form-panel .form-group { margin-bottom: 20px; }
        .form-panel .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #374151; }
        .form-control {
            display: block; width: 100%; padding: 12px 15px; font-size: 1em;
            font-family: inherit; line-height: 1.5; color: #111827;
            background-color: #fff; border: 1px solid #d1d5db; border-radius: 6px;
            box-sizing: border-box; transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .form-control:focus {
            border-color: var(--primary-color); outline: 0;
            box-shadow: 0 0 0 3px rgba(118, 169, 255, 0.35);
        }
        .button-primary {
            display: block; width: 100%; padding: 12px; border: none;
            border-radius: 5px; font-weight: bold; transition: all 0.3s ease;
            background-color: var(--primary-color); color: #fff;
            cursor: pointer; font-size: 1em;
        }
        .button-primary:hover { opacity: 0.9; }

        /* --- BAŞLANGIÇ: İNDİRME GEÇMİŞİ TABLOSU (TAŞMAYAN LİSTE YAPISI) --- */
        .history-panel { grid-column: 1 / -1; }
        
        .history-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            font-size: 1rem; /* Masaüstü için varsayılan yazı boyutu */
            table-layout: fixed; /* Sütun genişliklerinin sabit kalmasını zorla */
            word-break: break-word; /* Uzun kelimeleri kır */
        }
        .history-table th, .history-table td {
            border-bottom: 1px solid #e2e8f0;
            padding: 15px 10px; /* Sağa sola boşluğu biraz azalttık */
            text-align: left;
            vertical-align: middle; /* İçeriği dikeyde ortala */
        }
        .history-table th {
            font-weight: 600;
            font-size: 0.85em;
            color: #6b7280;
            text-transform: uppercase;
        }
        .history-table tbody tr:hover { background-color: #f9fafb; }

        /* Sütun genişliklerini ayarlayalım */
        .history-table th:nth-child(1), .history-table td:nth-child(1) { width: 20%; } /* İndirme Tarihi */
        .history-table th:nth-child(2), .history-table td:nth-child(2) { width: 45%; } /* Filtre Bilgileri */
        .history-table th:nth-child(3), .history-table td:nth-child(3) { width: 15%; text-align: center; } /* Kullanılan Kredi */
        .history-table th:nth-child(4), .history-table td:nth-child(4) { width: 20%; text-align: center; } /* İşlem */

        .filter-list { list-style-type: none; padding: 0; margin: 0; }
        .filter-list .query { font-weight: bold; margin-bottom: 8px; }
        .filter-list li { font-size: 0.9em; color: #4a5568; margin-bottom: 4px; }
        .check-icon-small { color: #28a745; margin-right: 8px; }
        .info-icon-small { margin-right: 8px; }

        .actions-cell { text-align: center !important; }

        .download-btn {
            padding: 8px 12px; font-size: 0.8em; text-decoration: none;
            color: #fff; border: none; border-radius: 5px;
            display: inline-block; font-weight: 600;
            margin: 2px; /* Butonlar arasına küçük boşluk */
        }
        .download-btn.csv { background-color: #217346; }
        .download-btn.excel { background-color: #1D6F42; }
        /* --- BİTİŞ: İNDİRME GEÇMİŞİ TABLOSU --- */

        /* ========================
           MOBİL UYUMLULUK
           ======================== */
        @media screen and (max-width: 992px) {
            .account-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 768px) {
            .history-table {
                font-size: 0.85em; /* Mobilde yazıları biraz küçültelim */
            }
            .history-table th, .history-table td {
                padding: 12px 5px; /* Mobilde boşlukları daha da azaltalım */
            }
            .download-btn {
                display: block; /* Butonları alt alta diz */
                width: 100%;
                box-sizing: border-box;
                margin: 5px 0;
            }
        }

/* --- BLOG SAYFALARI İÇİN STİLLER --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    text-decoration: none;
    color: var(--text-color);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 20px;
}
.post-container {
    max-width: 800px; /* Yazıların çok geniş olmasını engelle */
}
.post-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}
.post-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- BLOG SAYFALARI İÇİN STİLLER BİTİŞ--- */


/* --- NASIL ÇALIŞIR SAYFASI STİLLERİ --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

/* --- NASIL ÇALIŞIR SAYFASI STİLLERİ BİTİŞ --- */


/* --- ABONELİK FORMU MODAL STİLLERİ (GÜNCELLENMİŞ) --- */

.modal-overlay {
    /* EKRANI TAMAMEN KAPLAMASI İÇİN */
    position: fixed; /* Sayfa kaydırılsa bile ekranda sabit kalır */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* ORTALAMA İŞLEMİ */
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: rgba(0, 0, 0, 0.6); /* Arka planı karartır */
    z-index: 2000; /* DİĞER HER ŞEYİN ÜSTÜNDE GÖRÜNMESİNİ SAĞLAR */
    
    /* GİZLEME/GÖSTERME EFEKTİ */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* JavaScript '.hidden' class'ını kaldırdığında bu stiller uygulanır */
.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 30px 40px; /* Padding'i biraz ayarladım */
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    /* Animasyonlu giriş efekti */
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay:not(.hidden) .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 10px; /* Başlık ve açıklama arasını açtım */
}

.modal-content p {
    margin-bottom: 25px; /* Açıklama ve form arasını açtım */
}

/* Form elemanları için ek stiller (daha şık görünmesi için) */
#abonelik-form .form-group {
    margin-bottom: 15px;
}

#abonelik-form input[type="text"],
#abonelik-form input[type="email"],
#abonelik-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#abonelik-form .button-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* --- ABONELİK FORMU MODAL STİLLERİ (GÜNCELLENMİŞ) BİTİŞ --- */


/* =============================================================== */
/* YENİ: TANITIM VİDEOSU BÖLÜMÜ STİLLERİ */
/* =============================================================== */

/* =============================================================== */
/* YENİ VE KESİN ÇÖZÜM: TANITIM VİDEOSU BÖLÜMÜ (Önce Mobil Yaklaşımı) */
/* =============================================================== */

.tanitim-bolumu {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

/* 1. ÖNCE MOBİL İÇİN TEMEL STİLLERİ YAZIYORUZ */
.video-metin-grid {
    display: flex;
    flex-direction: column; /* Mobilde her şey alt alta (video üstte, metin altta) */
    gap: 30px; /* Elemanlar arasındaki boşluk */
    /* DİKKAT: Burada genişlik veya ortalama ile ilgili HİÇBİR kural yok */
}

.video-sutunu,
.metin-sutunu {
    flex: 1; /* Esnek olmalarını sağlar */
}

/* Video sarmalayıcısı ve iframe stilleri aynı kalıyor (bunlar zaten responsive) */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.77%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Metin stilleri de aynı kalıyor */
.metin-sutunu h3 {
    font-size: 2em;
    margin-bottom: 15px;
}
.metin-sutunu p, .metin-sutunu ul {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}
.metin-sutunu ul {
    list-style-type: '✓ ';
    padding-left: 20px;
    margin-top: 20px;
}
.metin-sutunu ul li {
    padding-bottom: 10px;
}


/* 2. ŞİMDİ MASAÜSTÜ İÇİN EK KURALLAR EKLİYORUZ */
/* Bu kodlar sadece ekran genişliği 769px'den BÜYÜKSE çalışır */
@media screen and (min-width: 769px) {
    .video-metin-grid {
        /* Mobildeki dikey (column) düzenini yatay (row) ile değiştir */
        flex-direction: row;

        /* Sütunların içeriğini dikeyde ortala */
        align-items: center;
        
        /* BÖLÜMÜ KÜÇÜLT VE ORTALA (Sadece masaüstünde) */
        max-width: 900px;
        margin: 0 auto; /* Sayfanın ortasına hizala */
    }
}




#static-warning {
    color: #4a4a4a;                      /* DEĞİŞTİ: Koyu Gri Renk */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* DEĞİŞTİ: Daha modern ve okunabilir bir font */
    font-size: 1.1em;
    font-weight: bold;                      /* DEĞİŞTİ: Artık 'bold' (kalın) */
    font-style: italic;                     /* YENİ: Italik stil eklendi */
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #cccccc;       /* DEĞİŞTİ: Renge uygun gri bir ayırıcı çizgi */
}


/* ========================
   HERO YENİ EK ÖZELLİKLER PANELİ
   ======================== */

.options-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 25px 0;
    overflow: hidden; /* Köşelerin yuvarlak kalmasını sağlar */
}

.options-header {
    background-color: var(--secondary-color);
    padding: 12px 20px;
    font-weight: bold;
    color: var(--heading-color);
    font-size: 1.1em;
    text-align: center;
}

.option-box {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.option-box:hover {
    background-color: #f9fafb; /* Hafif bir hover efekti */
}

/* Checkbox'ları gizleyip kendi stilimizi oluşturuyoruz */
.option-box input[type="checkbox"] {
    /* Görünümü sıfırla */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* Boyut ve şekil */
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 15px;
    
    /* Konumlandırma */
    position: relative;
    top: 2px;
    flex-shrink: 0; /* Küçülmesini engelle */
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Checkbox işaretlendiğinde */
.option-box input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Checkbox içine tik (check) işareti ekleme */
.option-box input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.option-title {
    font-weight: 500;
    color: #333;
}

.option-credit {
    background-color: #eef2ff; /* Açık indigo */
    color: #4338ca; /* Koyu indigo */
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 10px;
}

/* hesabim.html veya style.css içine */
.check-icon-small {
    color: #28a745;
    margin-right: 8px;
    font-size: 0.8em;
}

.info-icon-small {
    margin-right: 8px;
    font-size: 0.8em;
}


/* ========================
   İKONLU İNDİRME BUTONLARI (NİHAİ VERSİYON)
   ======================== */

.download-link {
    /* Temel Görünüm Ayarları */
    display: inline-flex; /* ÖNEMLİ: inline-block yerine inline-flex oldu */
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    
    /* İçerik Hizalama Ayarları */
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-link:hover { 
    background-color: #0056b3; /* Örnek hover rengi, bunu kendinize göre ayarlayabilirsiniz */
}

/* Farklı Buton Renkleri */
.download-link.csv {
    background-color: #217346;
}
.download-link.csv:hover {
    background-color: #185232;
}

.download-link.excel {
    background-color: #1D6F42;
}
.download-link.excel:hover {
    background-color: #144e2e;
}

.download-link.gsheet {
    background-color: #0F9D58;
}
.download-link.gsheet:hover {
    background-color: #0c7e46;
}

/* İkonların Kendi Stili */
.btn-icon {
    height: 1.4em; 
    width: auto;
    vertical-align: middle; 
}


/* ========================
   FORM BİLGİLENDİRME KUTUSU
   ======================== */

.info-box {
    /* grid-column, kutunun form grid'inde tam genişlik kaplamasını sağlar */
    grid-column: 1 / -1; 
    
    display: flex;
    align-items: flex-start; /* İkonu ve metni üste hizala */
    gap: 12px;
    
    background-color: #eef2ff; /* Açık ve yumuşak bir indigo rengi */
    color: #4338ca; /* Koyu, okunaklı indigo */
    
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: -5px; /* Mahalle kutusuna biraz daha yaklaştır */
    margin-bottom: 15px;
    
    font-size: 0.9em;
}

.info-box .info-icon {
    font-size: 1.2em;
    line-height: 1.4; /* İkonu metinle dikey olarak daha iyi hizalamak için */
}

.info-box p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}


.brand{
  display:flex;
  align-items:center;
  gap:10px;
  width:fit-content;   /* içeriği kadar genişlik */
  margin:0 auto;       /* yatayda ortalar */
}


.brand__logo{
  width:98px;              /* ihtiyaca göre 20–36px arası iyi durur */
  height:auto;             /* oranı koru */
  display:block;
}

.brand__title{
  margin:0;                /* h4’ün varsayılan boşluğunu sıfırla */
  line-height:1.1;
}



/* Turuncu outline buton */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  width:100%; padding:10px 14px; border-radius:6px; font-weight:700;
  text-decoration:none; cursor:pointer; background:transparent; border:2px solid transparent;
}

/* yeşil olan varsa: .btn-outline { ... } koru; turuncu için: */
.btn-outline-orange{
  border-color:#f97316;      /* Orange 500 */
  color:#f97316;
  background:transparent;
  margin-bottom: 10px;
}
.btn-outline-orange:hover{ background:rgba(249,115,22,.08); }
.btn-outline-orange:active{ transform:translateY(1px); }
.btn-outline-orange:focus-visible{
  outline:2px solid #f97316; outline-offset:2px;
}

/* Butonlar yan yana tutarlı kalsın */
.plan-actions.two{ display:flex; gap:12px; }
.plan-actions.two .btn,
.plan-actions.two .plan-button{ flex:1; }
