/* ============================================================
   modern.css — Eliton Otomasyon Anasayfa Yeni Tasarım
   Sadece index.php tarafından yüklenir.
   Mevcut style.css, navigation.css, responsive.css değişmez.
   ============================================================ */

/* ---------- CSS Değişkenleri ---------- */
:root {
    --primary:      #C8102E;
    --primary-dark: #9c0b22;
    --dark:         #0f1923;
    --dark2:        #162030;
    --dark3:        #1e2d3d;
    --accent:       #e8eef4;
    --text-muted:   #8fa3b1;
    --white:        #ffffff;
    --radius:       10px;
    --radius-lg:    18px;
    --shadow:       0 6px 32px rgba(0,0,0,0.14);
    --shadow-hover: 0 12px 48px rgba(0,0,0,0.22);
    --transition:   0.3s cubic-bezier(.4,0,.2,1);
    --font-main:    'Maven Pro', Arial, sans-serif;
}

/* ============================================================
   GLOBAL DÜZELTMELER — Yatay kaydırma sorunu
   ============================================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Bootsnav attr-nav negatif margin düzeltmesi */
nav.navbar.bootsnav .attr-nav {
    margin-right: 0 !important;
}

/* Bootstrap row negatif margin taşması */
.container-fluid {
    overflow-x: hidden;
}

/* Slider taşmasını önle */
#jssor_1, [id^="jssor_"] {
    max-width: 100% !important;
    overflow: hidden !important;
}

/* ============================================================
   HEADER — Profesyonel yeni header (sadece anasayfa)
   Eski bootsnav gizle
   ============================================================ */
.top-bar,
nav.navbar.bootsnav,
nav.bootsnav {
    display: none !important;
}

/* Header CSS header.css dosyasına taşındı */
/* Anasayfada body padding sıfırla */
body { padding-top: 0 !important; }

/* ============================================================
   HERO BÖLÜMÜ
   ============================================================ */
.hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, var(--dark3) 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,16,46,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 60px max(30px, 5vw);
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    background: rgba(200,16,46,0.18);
    color: #ff6b7a;
    border: 1px solid rgba(200,16,46,0.4);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.28);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    text-decoration: none;
}

.hero-image {
    flex: 0 0 auto;
    width: min(420px, 45vw);
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    object-fit: cover;
}

/* Floating tags */
.hero-float-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-tag {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--primary);
    padding: 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.18);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 26px;
    color: rgba(255,255,255,0.7);
}

.stat-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-main);
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ============================================================
   ÜRÜN KATEGORİLERİ
   ============================================================ */
.products-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(200,16,46,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 90% 30%, rgba(200,16,46,0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Section header — beyaz arka plan için koyu metin */
.products-section .section-header {
    position: relative;
    z-index: 2;
}

.products-section .section-title {
    color: var(--dark);
}

.products-section .section-subtitle {
    color: #6b7280;
}

.products-section .section-eyebrow {
    background: rgba(200,16,46,0.08);
    color: var(--primary);
    border-color: rgba(200,16,46,0.2);
}

/* Ortak section header */
.section-header {
    text-align: center;
    margin-bottom: 52px;
    padding: 0 20px;
}

.section-eyebrow {
    display: inline-block;
    background: rgba(200,16,46,0.15);
    color: #ff8a9a;
    border: 1px solid rgba(200,16,46,0.3);
    border-radius: 50px;
    padding: 5px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Kart Izgarası ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 max(20px, 5vw);
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ---- Tek Kart ---- */
.product-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    border-radius: 0;
    height: 480px;
    cursor: pointer;
}

/* Köşe yuvarlatma sadece dış kenarlarda */
.product-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.product-card:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

/* Arka plan görseli */
.product-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.6s ease;
    filter: brightness(0.55) saturate(0.9);
}

.product-card:hover .product-card-img {
    transform: scale(1.07);
    filter: brightness(0.38) saturate(1.1);
}

/* Alt gradient overlay */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,20,0.96)   0%,
        rgba(10,10,20,0.55)  45%,
        rgba(10,10,20,0.15)  70%,
        transparent          100%
    );
    z-index: 1;
    transition: opacity var(--transition);
}

