/**
 * 3K TEDARİK — Hero Slider (Premium)
 * Full-bleed responsive slider, crossfade transitions, image auto-scaling.
 * --------------------------------------------------------------
 * Yapı:
 *   .hero-slider                  → ana konteyner (full width)
 *     .hero-slider-stage          → tüm slaytlar üst üste, opacity ile geçiş
 *       .hero-slide               → tek slayt (image + overlay + content)
 *         .hero-slide-bg          → background image (object-fit: cover)
 *         .hero-slide-overlay     → koyu overlay (opacity ayarlanabilir)
 *         .hero-slide-grid        → ince grid pattern (premium hava)
 *         .hero-slide-orbs        → blur orblar (premium hava)
 *         .container > .hero-slide-content → metin bloğu
 *     .hero-slider-arrows         → << / >>
 *     .hero-slider-dots           → •••
 *     .hero-slider-progress       → autoplay ilerleme barı (üstte)
 * --------------------------------------------------------------
 */

/* =========================================================
   1. KONTEYNER
   ========================================================= */
.hero-slider {
    position: relative;
    width: 100%;
    /* Yükseklik admin panelden ayarlanır (CSS değişkeni ile override) */
    height: var(--hs-height-desktop, 92vh);
    min-height: 560px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F1B33 0%, #1B2A4A 40%, #2C4A7C 100%);
    isolation: isolate;
}

.hero-slider-stage {
    position: absolute;
    inset: 0;
}

/* =========================================================
   2. SLAYT
   ========================================================= */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.9s;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
}

/* ── Arka plan görseli (responsive auto scale) ── */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Hafif zoom-in animasyonu (Ken Burns benzeri) */
    transform: scale(1.05);
    transition: transform 7s ease-out;
}

.hero-slide.is-active .hero-slide-bg img {
    transform: scale(1.12);
}

/* Görsel yoksa premium gradient fallback */
.hero-slide-bg.no-image {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(74,127,181,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(44,74,124,0.30) 0%, transparent 50%),
        linear-gradient(135deg, #0F1B33 0%, #1B2A4A 40%, #2C4A7C 100%);
}

/* ── Koyu overlay (metin okunabilirliği için) ── */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 27, 51, var(--hs-overlay, 0.55)) 0%,
        rgba(27, 42, 74, calc(var(--hs-overlay, 0.55) * 0.85)) 60%,
        rgba(15, 27, 51, var(--hs-overlay, 0.55)) 100%
    );
    z-index: 1;
}

/* ── Premium grid pattern ── */
.hero-slide-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 2;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

/* ── Blur orblar ── */
.hero-slide-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-slide-orbs::before,
.hero-slide-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.hero-slide-orbs::before {
    width: 420px;
    height: 420px;
    background: rgba(74,127,181,0.30);
    top: 8%;
    left: 4%;
    animation: hsFloat 9s ease-in-out infinite;
}

.hero-slide-orbs::after {
    width: 320px;
    height: 320px;
    background: rgba(107,163,214,0.25);
    bottom: 10%;
    right: 8%;
    animation: hsFloat 11s ease-in-out infinite reverse;
}

@keyframes hsFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -25px); }
    66% { transform: translate(-20px, 15px); }
}

/* =========================================================
   3. İÇERİK (badge, başlık, metin, CTA)
   ========================================================= */
.hero-slide .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px; /* navbar yüksekliği */
}

/* Layout grid: solda metin, sağda kartlar (kart varsa) */
.hero-slide-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    align-items: center;
}
.hero-slide-layout.has-cards {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
}

.hero-slide-content {
    max-width: 720px;
    color: #fff;
    /* İlk yüklemede görsel olarak yumuşak gelsin */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}
.hero-slide-layout.has-cards .hero-slide-content {
    max-width: 100%;
}

.hero-slide.is-active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Hizalama varyasyonları */
.hero-slide[data-align="center"] .hero-slide-content {
    margin: 0 auto;
    text-align: center;
}
.hero-slide[data-align="center"] .hero-cta {
    justify-content: center;
}
.hero-slide[data-align="right"] .hero-slide-content {
    margin-left: auto;
    text-align: right;
}
.hero-slide[data-align="right"] .hero-cta {
    justify-content: flex-end;
}

/* Badge */
.hero-slide .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-slide .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #6BA3D6;
    border-radius: 50%;
    animation: hsPulseDot 2s ease-in-out infinite;
}

@keyframes hsPulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(107,163,214,0.55); }
    50%      { opacity: 0.85; box-shadow: 0 0 0 9px rgba(107,163,214,0); }
}

/* Başlık */
.hero-slide .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 24px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-slide .hero-title-line {
    display: block;
}

