/* =====================================================
   SMM Panel - Ana Sayfa CSS
   ===================================================== */

/* Sayfaya header yüksekliği kadar padding */
main#anasayfa { padding-top: 68px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position:   relative;
    overflow:   hidden;
    min-height: calc(100vh - 68px);
    display:    flex;
    align-items: center;
    padding:    60px 0;
}

/* Arkaplan efektleri */
.hero-bg-mesh {
    position:         absolute;
    inset:            0;
    background-image: radial-gradient(rgba(255, 77, 77, 0.04) 1px, transparent 1px);
    background-size:  36px 36px;
    pointer-events:   none;
}

.hero-bg-blur {
    position:      absolute;
    border-radius: 50%;
    filter:        blur(80px);
    pointer-events: none;
}

.hero-blur-1 {
    width:      500px;
    height:     500px;
    background: rgba(255, 77, 77, 0.08);
    top:        -100px;
    left:       -100px;
}

.hero-blur-2 {
    width:      400px;
    height:     400px;
    background: rgba(249, 203, 40, 0.05);
    bottom:     -80px;
    right:      10%;
}

.hero-ic {
    display:     grid;
    grid-template-columns: 1fr 1fr;
    gap:         60px;
    align-items: center;
    position:    relative;
    z-index:     2;
}

/* ── Hero Metin ─────────────────────────────────────── */
.hero-rozet {
    display:       inline-flex;
    align-items:   center;
    gap:           8px;
    background:    rgba(255, 77, 77, 0.08);
    border:        1px solid rgba(255, 77, 77, 0.2);
    border-radius: var(--radius-pill);
    padding:       6px 16px;
    font-size:     .82rem;
    font-weight:   600;
    color:         var(--accent-1);
    margin-bottom: 24px;
    animation:     festivalGlow 3s ease-in-out infinite;
}

@keyframes festivalGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
    50%       { box-shadow: 0 0 20px 4px rgba(255,77,77,0.15); }
}

.hero-baslik {
    font-size:      clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight:    800;
    letter-spacing: -2px;
    line-height:    1.1;
    margin-bottom:  24px;
}

.hero-aciklama {
    color:         var(--text-muted);
    font-size:     1.05rem;
    line-height:   1.8;
    max-width:     480px;
    margin-bottom: 36px;
}

.hero-butonlar {
    display:       flex;
    gap:           12px;
    flex-wrap:     wrap;
    margin-bottom: 36px;
}

.btn-buyuk {
    padding:   14px 32px;
    font-size: 1rem;
}

.hero-guven {
    display:    flex;
    gap:        24px;
    flex-wrap:  wrap;
}

.guven-item {
    display:     flex;
    align-items: center;
    gap:         6px;
    font-size:   .82rem;
    color:       var(--text-muted);
    font-weight: 500;
}

.guven-item i { color: var(--accent-1); font-size: 1rem; }

/* ── Hero Görsel Kartlar ────────────────────────────── */
.hero-gosel {
    display:        flex;
    flex-direction: column;
    gap:            16px;
    height:         auto;
    animation:      yuzer 8s ease-in-out infinite;
}

/* Ana Kart */
.hero-dashboard-card {
    background:      rgba(18, 18, 18, 0.6);
    border:          1px solid rgba(255, 255, 255, 0.05);
    border-radius:   var(--radius-lg);
    padding:         20px 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:      0 20px 40px rgba(0, 0, 0, 0.3);
    transition:      var(--transition);
}