.product-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(10,10,20,0.98)   0%,
        rgba(10,10,20,0.72)  55%,
        rgba(10,10,20,0.30)  80%,
        transparent          100%
    );
}

/* Üst kırmızı çizgi aksan */
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.product-card:hover::after {
    transform: scaleX(1);
}

/* İçerik kutusu */
.product-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(8px);
    transition: transform var(--transition);
}

.product-card:hover .product-card-body {
    transform: translateY(0);
}

/* Etiket */
.product-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

/* Başlık */
.product-card-title {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Açıklama — varsayılan gizli, hover'da görünür */
.product-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.3s ease;
}

.product-card:hover .product-card-desc {
    max-height: 120px;
    opacity: 1;
}

/* Buton */
.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s, background var(--transition);
}

.product-card:hover .product-card-link {
    opacity: 1;
    transform: translateY(0);
}

.product-card-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

/* Sağ üst köşe numarası */
.product-card-num {
    position: absolute;
    top: 24px; right: 28px;
    z-index: 3;
    font-family: var(--font-main);
    font-size: 64px;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    transition: color var(--transition);
    pointer-events: none;
    user-select: none;
}

.product-card:hover .product-card-num {
    color: rgba(200,16,46,0.12);
}

/* ============================================================
   ÖZELLİKLER (FEATURES GRID) — Koyu Tasarım
   ============================================================ */
.features-section {
    background: var(--dark2);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Sol panel: başlık bloğu */
.features-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    max-width: 1260px;
    margin: 0 auto;
    min-height: 560px;
}

.features-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 48px 70px max(30px, 4vw);
    background: var(--dark);
    position: relative;
    z-index: 2;
}

.features-intro::after {
    content: '';
    position: absolute;
    top: 0; right: -1px;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(200,16,46,0.4) 30%,
        rgba(200,16,46,0.4) 70%,
        transparent 100%
    );
}

.features-intro .section-eyebrow {
    align-self: flex-start;
}

.features-intro .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 18px;
}

.features-intro-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 36px;
}

.features-intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(200,16,46,0.3);
    padding-bottom: 2px;
    transition: var(--transition);
    align-self: flex-start;
}

.features-intro-cta:hover {
    color: #ff4d66;
    border-color: #ff4d66;
    text-decoration: none;
    gap: 12px;
}

/* Sağ panel: kart ızgarası */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Tek kart */
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 36px 32px;
    border: none;
    border-radius: 0;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background var(--transition), border-color var(--transition);
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Sağ kenarlık son sütunda yok */
.feature-card:nth-child(3n) {
    border-right: none;
}

/* Alt kenarlık son satırda yok */
.feature-card:nth-child(n+4) {
    border-bottom: none;
}

/* Hover arka plan */
.feature-card:hover {
    background: rgba(255,255,255,0.03);
    transform: none;
    box-shadow: none;
}

/* Hover sol kırmızı çizgi */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

/* Büyük arka plan numarası */
.feature-card-num {
    position: absolute;
    bottom: -10px; right: 16px;
    font-family: var(--font-main);
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color var(--transition);
}

.feature-card:hover .feature-card-num {
    color: rgba(200,16,46,0.06);
}

/* İkon */
.feature-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(200,16,46,0.12);
    border: 1px solid rgba(200,16,46,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--transition), border-color var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(200,16,46,0.22);
    border-color: rgba(200,16,46,0.45);
}

.feature-icon-wrap .fa {
    font-size: 20px;
    color: var(--primary);
    transition: color var(--transition);
}

.feature-card:hover .feature-icon-wrap .fa {
    color: #ff6070;
}

/* Başlık */
.feature-title {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

/* Açıklama */
.feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0;
    transition: color var(--transition);
}

