/* --- home.css - CLEAN & SINGLE SOURCE --- */

/* =========================================================
   GLOBAL SPACING (TEK KAYNAK)
   - Bölümler arası boşluk: --home-section-gap
   - Hero'nun navbar'dan uzaklığı: --nav-safe-gap
   ========================================================= */
:root{
  --home-section-gap: clamp(80px, 11vh, 160px);
  --nav-safe-gap: 88px;          /* PC: artır -> hero aşağı iner */
  --nav-safe-gap-mobile: 22px;   /* Mobil: artır -> hero aşağı iner */
}

/* Home sayfası section boşlukları (hepsi eşit) */
.home-snap > section{
  padding-top: var(--home-section-gap) !important;
  padding-bottom: var(--home-section-gap) !important;
  margin: 0 !important;
}

/* Hero: padding-top ile savaşmak yerine margin-top ile aşağı indir */
section.acc-hero,
.home-snap > section.acc-hero{
  padding-top: 0 !important; /* tüm eski padding-top override’larını öldür */
  margin-top: var(--nav-safe-gap) !important;
  min-height: unset !important;
  height: auto !important;
}

/* Hero içeriğini yukarı iten şeyler olmasın */
.acc-hero-center{
  padding-top: 0 !important;
  margin-top: 0 !important;
}
h1.acc-hero-title,
.acc-hero-title{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Mobil ayarlar */
@media (max-width: 991px){
  :root{
    --home-section-gap: clamp(56px, 8vh, 110px);
  }

  section.acc-hero,
  .home-snap > section.acc-hero{
    margin-top: var(--nav-safe-gap-mobile) !important;
  }
}

/* ============================================
   KATEGORİ/ÜRÜN SLIDER (Marquee)
   ============================================ */
.game-marquee-wrapper{
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  padding:20px 0;
  margin-top:clamp(18px, 4vh, 50px);
  margin-bottom:clamp(28px, 6vh, 70px);
  mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.game-marquee-track{
  display:flex;
  gap:20px;
  animation:scroll-game 60s linear infinite;
  width:max-content;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes scroll-game{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-25%); }
}

.acc-cat-card{
  flex-shrink:0;
  display:block;
  width:240px;
  height:130px;
  border-radius:16px;
  position:relative;
  overflow:hidden;
  text-decoration:none !important;
  will-change: transform;
  transform: translateZ(0);
  border:1px solid rgba(255,255,255,0.08);
  transition: transform .3s ease, border-color .3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background:#111c2e;
}

.acc-cat-card:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border-color: rgba(59,130,246,0.4);
}

.acc-cat-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.game-marquee-wrapper .acc-cat-name,
.game-marquee-wrapper .acc-cat-overlay{
  display:none !important;
}

/* Hover edince animasyonu durdur */
.game-marquee-wrapper:hover .game-marquee-track,
.testimonial-marquee-wrapper:hover .testimonial-marquee-track{
  animation-play-state: paused;
}

/* ============================================
   HERO & SEARCH
   ============================================ */
.acc-hero-search{
  position: relative;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  overflow: hidden;
  transition:.3s;

  background: rgba(30, 58, 95, 0.95) !important;
  border:1px solid rgba(255,255,255,.15) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  box-sizing:border-box !important;

  margin-top:22px !important; /* tek değer: search’ın başlığa uzaklığı */
}

.acc-hero-search:focus-within{
  border-color:#3b82f6 !important;
  box-shadow:0 0 15px rgba(59,130,246,.25);
  transform: translateY(-2px);
}

.acc-search-input{
  background:transparent !important;
  border:none !important;
  color:#fff !important;
  font-weight:600 !important;
  width: 100%;
  padding: 18px 25px;
  border-radius: 50px;
}