.hero-slide .hero-title-gradient {
    background: linear-gradient(135deg, #6BA3D6 0%, #B8D4ED 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Gradient text için text-shadow çalışmaz, alternatif glow */
    filter: drop-shadow(0 4px 20px rgba(107,163,214,0.35));
}

/* Açıklama */
.hero-slide .hero-desc {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.78;
    margin: 0 0 38px;
    max-width: 580px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero-slide[data-align="center"] .hero-desc {
    margin-left: auto;
    margin-right: auto;
}
.hero-slide[data-align="right"] .hero-desc {
    margin-left: auto;
}

/* CTA */
.hero-slide .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-slide .hero-cta .btn {
    padding: 15px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-slide .hero-cta .btn-primary {
    background: linear-gradient(135deg, #4A7FB5, #6BA3D6);
    color: #fff;
    border-color: transparent;
}
.hero-slide .hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #6BA3D6, #4A7FB5);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(74,127,181,0.45);
}

.hero-slide .hero-cta .btn-outline {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.hero-slide .hero-cta .btn-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-3px);
}

/* =========================================================
   4. NAVIGATION (Arrows + Dots)
   ========================================================= */
.hero-slider-arrows {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    pointer-events: auto;
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-arrow.prev { left: 28px; }
.hero-slider-arrow.next { right: 28px; }

/* Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(15,23,42,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dot:hover {
    background: rgba(255,255,255,0.65);
    transform: scale(1.2);
}

.hero-slider-dot.is-active {
    width: 30px;
    border-radius: 100px;
    background: linear-gradient(90deg, #6BA3D6, #B8D4ED);
}

/* =========================================================
   5. PROGRESS BAR (autoplay göstergesi)
   ========================================================= */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 5;
    overflow: hidden;
}

.hero-slider-progress-bar {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #4A7FB5, #6BA3D6, #B8D4ED);
    transition: width linear;
    box-shadow: 0 0 10px rgba(107,163,214,0.55);
}

/* =========================================================
   6. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .hero-slider {
        height: var(--hs-height-mobile, 78vh);
        min-height: 520px;
    }

    .hero-slide-content {
        max-width: 100%;
    }

    /* Tablet ve altında kartları metin altına dikey indir */
    .hero-slide-layout.has-cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-slide[data-align="center"] .hero-slide-content,
    .hero-slide[data-align="left"] .hero-slide-content,
    .hero-slide[data-align="right"] .hero-slide-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-slide .hero-cta {
        justify-content: center;
    }
    .hero-slide .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider-arrow.prev { left: 14px; width: 46px; height: 46px; }
    .hero-slider-arrow.next { right: 14px; width: 46px; height: 46px; }
}

@media (max-width: 768px) {
    .hero-slider {
        height: var(--hs-height-mobile, 78vh);
        min-height: 480px;
    }

    .hero-slide .container {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .hero-slide .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        margin-bottom: 18px;
    }

    .hero-slide .hero-desc {
        font-size: 0.96rem;
        margin-bottom: 28px;
    }

    .hero-slide .hero-cta .btn {
        padding: 13px 24px;
        font-size: 0.88rem;
    }

    .hero-slider-arrow {
        display: none; /* Mobilde swipe yeterli */
    }

    .hero-slider-dots {
        bottom: 22px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 460px;
    }

    .hero-slide .hero-badge {
        padding: 8px 16px;
        font-size: 0.74rem;
        margin-bottom: 18px;
    }

    .hero-slide .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-slide .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   7. SAĞ KARTLAR (Glassmorphism: feature_list / stat / badge)
   ========================================================= */
.hero-slide-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 14px;
    width: 100%;
    align-content: start;
}

/* Tek kart varsa tam genişlik kullansın */
.hero-slide-cards > .hsc-card:only-child {
    grid-column: 1 / -1;
}

.hsc-w-full { grid-column: 1 / -1; }
.hsc-w-half { grid-column: span 1; }

/* Kart taban */
.hsc-card {
    position: relative;
    padding: 22px 22px;
    background: linear-gradient(160deg,
        rgba(15, 23, 42, 0.55) 0%,
        rgba(27, 42, 74, 0.42) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    color: #fff;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1) calc(0.35s + var(--hsc-delay, 0ms)),
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1) calc(0.35s + var(--hsc-delay, 0ms));
}
.hero-slide.is-active .hsc-card {
    opacity: 1;
    transform: translateY(0);
}

/* İnce üst aksanlı çizgi */
.hsc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--hsc-line, rgba(107, 163, 214, 0.7)),
        transparent);
    opacity: 0.85;
}

/* Hover ışıltısı */
.hsc-card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--hsc-glow, rgba(107, 163, 214, 0.18)) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hsc-card:hover::after { opacity: 1; }

/* Aksent renkleri (kart bazında) */
.hsc-card.is-accent-blue   { --hsc-line: rgba(107, 163, 214, 0.75); --hsc-glow: rgba(74, 127, 181, 0.22); }
.hsc-card.is-accent-green  { --hsc-line: rgba(52, 211, 153, 0.75);  --hsc-glow: rgba(16, 185, 129, 0.22); }
.hsc-card.is-accent-amber  { --hsc-line: rgba(252, 211, 77, 0.75);  --hsc-glow: rgba(245, 158, 11, 0.22); }
.hsc-card.is-accent-violet { --hsc-line: rgba(196, 181, 253, 0.75); --hsc-glow: rgba(139, 92, 246, 0.22); }
.hsc-card.is-accent-red    { --hsc-line: rgba(252, 165, 165, 0.75); --hsc-glow: rgba(239, 68, 68, 0.22);  }
.hsc-card.is-accent-teal   { --hsc-line: rgba(94, 234, 212, 0.75);  --hsc-glow: rgba(20, 184, 166, 0.22); }