.hero-dashboard-card.main-card {
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-dashboard-card.main-card:hover {
    border-color: rgba(255, 77, 77, 0.25);
    box-shadow:   0 20px 40px rgba(255, 77, 77, 0.06);
    transform:    translateY(-3px);
}

/* Ana Kart Detayları (hdc) */
.hdc-header {
    display:       flex;
    align-items:   center;
    gap:           16px;
    margin-bottom: 20px;
}

.hdc-platform {
    width:           44px;
    height:          44px;
    border-radius:   12px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.4rem;
    color:           #fff;
}
.hdc-platform.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.hdc-info {
    flex: 1;
}
.hdc-info strong {
    display:   block;
    font-size: 0.95rem;
    font-weight: 700;
}
.hdc-status {
    display:     flex;
    align-items: center;
    gap:         6px;
    font-size:   0.78rem;
    color:       #28a745;
    font-weight: 600;
    margin-top:  2px;
}
.status-dot {
    display:       inline-block;
    width:         8px;
    height:        8px;
    border-radius: 50%;
    background:    #28a745;
}
.status-dot.pulsing {
    box-shadow:    0 0 0 0 rgba(40, 167, 69, 0.4);
    animation:     canliBekle 2s ease infinite;
}

.hdc-fiyat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size:   1.3rem;
    background:  var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hdc-fiyat small {
    font-size: 0.75rem;
    color:     var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.hdc-body {
    margin-bottom: 20px;
}
.hdc-progress-label {
    display:         flex;
    justify-content: space-between;
    font-size:       0.8rem;
    color:           var(--text-muted);
    margin-bottom:   8px;
}
.hdc-progress-bar {
    height:        6px;
    background:    rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    overflow:      hidden;
}
.hdc-progress-fill {
    height:        100%;
    background:    var(--gradient);
    border-radius: 99px;
    animation:     dolulukGel 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hdc-footer {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   12px;
    text-align:            center;
    padding-top:           16px;
    border-top:            1px solid rgba(255, 255, 255, 0.04);
}
.hdc-stat-val {
    display:     block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size:   1.25rem;
    background:  var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hdc-stat-lbl {
    font-size: 0.72rem;
    color:     var(--text-muted);
}

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

.hk-baslik {
    display:       flex;
    align-items:   center;
    gap:           14px;
    margin-bottom: 24px;
}

.hk-ikon {
    width:           44px;
    height:          44px;
    border-radius:   12px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.4rem;
    flex-shrink:     0;
}

.hk-ikon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

.hk-baslik > div:nth-child(2) { flex: 1; }
.hk-baslik strong { display: block; font-size: .95rem; }
.hk-baslik small  { color: var(--text-muted); font-size: .78rem; }

.hk-fiyat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size:   1.3rem;
    background:  var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hk-fiyat sub { font-size: .55rem; vertical-align: baseline; }

.hk-ilerleme-wrap { margin-bottom: 24px; }

.hk-ilerleme-etiket {
    display:       flex;
    justify-content: space-between;
    font-size:     .78rem;
    color:         var(--text-muted);
    margin-bottom: 8px;
}

.hk-ilerleme-bar {
    height:        6px;
    background:    rgba(255,255,255,.06);
    border-radius: 99px;
    overflow:      hidden;
}

.hk-ilerleme-dolu {
    height:        100%;
    background:    var(--gradient);
    border-radius: 99px;
    animation:     dolulukGel 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dolulukGel {
    from { width: 0 !important; }
}

.hk-istatler {
    display:     grid;
    grid-template-columns: repeat(3, 1fr);
    gap:         12px;
    text-align:  center;
}

.hk-istat-sayi {
    display:        block;
    font-family:    var(--font-heading);
    font-weight:    800;
    font-size:      1.4rem;
    letter-spacing: -1px;
    background:     var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hk-istat span:last-child { font-size: .72rem; color: var(--text-muted); }

/* 2x2 Platform Izgarası */
.hero-dashboard-grid {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   16px;
}

.hero-grid-card {
    background:      rgba(18, 18, 18, 0.6);
    border:          1px solid rgba(255, 255, 255, 0.05);
    border-radius:   var(--radius-lg);
    padding:         16px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:      0 10px 30px rgba(0, 0, 0, 0.2);
    transition:      var(--transition);
}

.hgc-header {
    display:     flex;
    align-items: center;
    gap:         12px;
}

.hgc-icon {
    width:           36px;
    height:          36px;
    border-radius:   10px;
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.2rem;
    color:           #fff;
}

/* Platform Renkleri */
.hero-grid-card.tt .hgc-icon { background: #000; }
.hero-grid-card.tg .hgc-icon { background: #229ed9; }
.hero-grid-card.yt .hgc-icon { background: #ff0000; }
.hero-grid-card.sp .hgc-icon { background: #1db954; }

.hgc-text h4 {
    font-size:   0.88rem;
    font-weight: 700;
    margin:      0;
}
.hgc-sub {
    font-size: 0.72rem;
    color:     var(--text-muted);
}

.hgc-badge {
    margin-left:   auto;
    font-size:     0.7rem;
    font-weight:   700;
    padding:       4px 8px;
    border-radius: 20px;
}
.hgc-badge.positive {
    background: rgba(40, 167, 69, 0.1);
    color:      #28a745;
}
.hgc-badge.active {
    background: rgba(40, 167, 69, 0.1);
    color:      #28a745;
    border:     1px solid rgba(40, 167, 69, 0.2);
}

/* Hover Efektleri */
.hero-grid-card:hover {
    transform: translateY(-3px);
}
.hero-grid-card.tt:hover { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05); }
.hero-grid-card.tg:hover { border-color: rgba(34, 158, 217, 0.3); box-shadow: 0 10px 30px rgba(34, 158, 217, 0.08); }
.hero-grid-card.yt:hover { border-color: rgba(255, 0, 0, 0.3); box-shadow: 0 10px 30px rgba(255, 0, 0, 0.08); }
.hero-grid-card.sp:hover { border-color: rgba(29, 185, 84, 0.3); box-shadow: 0 10px 30px rgba(29, 185, 84, 0.08); }

/* Alt Güvenlik Kartı */
.hero-dashboard-card.footer-card {
    display:     flex;
    align-items: center;
    gap:         12px;
    padding:     14px 24px;
}
.hero-dashboard-card.footer-card i {
    font-size: 1.4rem;
    color:     var(--accent-2);
}
.hero-dashboard-card.footer-card span {
    font-size: 0.82rem;
    color:     var(--text-muted);
}
.hero-dashboard-card.footer-card strong {
    color: var(--text-color);
}

.float-kart-3 span { font-size: .8rem; color: var(--text-muted); }
.float-kart-3 strong { color: var(--text-color); }

/* ══════════════════════════════════════
   İSTATİSTİKLER
══════════════════════════════════════ */
.istatler-bolum {
    padding:    60px 0;
    background: var(--bg-color-alt);
    border-top:    1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.istatler-izgara {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   20px;
}

.istat-kart {
    padding:    28px;
    text-align: center;
    position:   relative;
    overflow:   hidden;
}

.istat-kart::after {
    content:    '';
    position:   absolute;
    bottom:     0;
    left:       50%;
    transform:  translateX(-50%);
    width:      40%;
    height:     2px;
    background: var(--gradient);
    border-radius: 2px;
}

.ik-sayi {
    font-family:    var(--font-heading);
    font-weight:    800;
    font-size:      2.4rem;
    letter-spacing: -2px;
    background:     var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height:    1;
    margin-bottom:  8px;
}

.ik-etiket { color: var(--text-muted); font-size: .85rem; font-weight: 500; }

.ik-ikon {
    position:  absolute;
    right:     20px;
    top:       50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity:   0.04;
    color:     var(--accent-1);
}

/* ══════════════════════════════════════
   PLATFORMLAR
══════════════════════════════════════ */
.platform-izgara {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   20px;
}

.platform-kart {
    padding:    28px;
    transition: var(--transition);
    cursor:     pointer;
}

.platform-kart:hover {
    border-color: color-mix(in srgb, var(--plt-renk) 40%, transparent);
    box-shadow:   0 12px 40px color-mix(in srgb, var(--plt-renk) 15%, transparent);
    transform:    translateY(-6px);
}

.pk-baslik {
    display:       flex;
    align-items:   center;
    gap:           14px;
    margin-bottom: 20px;
}

.pk-ikon {
    width:           48px;
    height:          48px;
    border-radius:   14px;
    background:      color-mix(in srgb, var(--plt-renk) 12%, transparent);
    border:          1px solid color-mix(in srgb, var(--plt-renk) 25%, transparent);
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.5rem;
    color:           var(--plt-renk);
    flex-shrink:     0;
}

.pk-baslik h3 { font-size: 1rem; font-weight: 700; margin: 0; letter-spacing: 0; }

.pk-hizmetler {
    display:        flex;
    flex-direction: column;
    gap:            8px;
    margin-bottom:  20px;
}

.pk-hizmetler li {
    display:     flex;
    align-items: center;
    gap:         8px;
    font-size:   .85rem;
    color:       var(--text-muted);
}

.pk-hizmetler li i {
    color:     var(--plt-renk);
    font-size: .8rem;
    flex-shrink: 0;
}

.pk-btn {
    display:       flex;
    align-items:   center;
    gap:           6px;
    font-size:     .82rem;
    font-weight:   700;
    color:         var(--plt-renk);
    margin-top:    auto;
    transition:    var(--transition);
}

.pk-btn i { font-size: .75rem; transition: transform 0.3s ease; }
.platform-kart:hover .pk-btn i { transform: translateX(4px); }

/* ══════════════════════════════════════
   NASIL ÇALIŞIR
══════════════════════════════════════ */
.nasil-calisir {
    position:   relative;
    background: var(--bg-color-alt);
    overflow:   hidden;
    border-top:    1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.nasil-bg-blur {
    position:      absolute;
    width:         600px;
    height:        600px;
    border-radius: 50%;
    background:    rgba(255, 77, 77, 0.04);
    filter:        blur(100px);
    top:           50%;
    left:          50%;
    transform:     translate(-50%, -50%);
    pointer-events: none;
}

.adimlar-wrap {
    display:     grid;
    grid-template-columns: repeat(3, 1fr);
    gap:         24px;
    position:    relative;
}

.adim-cizgi {
    position:   absolute;
    top:        44px;
    left:       calc(16.6% + 24px);
    right:      calc(16.6% + 24px);
    height:     1px;
    background: linear-gradient(90deg, transparent, rgba(255,77,77,0.3), transparent);
    z-index:    0;
}

.adim { position: relative; z-index: 1; }

.adim-no {
    font-family:    var(--font-heading);
    font-weight:    800;
    font-size:      2.5rem;
    letter-spacing: -2px;
    background:     var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align:     center;
    margin-bottom:  16px;
    line-height:    1;
}

.adim-kart {
    padding:    28px;
    text-align: center;
    height:     100%;
}

.adim-ikon {
    width:           52px;
    height:          52px;
    border-radius:   var(--radius-md);
    background:      rgba(255, 77, 77, 0.1);
    border:          1px solid rgba(255, 77, 77, 0.2);
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.4rem;
    color:           var(--accent-1);
    margin:          0 auto 16px;
    transition:      var(--transition);
}

.adim-kart:hover .adim-ikon {
    background: rgba(255, 77, 77, 0.2);
    transform:  scale(1.1);
}

.adim-kart h3 { font-size: 1rem; margin-bottom: 10px; letter-spacing: -0.3px; }
.adim-kart p  { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }

/* ══════════════════════════════════════
   NEDEN BİZ
══════════════════════════════════════ */
.neden-ic {
    display:     grid;
    grid-template-columns: 1fr 1fr;
    gap:         64px;
    align-items: start;
}

.neden-metin h2 { margin-bottom: 16px; }

.ozellik-item {
    display:       flex;
    gap:           16px;
    align-items:   flex-start;
    margin-bottom: 24px;
}

.ozellik-ikon {
    width:           40px;
    height:          40px;
    border-radius:   10px;
    background:      rgba(255, 77, 77, 0.08);
    border:          1px solid rgba(255, 77, 77, 0.15);
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.1rem;
    color:           var(--accent-1);
    flex-shrink:     0;
    margin-top:      2px;
    transition:      var(--transition);
}

.ozellik-item:hover .ozellik-ikon { background: rgba(255,77,77,.15); transform: scale(1.1); }

.ozellik-item strong { display:block; font-size:.9rem; margin-bottom:4px; }
.ozellik-item > div > p { font-size:.83rem; color:var(--text-muted); line-height:1.6; margin:0; }

/* Sağ Kart */
.neden-gosel { position: sticky; top: 88px; }

.ng-kart { padding: 24px; }

.ng-kart-baslik {
    display:         flex;
    align-items:     center;
    gap:             10px;
    font-size:       .88rem;
    font-weight:     600;
    margin-bottom:   20px;
    color:           var(--text-muted);
}

.ng-kart-baslik i { color: var(--accent-1); font-size: 1.1rem; }

.ng-canli-dot {
    width:         8px;
    height:        8px;
    border-radius: 50%;
    background:    #28a745;
    margin-left:   auto;
    box-shadow:    0 0 0 0 rgba(40,167,69,.4);
    animation:     canliBekle 2s ease infinite;
}

@keyframes canliBekle {
    0%   { box-shadow: 0 0 0 0 rgba(40,167,69,.4); }
    70%  { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}

.ng-grafik { margin-bottom: 20px; }
.ng-grafik svg { width: 100%; height: auto; }

.ng-metrikler {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   12px;
    text-align:            center;
    margin-bottom:         20px;
    padding-bottom:        20px;
    border-bottom:         1px solid rgba(255,255,255,.05);
}

.ngm-sayi {
    display:        block;
    font-family:    var(--font-heading);
    font-weight:    800;
    font-size:      1.4rem;
    letter-spacing: -1px;
    background:     var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ngm-etiket { font-size: .72rem; color: var(--text-muted); }

/* Son Siparişler */
.ng-son-siparisler { display: flex; flex-direction: column; gap: 10px; }

.ngs-satir {
    display:       flex;
    align-items:   center;
    gap:           12px;
    padding:       10px 12px;
    background:    rgba(255,255,255,.02);
    border-radius: var(--radius-md);
    border:        1px solid rgba(255,255,255,.04);
}

.ngs-platform {
    width:           32px;
    height:          32px;
    border-radius:   8px;
    flex-shrink:     0;
    display:         flex;
    align-items:     center;
    justify-content: center;
    font-size:       1.1rem;
    color:           #fff;
}

.ngs-platform.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743); }
.ngs-platform.tt { background: #000; }
.ngs-platform.yt { background: #ff0000; }
.ngs-platform.tg { background: #229ed9; }
.ngs-platform.sp { background: #1db954; }
.ngs-platform.tw { background: #1d9bf0; }

.ngs-bilgi          { flex: 1; }
.ngs-bilgi strong   { display:block; font-size:.82rem; }
.ngs-bilgi small    { color:var(--text-muted); font-size:.73rem; }
.ngs-sure           { font-size:.75rem; color:var(--text-muted); display:flex; align-items:center; gap:4px; }

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta-bolum {
    padding:  80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-blur {
    position:      absolute;
    width:         800px;
    height:        400px;
    background:    radial-gradient(ellipse, rgba(255,77,77,0.08) 0%, transparent 70%);
    left:          50%;
    top:           50%;
    transform:     translate(-50%, -50%);
    pointer-events: none;
}

.cta-kart {
    padding:    56px;
    text-align: center;
    position:   relative;
    overflow:   hidden;
}

.cta-arka-doku {
    position:         absolute;
    inset:            0;
    background-image: radial-gradient(rgba(255, 77, 77, 0.03) 1px, transparent 1px);
    background-size:  24px 24px;
    pointer-events:   none;
}

.cta-kart h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; position:relative; }
.cta-kart > p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; position:relative; }

.cta-butonlar {
    display:         flex;
    gap:             12px;
    justify-content: center;
    flex-wrap:       wrap;
    margin-bottom:   20px;
    position:        relative;
}

.cta-alt { color: var(--text-muted); font-size: .8rem; position: relative; }

/* ══════════════════════════════════════
   SIKÇA SORULAN SORULAR (SIKÇA SORULAN SORULAR)
   ══════════════════════════════════════ */
.sss-konteyner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sss-kart {
    padding: 0;
    overflow: hidden;
    background: rgba(22, 22, 22, 0.4);
    border: 1px solid var(--card-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sss-kart:hover {
    border-color: rgba(255, 77, 77, 0.2);
    box-shadow: 0 4px 20px rgba(255, 77, 77, 0.04);
    transform: none;
}

.sss-soru {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 20px;
}

.sss-soru span {
    flex: 1;
}

.sss-soru i {
    font-size: 1.2rem;
    color: var(--accent-1);
    transition: transform 0.3s ease;
}

.sss-kart.aktif .sss-soru i {
    transform: rotate(45deg);
    color: var(--accent-2);
}

.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sss-cevap-ic {
    padding: 0 24px 24px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   MÜŞTERİ YORUMLARI (TESTIMONIALS)
   ══════════════════════════════════════ */
.yorum-izgara {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yorum-kart {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yk-yildizlar {
    display: flex;
    gap: 4px;
    color: #f9cb28;
    font-size: 0.95rem;
}

.yk-metin {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.yk-profil {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
}

.yk-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yk-profil strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
}

.yk-profil small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    .hero-ic {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-metin {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-baslik {
        font-size: clamp(1.8rem, 6vw, 3rem);
        letter-spacing: -1px;
    }
    .hero-aciklama {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-butonlar {
        justify-content: center;
        width: 100%;
    }
    .hero-guven {
        justify-content: center;
    }
    .hero-gosel {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .neden-ic {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .neden-gosel {
        position: static;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .istatler-izgara {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .platform-izgara {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .yorum-izgara {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .adimlar-wrap {
        display: flex;
        flex-direction: column;
        gap: 36px;
    }
    .adim {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .adim-no {
        margin-bottom: 8px;
    }
    .adim-kart {
        height: auto;
        width: 100%;
        padding: 24px;
    }
    .adim-cizgi {
        display: none;
    }
    .cta-kart {
        padding: 36px 24px;
    }
}

@media (max-width: 640px) {
    .platform-izgara {
        grid-template-columns: 1fr;
    }
    .hero-butonlar {
        flex-direction: column;
    }
    .btn-buyuk {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .istatler-izgara {
        grid-template-columns: 1fr;
    }
    .istat-kart {
        padding: 20px;
    }
    .ng-metrikler {
        gap: 8px;
    }
    .ngm-sayi {
        font-size: 1.15rem;
    }
}