.acc-search-btn{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #3b82f6;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ============================================
   SPLIT FEATURE SECTION (TIMELINE)
   ============================================ */

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.home-section-subtitle { color: #64748b; font-weight: 600; font-size: 18px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-marquee-wrapper{
  width:100%; overflow:hidden; white-space:nowrap; padding:30px 0;
  mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-marquee-track{
  display:flex; gap:30px; animation:scroll-testi 110s linear infinite;
  width:max-content; will-change: transform; transform: translateZ(0);
}

@keyframes scroll-testi{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.testimonial-card{
  flex-shrink:0; width:350px; white-space:normal;
  background: #111c2e;
  border:1px solid rgba(255,255,255,.05);
  border-radius:20px; padding:25px; transition:.3s ease;
}
.testimonial-card:hover{
  border-color:#3b82f6; transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59,130,246,.2);
}
.rating-stars{ color:#fbbf24; font-size:14px; margin-bottom:12px; }
.user-info h6{ color:#fff; font-weight:800; margin-bottom:2px; font-size:16px; }
.user-info span{ color:#3b82f6; font-size:11px; font-weight:600; text-transform:uppercase; }
.testimonial-text{ color:#cbd5e0; font-size:14px; line-height:1.5; font-style:italic; margin-top:10px; }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner{ padding:60px 0; margin-bottom:50px; }
.promo-card{
  background:linear-gradient(135deg, rgba(59,130,246,.15) 0%, #111c2e 100%);
  border:1px solid #3b82f6; border-radius:30px; padding:40px;
  position:relative; overflow:hidden; box-shadow:0 0 20px rgba(59,130,246,.2);
}
.promo-stock-badge{
  background:#ef4444; color:#fff; font-weight:800; padding:5px 15px;
  border-radius:50px; font-size:13px; display:inline-block; margin-bottom:15px;
}
.home-promo-text{
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  border-radius: 24px !important; padding: 18px 20px !important;
  color: #fff !important; max-width: 900px !important;
  margin: 18px auto 20px auto !important;
  font-weight: 600 !important; line-height: 1.5 !important;
}
.home-mail-box{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 50px !important; color:#fff !important;
  font-weight:700 !important; letter-spacing:0.4px !important;
  display:inline-flex !important; align-items:center !important;
  justify-content:center !important; padding: 14px 22px !important;
  min-width: 320px !important;
}

/* ============================================
   RESPONSIVE (MOBİL)
   ============================================ */
.mobile-hero-logo{ display:none !important; }

@media (max-width: 991px){
  img.mobile-hero-logo{
    display:block !important; 
    height: 90px !important;      /* ESKİSİ: 52px - YENİSİ: 90px (Büyütüldü) */
    max-height: 90px !important;  /* ESKİSİ: 52px - YENİSİ: 90px */
    width: auto !important; 
    max-width: 300px !important;  /* Genişlik sınırı artırıldı */
    margin: 0 auto 16px auto !important; 
    object-fit: contain !important;
    filter: drop-shadow(0 0 5px rgba(255,255,255,.1));
  }

  .acc-hero-center{ margin-top:0 !important; margin-bottom:18px !important; padding-top:0 !important; }

  h1.acc-hero-title{
    font-size:30px !important; font-weight:900 !important;
    line-height:1.2 !important; text-align:center;
  }

  .acc-hero-search{ width:100% !important; max-width:100% !important; margin:0 !important; }
  .acc-search-input{ width:100% !important; padding:12px 50px 12px 15px !important; font-size:14px !important; }

  .acc-cat-card{ width:180px !important; height:100px !important; }

  .testimonial-card{ width:280px; padding:20px; }

  .promo-card{ padding: 18px !important; border-radius: 18px !important; }
  .promo-card .section-title{ font-size: 30px !important; line-height: 1.05 !important; margin-bottom: 10px !important; }
  .promo-stock-badge{ font-size: 13px !important; padding: 6px 14px !important; border-radius: 999px !important; margin-bottom: 14px !important; }

  .home-promo-text{
    font-size: 16px !important; padding: 14px 14px !important;
    border-radius: 16px !important; margin: 12px auto 14px auto !important;
    max-width: 94vw !important;
  }

  .home-mail-box{
    font-size: 16px !important; padding: 12px 14px !important;
    border-radius: 16px !important; width: 94vw !important;
    max-width: 94vw !important; min-width: 0 !important;
    text-align:center !important; word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  .promo-card small{ font-size: 12px !important; opacity: .65 !important; }
}

@media (prefers-reduced-motion: reduce){
  .game-marquee-track, .testimonial-marquee-track{ animation:none !important; transform:none !important; }
}

/* Fallback: blur desteklemeyen tarayıcılar için */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .acc-hero-search, .testimonial-card, .promo-card{
    background: #111c2e !important;
  }
}
/* =========================================================
   MINI PATCH (SADECE 3 DÜZELTME)
   1) Split-feature: yeşil başlık + madde noktaları
   2) Popüler Sorular: accordion butonları/ok simgesi düzgün
   3) Müşteri Deneyimleri: başlık boyutu normale dönsün
   ========================================================= */

/* =============== 1) SPLIT FEATURE: YEŞİL + MADDE =============== */


/* =============== 2) HOME FAQ: ACCORDION DÜZGÜN =============== */

/* Bootstrap okunu kapatıp FontAwesome okunu bas */

/* mobil ufak düzeltme */


/* =============== 3) TESTIMONIALS: BAŞLIK BOYUTU =============== */
.testimonials-section .section-title{
  font-size:clamp(36px, 5vw, 52px) !important;
  font-weight:900 !important;
  letter-spacing:-1px !important;
  line-height:1.05 !important;
  margin-bottom:12px !important;
}

.testimonials-section .home-section-subtitle{
  font-size:18px !important;
  color:#64748b !important;
  font-weight:600 !important;
}
/* ===== FAQ WIDTH FIX (sadece Popüler Sorular) ===== */

/* Açıkken köşeler düzgün dursun (üst yuvarlak, alt body’de) */

/* --- SLIDER ALTI BOŞLUK DÜZELTMESİ --- */

/* 1. Slider'ın altındaki margin'i azaltıyoruz */
.game-marquee-wrapper {
    margin-bottom: 30px !important; /* Eskisi 70px idi */
}

/* 2. Slider'dan sonra gelen "Split Feature" bölümünün devasa üst padding'ini sıfırlıyoruz */


/* --- YENİ GÜVENLİ ALIM SİSTEMİ (V3 - FINAL - ŞEFFAF ARKA PLAN) --- */

.trust-system-section {
    position: relative;
    padding: 80px 0;
    margin-top: 0;
    /* ✅ ARKA PLAN KALDIRILDI: Sitenin ana rengi görünecek */
    background: transparent !important; 
}

/* Başlık Ayarı (Büyütüldü) */
.trust-system-section .section-title {
    font-size: 46px !important; 
    font-weight: 950 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    color: #fff !important;
}

.trust-system-section .home-section-subtitle {
    font-size: 18px !important;
    color: #94a3b8 !important; 
    font-weight: 500;
}

/* IZGARA YAPISI */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    margin-top: 40px; 
}

/* KART TASARIMI */
.trust-card {
    background: #111c2e; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 24px;
    padding: 35px 25px; 
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.trust-card:hover {
    transform: translateY(-8px);
    background: #16243d; 
    border-color: rgba(59, 130, 246, 0.3); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Numara Rozeti */
.step-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); 
    line-height: 1;
    pointer-events: none;
    font-family: 'Segoe UI', sans-serif;
    z-index: 0;
}

/* İKON KUTUSU */
.trust-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* İkon Renkleri */
.icon-blue { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.icon-purple { background: rgba(168, 85, 247, 0.1); color: #c084fc; }
.icon-green { background: rgba(34, 197, 94, 0.1); color: #4ade80; }
.icon-orange { background: rgba(249, 115, 22, 0.1); color: #fb923c; }

/* Hover Efektleri */
.trust-card:hover .icon-blue { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
.trust-card:hover .icon-purple { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); }
.trust-card:hover .icon-green { box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }
.trust-card:hover .icon-orange { box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); }

/* Metinler */
.trust-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    z-index: 2;
}

.trust-card p {
    color: #a0aec0; 
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    z-index: 2;
}

/* ALT BİLGİ (PILLS - NET GÖRÜNÜM) */
.trust-bottom-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-info-pill {
    background: #0f172a !important; 
    border: 1px solid #1e293b !important;
    padding: 12px 24px;
    border-radius: 16px; 
    color: #ffffff !important; 
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
}

.trust-info-pill i {
    color: #3b82f6; 
    font-size: 16px;
}

.trust-cta-btn {
    background: #3b82f6;
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-cta-btn:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

/* --- MOBİL İÇİN TAM OPTİMİZASYON (FIXED V2) --- */
@media (max-width: 991px) {
    /* Bölüm boşlukları: Alttan ekstra boşluk bırakıldı ki Chat butonu içeriği kapatmasın */
    .trust-system-section {
        padding: 40px 0 140px 0 !important; 
    }

    .trust-system-section .section-title {
        font-size: 28px !important; 
        margin-bottom: 12px !important;
        padding: 0 10px;
    }
    
    .trust-system-section .home-section-subtitle {
        font-size: 14px !important;
        padding: 0 20px;
        line-height: 1.6;
    }

    .trust-grid {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 14px;
        margin-top: 25px;
        margin-bottom: 30px;
        padding: 0 5px; /* Kenarlardan hafif boşluk */
    }
    
    /* Kart Yapısı: Mobilde daha kompakt */
    .trust-card {
        flex-direction: row; /* Yan yana dizilim (İkon Solda - Yazı Sağda) */
        text-align: left;
        padding: 16px 18px; /* İç boşluklar dengelendi */
        align-items: center; /* Dikeyde ortala */
        gap: 16px;
        min-height: unset;
        border-radius: 18px;
    }
    
    /* İkon Kutusu: Mobilde biraz küçültüldü */
    .trust-icon-box {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        font-size: 18px;
        flex-shrink: 0; /* İkonun ezilmesini engeller */
        border-radius: 14px;
    }
    
    .step-badge {
        display: none; /* Kalabalık yapmaması için gizlendi */
    }
    
    /* Kart İçerik Alanı */

    .trust-card h3 {
        margin: 0 0 4px 0;
        font-size: 16px;
        line-height: 1.3;
    }
    
    .trust-card p {
        font-size: 12px;
        line-height: 1.4;
        color: #94a3b8; /* Okunabilirlik için gri ton */
    }
    
    /* Alt Butonlar (Pills): Alt alta ve tam genişlik */
    .trust-bottom-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 5px;
    }
    
    .trust-info-pill {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 14px;
        background: #111c2e !important; /* Mobilde kartlarla aynı zemin */
    }
    
    .trust-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
        margin-top: 8px; /* Butonu biraz ayıralım */
    }
}



/* --- MODERN FAQ SECTION (FIXED V2) --- */

.home-faq-modern {
    padding: 80px 0;
    position: relative;
    background: transparent !important;
}

.home-faq-modern .section-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: 10px !important;
}

.home-faq-modern .home-section-subtitle {
    font-size: 18px !important;
    color: #94a3b8 !important;
    font-weight: 500;
}

.faq-grid-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* AKORDEON ITEM (Kapsayıcı Kart) */
.custom-accordion-modern .accordion-item {
    background: #111c2e !important; /* Kart Rengi */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    margin-bottom: 16px;
    overflow: hidden; /* Taşmaları gizle */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover ve Açık Durumda Kenarlık Parlaması */
.custom-accordion-modern .accordion-item:hover,
.custom-accordion-modern .accordion-item:has(.show) {
    border-color: rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* BUTON YAPISI (Düzeltildi) */
.custom-accordion-modern .accordion-header {
    margin: 0;
}

.custom-accordion-modern .accordion-button {
    /* Genişlik ve Hizalama Fix */
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Sola yasla */
    text-align: left !important;
    
    /* Arka planı temizle */
    background: transparent !important; 
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 24px 30px !important;
}

/* Varsayılan Bootstrap ikonunu kaldırıp kendi okumuzu ekliyoruz */
.custom-accordion-modern .accordion-button::after {
    background-image: none !important;
    content: '\f078'; /* FontAwesome Aşağı Ok */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #64748b;
    margin-left: auto !important; /* Oku en sağa it */
    transition: 0.3s;
}

/* İKON KUTUSU (Sol Taraf) */
.faq-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    margin-right: 18px; /* Yazı ile mesafe */
    flex-shrink: 0; /* İkonun ezilmesini önle */
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* AKTİF DURUM (AÇIKKEN) */
.custom-accordion-modern .accordion-button:not(.collapsed) {
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.05) !important; /* Çok hafif mavi zemin */
}

.custom-accordion-modern .accordion-button:not(.collapsed) .faq-icon {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

.custom-accordion-modern .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #3b82f6;
}

/* İÇERİK ALANI */
.custom-accordion-modern .accordion-body {
    /* Soldan boşluk vererek metni ikon hizasına getiriyoruz */
    padding: 0 30px 30px 92px !important; 
    color: #cbd5e1 !important;
    font-size: 15px !important;
    line-height: 1.7;
    background: transparent !important;
    border-top: none !important;
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .faq-grid-wrapper {
        padding: 0 10px;
    }
    
    .custom-accordion-modern .accordion-button {
        font-size: 16px !important;
        padding: 18px 20px !important;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        margin-right: 14px;
    }
    
    /* Mobilde metni ikonun hizasından çıkarıp normale döndür */
    .custom-accordion-modern .accordion-body {
        padding: 0 20px 24px 20px !important;
        font-size: 14px !important;
    }
}

/* İÇERİK ALANI (DÜZELTİLDİ) */
.custom-accordion-modern .accordion-body {
    /* padding: Üst | Sağ | Alt | Sol */
    /* Üstten 10px boşluk vererek yapışmayı engelledik */
    padding: 10px 30px 30px 92px !important; 
    color: #cbd5e1 !important;
    font-size: 15px !important;
    line-height: 1.7;
    background: transparent !important;
    border-top: none !important;
}

/* Mobilde de aynı düzeltmeyi yapalım */
@media (max-width: 991px) {
    /* ... diğer mobil kodlar ... */
    
    /* Mobilde metni ikonun hizasından çıkarıp normale döndür */
    .custom-accordion-modern .accordion-body {
        /* Mobilde de üstten 10px boşluk */
        padding: 10px 20px 24px 20px !important;
        font-size: 14px !important;
    }
}

/* --- İÇERİK ALANI (METİN TAM ORTALI & DENGELİ) --- */
.custom-accordion-modern .accordion-body {
    /* Eski 92px'lik sol boşluğu kaldırdık, her yerden eşit boşluk verdik */
    padding: 20px 40px 35px 40px !important; 
    
    /* Metni tam ortalıyoruz */
    text-align: center !important; 
    
    /* Okunabilirlik ayarları */
    color: #cbd5e1 !important;
    font-size: 16px !important; /* Fontu 1 tık büyüttük */
    line-height: 1.7;
    font-weight: 500;
    
    background: transparent !important;
    border-top: none !important;
}

/* Mobil için özel ayar */
@media (max-width: 991px) {
    .custom-accordion-modern .accordion-body {
        /* Mobilde kenar boşluklarını biraz kıstık */
        padding: 15px 20px 25px 20px !important;
        font-size: 14px !important;
        text-align: center !important; /* Mobilde de ortalı */
    }
}


/* --- FAQ ALTI DESTEK BUTONU --- */
.faq-support-area p {
    color: #94a3b8 !important;
    letter-spacing: 0.5px;
}

.btn-faq-support {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    
    background: rgba(59, 130, 246, 0.1); /* Hafif Mavi Zemin */
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    
    color: #60a5fa !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    
    transition: all 0.3s ease;
}

.btn-faq-support i {
    font-size: 18px;
    transition: 0.3s;
}

/* Hover Efekti */
.btn-faq-support:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.btn-faq-support:hover i {
    transform: rotate(-15deg); /* İkon hafif dönsün */
}

/* Mobilde biraz daha geniş olsun */
@media (max-width: 991px) {
    .btn-faq-support {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}



/* --- GLOBAL TOOLTIP (ABSOLUTE: SAYFAYLA HAREKET EDER) --- */

/* Orijinal balonu gizle */

/* Banner Wrapper */

/* Aktif buton */

/* --- YENİ AYAR: ABSOLUTE --- */


/* ============================================
   POPULAR PRODUCTS SECTION (V1)
   ============================================ */

/* Izgara Yapısı: Masaüstünde 4'lü */

/* Kart Tasarımı */

/* Görsel Alanı */

/* İçerik Alanı */

/* Kategori Başlığı */

/* Ürün Başlığı */

/* Alt Kısım (Fiyat ve Buton) */

/* Satın Al Butonu (İkon) */

/* Mobil Uyumluluk */


/* PERF: below-the-fold render geciktirme */
.trust-system-section,
.home-faq-modern,
.testimonials-section,
.promo-banner{
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

/* =========================
   HERO PROOF FINAL (3 Kart)
   - premium gradient/glow
   - 3 kolon / mobilde 1 kolon
   - ikon hizası %100 fix
   ========================= */

/* Konum: blok biraz yukarı - "boşluğun ortası" hissi gelsin */
.hero-proof-float{
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  transform: translateY(-56%); /* önceki -50 yerine biraz daha yukarı */
  margin: 0 !important;
}

/* 3 kart grid */
.hero-proof-cards{
  width: min(980px, calc(100% - 28px));
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;

  background: rgba(8, 20, 37, .42);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0,0,0,.30);
}

/* 3 kolon */
.hero-proof-cards.is-3{
  grid-template-columns: repeat(3, 1fr);
}

/* Kart */
.hero-proof-card{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 16px;
  border-radius: 16px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

/* Glow layer */
.hero-proof-card::before{
  content: "";
  position: absolute;
  inset: -60px;
  opacity: .65;
  filter: blur(26px);
  pointer-events: none;
  background: radial-gradient(circle at 18% 35%, rgba(59,130,246,.35), transparent 55%),
              radial-gradient(circle at 85% 70%, rgba(16,185,129,.18), transparent 55%);
}

/* Her karta ayrı renk hissi */
.hero-proof-card.hp-blue::before{
  background: radial-gradient(circle at 18% 35%, rgba(59,130,246,.40), transparent 58%),
              radial-gradient(circle at 85% 70%, rgba(99,102,241,.20), transparent 55%);
}
.hero-proof-card.hp-purple::before{
  background: radial-gradient(circle at 18% 35%, rgba(168,85,247,.35), transparent 58%),
              radial-gradient(circle at 85% 70%, rgba(59,130,246,.18), transparent 55%);
}
.hero-proof-card.hp-green::before{
  background: radial-gradient(circle at 18% 35%, rgba(34,197,94,.32), transparent 58%),
              radial-gradient(circle at 85% 70%, rgba(59,130,246,.18), transparent 55%);
}

/* Hover */
.hero-proof-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
}

/* İkon kutusu: tam ortalama + svg/fa fix */
.hero-proof-card .hp-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  line-height: 0;         /* baseline kaymasını bitirir */
  flex: 0 0 auto;
  position: relative;
  z-index: 2;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 6px rgba(255,255,255,.03);
}

/* Ikon rengi kart tipine göre */
.hero-proof-card.hp-blue .hp-ico{ border-color: rgba(59,130,246,.35); box-shadow: 0 0 0 6px rgba(59,130,246,.08); }
.hero-proof-card.hp-purple .hp-ico{ border-color: rgba(168,85,247,.35); box-shadow: 0 0 0 6px rgba(168,85,247,.08); }
.hero-proof-card.hp-green .hp-ico{ border-color: rgba(34,197,94,.30); box-shadow: 0 0 0 6px rgba(34,197,94,.07); }

.hero-proof-card .hp-ico i{
  display: block;
  line-height: 1;
  transform: translateY(.5px); /* gözle tam ortalama */
  font-size: 16px;
  color: rgba(255,255,255,.92);
}

/* Yazılar */
.hero-proof-card .hp-txt{ position: relative; z-index: 2; }
.hero-proof-card .hp-big{
  font-weight: 950;
  font-size: 16px;
  line-height: 1.05;
  color: #fff;
  letter-spacing: .2px;
}
.hero-proof-card .hp-sub{
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,.72);
}

/* Tablet */
@media (max-width: 991px){
  .hero-proof-float{ transform: translateY(-42%); }
  .hero-proof-cards.is-3{ grid-template-columns: 1fr; } /* mobil/tablet tek kolon */
  .hero-proof-card{ padding: 14px 14px; }
}

/* Küçük mobil */
@media (max-width: 520px){
  .hero-proof-float{ transform: translateY(-36%); }
  .hero-proof-cards{ padding: 12px; gap: 10px; }
  .hero-proof-card .hp-ico{ width: 40px; height: 40px; border-radius: 13px; }
  .hero-proof-card .hp-big{ font-size: 16px; }
  .hero-proof-card .hp-sub{ font-size: 12px; }
}




/* =========================
   HERO PROOF - MOBIL SLIDER (SWIPE)
   ========================= */
@media (max-width: 991px){

  /* dış wrapper: yatay kaydırma */
  .hero-proof-cards.is-3{
    display: flex !important;
    gap: 12px !important;

    overflow-x: auto !important;
    overflow-y: visible !important;

    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;

    /* kenarlarda nefes */
    padding: 12px !important;
  }

  /* scrollbarı gizle (iOS/Chrome) */
  .hero-proof-cards.is-3::-webkit-scrollbar{
    height: 0 !important;
  }

  /* kartlar: snap + genişlik */
  .hero-proof-cards.is-3 .hero-proof-card{
    flex: 0 0 85% !important;   /* ekrana göre kart genişliği */
    scroll-snap-align: center !important;
  }
}

/* küçük mobilde biraz daha geniş görünsün */
@media (max-width: 520px){
  .hero-proof-cards.is-3 .hero-proof-card{
    flex-basis: 92% !important;
  }
}



/* =========================
   HERO PROOF - PC ORTALAMA FIX (KESİN)
   ========================= */

/* PC / Desktop: ekran ortasına kilitle */
@media (min-width: 992px){
  .hero-proof-float{
    position: relative !important;
    left: 50% !important;
    width: 100% !important;

    /* senin translateY değerini koruyoruz + X ortalama ekliyoruz */
    transform: translate(-50%, -16%) !important;

    display: flex !important;
    justify-content: center !important;
  }

  .hero-proof-cards{
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Tablet/Mobil: senin mevcut davranışın kalsın */
@media (max-width: 991px){
  .hero-proof-float{
    left: 0 !important;
    transform: translateY(-42%) !important; /* sende neyse onu kullan */
  }
}