/* ── 7.1 FEATURE LIST kartı ── */
.hsc-card--feature_list .hsc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hsc-head-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--hsc-glow, rgba(74, 127, 181, 0.30)),
        rgba(255, 255, 255, 0.04));
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hsc-head-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hsc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hsc-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hsc-list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(3px);
}
.hsc-list-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(74, 127, 181, 0.30), rgba(74, 127, 181, 0.08));
}
.hsc-list-icon.is-accent-blue   { background: linear-gradient(135deg, rgba(74, 127, 181, 0.36), rgba(107, 163, 214, 0.10)); color: #B8D4ED; }
.hsc-list-icon.is-accent-green  { background: linear-gradient(135deg, rgba(16, 185, 129, 0.36), rgba(52, 211, 153, 0.10)); color: #86efac; }
.hsc-list-icon.is-accent-amber  { background: linear-gradient(135deg, rgba(245, 158, 11, 0.36), rgba(252, 211, 77, 0.10)); color: #fde68a; }
.hsc-list-icon.is-accent-violet { background: linear-gradient(135deg, rgba(139, 92, 246, 0.36), rgba(196, 181, 253, 0.10)); color: #ddd6fe; }
.hsc-list-icon.is-accent-red    { background: linear-gradient(135deg, rgba(239, 68, 68, 0.36), rgba(252, 165, 165, 0.10)); color: #fecaca; }
.hsc-list-icon.is-accent-teal   { background: linear-gradient(135deg, rgba(20, 184, 166, 0.36), rgba(94, 234, 212, 0.10)); color: #99f6e4; }

.hsc-list-body { min-width: 0; flex: 1; }
.hsc-list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 2px;
}
.hsc-list-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.4;
}

/* ── 7.2 STAT kartı (büyük rakam) ── */
.hsc-card--stat {
    text-align: center;
    padding: 24px 18px 22px;
}
.hsc-stat-label {
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.hsc-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    margin: 6px 0 4px;
    background: linear-gradient(135deg, #6BA3D6 0%, #B8D4ED 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 18px rgba(107, 163, 214, 0.30));
}
.hsc-card--stat.is-accent-green .hsc-stat-value { background: linear-gradient(135deg, #34D399, #86efac); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hsc-card--stat.is-accent-amber .hsc-stat-value { background: linear-gradient(135deg, #fbbf24, #fde68a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hsc-card--stat.is-accent-violet .hsc-stat-value { background: linear-gradient(135deg, #a78bfa, #ddd6fe); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hsc-card--stat.is-accent-red .hsc-stat-value { background: linear-gradient(135deg, #f87171, #fecaca); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hsc-card--stat.is-accent-teal .hsc-stat-value { background: linear-gradient(135deg, #2dd4bf, #99f6e4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.hsc-stat-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
}
.hsc-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.30);
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #86efac;
}
.hsc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    animation: hscDot 2s ease-in-out infinite;
}
@keyframes hscDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

/* ── 7.3 BADGE kartı (yatay icon + başlık) ── */
.hsc-card--badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}
.hsc-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--hsc-glow, rgba(74, 127, 181, 0.34)), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hsc-card--badge.is-accent-blue   .hsc-badge-icon { color: #B8D4ED; }
.hsc-card--badge.is-accent-green  .hsc-badge-icon { color: #86efac; }
.hsc-card--badge.is-accent-amber  .hsc-badge-icon { color: #fde68a; }
.hsc-card--badge.is-accent-violet .hsc-badge-icon { color: #ddd6fe; }
.hsc-card--badge.is-accent-red    .hsc-badge-icon { color: #fecaca; }
.hsc-card--badge.is-accent-teal   .hsc-badge-icon { color: #99f6e4; }

.hsc-badge-body { min-width: 0; flex: 1; }
.hsc-badge-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px;
    letter-spacing: -0.005em;
}
.hsc-badge-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.4;
}

/* Kartlar tablette: hala 2 kolon, ama biraz küçült */
@media (max-width: 1024px) {
    .hero-slide-cards {
        max-width: 720px;
        margin: 0 auto;
    }
    .hsc-card { padding: 18px 18px; }
}
@media (max-width: 600px) {
    .hero-slide-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hsc-w-full, .hsc-w-half { grid-column: 1 / -1; }
    .hsc-card { padding: 16px 16px; }
    .hsc-stat-value { font-size: 1.85rem; }
}

/* =========================================================
   8. ERİŞİLEBİLİRLİK / Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide-bg img,
    .hero-slide-content,
    .hsc-card,
    .hero-slide-orbs::before,
    .hero-slide-orbs::after,
    .hsc-dot {
        transition: none !important;
        animation: none !important;
    }
    .hero-slide.is-active .hero-slide-bg img {
        transform: scale(1);
    }
}