.feature-card:hover .feature-desc {
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   eNOD SPOTLIGHT — Beyaz Tasarım
   ============================================================ */
.enod-section {
    background: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
}

/* Tam yükseklik iki panel */
.enod-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* ---- Sol: Görsel panel ---- */
.enod-image-wrap {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.enod-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}

.enod-section:hover .enod-image-wrap img {
    transform: scale(1.04);
}

/* Sağa doğru soluklaşan maske */
.enod-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 60%,
        rgba(255,255,255,0.7) 85%,
        #ffffff 100%
    );
    pointer-events: none;
}

/* Üstte kırmızı aksan çizgisi */
.enod-image-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 3;
}

/* Floating stat kartı — sol panel üzerinde */
.enod-stat-card {
    position: absolute;
    bottom: 40px;
    left: 36px;
    z-index: 4;
    background: var(--dark);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border-left: 3px solid var(--primary);
}

.enod-stat-card-num {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.enod-stat-card-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    max-width: 80px;
}

/* ---- Sağ: İçerik paneli ---- */
.enod-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px max(36px, 5vw) 70px 52px;
    position: relative;
}

/* Arka plan dekoratif metin */
.enod-content::before {
    content: 'eNod';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-family: var(--font-main);
    font-size: 160px;
    font-weight: 900;
    color: rgba(200,16,46,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.enod-content .section-eyebrow {
    background: rgba(200,16,46,0.08);
    color: var(--primary);
    border-color: rgba(200,16,46,0.2);
    align-self: flex-start;
}

.enod-content .section-title {
    color: var(--dark);
    text-align: left;
    margin-bottom: 14px;
}

.enod-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 420px;
}

/* Özellik listesi — iki sütun, mini kart stili */
.enod-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.enod-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 600;
    background: #f5f7fa;
    border: 1px solid #eaecef;
    border-radius: 7px;
    padding: 10px 14px;
    transition: border-color var(--transition), background var(--transition);
}

.enod-features-list li:hover {
    border-color: rgba(200,16,46,0.25);
    background: rgba(200,16,46,0.04);
}

.enod-features-list li::before {
    content: '';
    width: 7px; height: 7px;
    min-width: 7px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Buton — kırmızı solid */
.enod-content .btn-hero-primary {
    align-self: flex-start;
    margin-bottom: 28px;
}

/* Protokol rozetleri — beyaz zemin */
.protocol-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #eaecef;
    margin-top: 0;
}

.protocol-badge {
    background: #f5f7fa;
    border: 1px solid #dde1e7;
    color: #4b5563;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: border-color var(--transition), color var(--transition);
}

.protocol-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================================
   HABERLER — Koyu Editöryal Tasarım
   ============================================================ */
.news-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,16,46,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Header — koyu zemin için beyaz */
.news-section .section-title       { color: var(--white); }
.news-section .section-subtitle    { color: rgba(255,255,255,0.45); }
.news-section .section-eyebrow     {
    background: rgba(200,16,46,0.18);
    color: #ff8a9a;
    border-color: rgba(200,16,46,0.35);
}

/* ---- Grid — Featured layout ---- */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    padding: 0 max(20px, 5vw);
    max-width: 1260px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Büyük öne çıkan kart — sol, 2 satır boyunca */
.news-card-featured {
    grid-row: 1 / 3;
}

/* ---- Ortak kart temeli ---- */
.news-card,
.news-card-featured {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

/* Görsel */
.news-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--dark3);
    transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.5s ease;
    filter: brightness(0.6) saturate(0.85);
}

.news-card:hover .news-card-img,
.news-card-featured:hover .news-card-img {
    transform: scale(1.06);
    filter: brightness(0.4) saturate(1);
}

/* Alt gradient overlay */
.news-card::before,
.news-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,8,15,0.97)  0%,
        rgba(5,8,15,0.55)  45%,
        rgba(5,8,15,0.10)  75%,
        transparent        100%
    );
    z-index: 1;
    transition: opacity var(--transition);
}

.news-card:hover::before,
.news-card-featured:hover::before {
    background: linear-gradient(
        to top,
        rgba(5,8,15,0.99)  0%,
        rgba(5,8,15,0.72)  55%,
        rgba(5,8,15,0.25)  80%,
        transparent        100%
    );
}

/* Üst kırmızı çizgi — hover'da açılır */
.news-card::after,
.news-card-featured::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.news-card:hover::after,
.news-card-featured:hover::after {
    transform: scaleX(1);
}

/* Yükseklikler */
.news-card-featured { min-height: 500px; }
.news-card          { min-height: 245px; }

/* ---- İçerik ---- */
.news-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    transform: translateY(6px);
    transition: transform var(--transition);
}

.news-card-featured .news-card-body {
    padding: 36px 36px 32px;
}

.news-card:hover .news-card-body,
.news-card-featured:hover .news-card-body {
    transform: translateY(0);
}

/* Kategori rozeti */
.news-card-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

/* Başlık */
.news-card-title {
    font-family: var(--font-main);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.news-card .news-card-title        { font-size: 15px; }
.news-card-featured .news-card-title { font-size: 22px; -webkit-line-clamp: 3; }

/* Excerpt — varsayılan gizli, hover'da açılır */
.news-card-excerpt {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.news-card-featured .news-card-excerpt {
    -webkit-line-clamp: 3;
}

.news-card:hover .news-card-excerpt,
.news-card-featured:hover .news-card-excerpt {
    max-height: 80px;
    opacity: 1;
    margin-top: 10px;
}

/* "Devamını Oku" linki */
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s, gap var(--transition);
}

.news-card:hover .news-card-link,
.news-card-featured:hover .news-card-link {
    opacity: 1;
    transform: translateY(0);
}

.news-card-link:hover {
    gap: 10px;
    color: #ff4d66;
    text-decoration: none;
}

/* "Tüm Haberler" butonu */
.news-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-news-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 12px 28px;
    transition: var(--transition);
}

.btn-news-all:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    text-decoration: none;
    gap: 12px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(90deg, var(--primary) 0%, #a80d27 100%);
    padding: 48px max(30px, 5vw);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cta-strip-text h3 {
    font-family: var(--font-main);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
}

.cta-strip-text p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 0;
}

.cta-strip-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta-white:hover {
    background: #f0f0f0;
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.35);
    white-space: nowrap;
}

.btn-cta-ghost:hover {
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,0.18);
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .product-card {
        height: 360px;
        border-radius: 0 !important;
    }

    .product-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; }
    .product-card:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important; }

    .product-card-desc {
        max-height: 80px;
        opacity: 1;
    }

    .product-card-link {
        opacity: 1;
        transform: none;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-intro {
        padding: 48px max(20px, 4vw) 36px;
    }

    .features-intro::after {
        display: none;
    }

    .features-intro .section-title {
        text-align: center;
    }

    .features-intro .section-eyebrow {
        align-self: center;
    }

    .features-intro-desc {
        text-align: center;
    }

    .features-intro-cta {
        align-self: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.05);
    }

    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .enod-inner {
        flex-direction: column;
        gap: 0;
    }

    .enod-image-wrap {
        flex: 0 0 auto;
        width: 100%;
        min-height: 320px;
    }

    .enod-image-wrap::after {
        background: linear-gradient(
            to bottom,
            transparent 60%,
            rgba(255,255,255,0.7) 85%,
            #ffffff 100%
        );
    }

    .enod-stat-card {
        bottom: 20px;
        left: 20px;
    }

    .enod-content {
        padding: 40px max(20px, 5vw);
    }

    .enod-content::before {
        font-size: 100px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-featured {
        grid-row: auto;
        min-height: 360px;
    }

    .news-card {
        min-height: 220px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: min(320px, 80vw);
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-float-tags {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .product-card {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card:nth-child(3n),
    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-featured,
    .news-card {
        min-height: 260px;
    }

    .enod-features-list {
        grid-template-columns: 1fr;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-buttons {
        justify-content: center;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

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