/* ================================================
   inner-page.css — stats.php için
   stats.php'deki mevcut class isimleriyle tam uyumlu
   inner-hero, section-tag-line, btn-inner paylaşımlı sınıflar
   ================================================ */

/* ===== INNER HERO ===== */
.inner-hero {
    min-height: 420px;
    background: #111;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 80px;
}

.stats-hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #111 100%);
}

.inner-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.inner-hero-blob {
    position: absolute; top: -60px; right: -60px;
    width: 420px; height: 420px; z-index: 2; pointer-events: none;
}

.inner-hero-content {
    position: relative; z-index: 3;
    max-width: 1200px; margin: 0 auto; width: 100%;
    animation: ipFadeUp 0.7s ease both;
}

.inner-hero-tag {
    display: inline-block;
    background: rgba(226,6,19,0.15);
    border: 1px solid rgba(226,6,19,0.35);
    color: #e20613; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; padding: 6px 18px;
    border-radius: 20px; margin-bottom: 18px; text-transform: uppercase;
}

.inner-hero-content h1 {
    font-size: clamp(30px, 5vw, 58px); font-weight: 700;
    color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.inner-hero-content h1 span { color: #e20613; }

.inner-hero-content > p {
    color: rgba(255,255,255,0.6); font-size: 16px;
    max-width: 520px; line-height: 1.7; margin-bottom: 22px;
}

.inner-breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.inner-breadcrumb a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color .2s; }
.inner-breadcrumb a:hover { color: #e20613; }
.inner-breadcrumb i { color: rgba(255,255,255,0.2); font-size: 10px; }
.inner-breadcrumb span { color: #fff; font-size: 13px; font-weight: 500; }

/* ===== PAYLAŞIMLI: section-tag-line ===== */
.section-tag-line {
    display: block; color: #e20613;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 12px;
}

/* ===== STATS COUNTER SECTION ===== */
.stats-counter-section { padding: 90px 40px; }

.stats-counter-inner { max-width: 1280px; margin: 0 auto; }

.stats-header {
    text-align: center; margin-bottom: 58px;
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.stats-header h2 {
    font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
    margin-bottom: 14px; color: #1a1a1a;
}
.stats-header h2 span { color: #e20613; }
.stats-header p { color: #777; font-size: 15px; line-height: 1.7; }

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: #fff; border-radius: 20px; padding: 30px 18px;
    text-align: center; border: 1px solid #e8e8e8; transition: all .35s;
    animation: ipFadeUp 0.6s calc(var(--delay, 0s)) ease both;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
    border-color: rgba(226,6,19,0.2);
}

.stat-icon-wrap {
    width: 50px; height: 50px;
    background: rgba(226,6,19,0.1); border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: #e20613; font-size: 19px; margin: 0 auto 13px; transition: all .3s;
}
.stat-card:hover .stat-icon-wrap { background: #e20613; color: #fff; }

.stat-number {
    font-size: clamp(26px, 3vw, 36px); font-weight: 800;
    color: #1a1a1a; display: block; margin-bottom: 6px; line-height: 1;
    animation: countUp 0.6s ease both;
}

.stat-label { font-size: 12px; color: #888; font-weight: 500; line-height: 1.4; }

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
    background: #f8f8f8; padding: 80px 40px;
    border-top: 1px solid #e8e8e8;
}

.achievements-inner { max-width: 1280px; margin: 0 auto; }

.achievements-header { text-align: center; margin-bottom: 48px; }
.achievements-header h2 {
    font-size: clamp(24px, 3vw, 36px); font-weight: 700;
    margin-top: 8px; color: #1a1a1a;
}
.achievements-header h2 span { color: #e20613; }

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    border: 1px solid #e8e8e8; transition: all .35s;
    position: relative; overflow: hidden;
    animation: ipFadeUp 0.6s calc(var(--delay, 0s)) ease both;
}
.achievement-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #e20613; transform: scaleY(0); transform-origin: top; transition: transform .35s;
}
.achievement-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(0,0,0,0.1); }
.achievement-card:hover::after { transform: scaleY(1); }

.ach-icon-wrap {
    width: 44px; height: 44px;
    background: rgba(226,6,19,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #e20613; font-size: 17px; margin-bottom: 13px;
    transition: all .3s;
}
.achievement-card:hover .ach-icon-wrap { background: #e20613; color: #fff; }

.ach-year {
    font-size: 12px; font-weight: 700; color: #e20613;
    letter-spacing: 1px; display: block; margin-bottom: 5px;
}
.achievement-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: #1a1a1a; }
.achievement-card p { font-size: 13px; color: #777; line-height: 1.65; }

/* ===== PAYLAŞIMLI: CTA ===== */
.inner-cta-section {
    padding: 50px 40px; background: #fff;
    border-top: 1px solid #e8e8e8;
}
.inner-cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-inner {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px; border-radius: 11px;
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .3s;
}
.primary-btn-inner {
    background: #e20613; color: #fff; border: 2px solid #e20613;
}
.primary-btn-inner:hover {
    background: #b8000f; border-color: #b8000f;
    transform: translateY(-2px); box-shadow: 0 10px 25px rgba(226,6,19,0.3);
}
.outline-btn-inner {
    background: transparent; color: #1a1a1a; border: 2px solid #d0d0d0;
}
.outline-btn-inner:hover { border-color: #e20613; color: #e20613; transform: translateY(-2px); }

/* ===== ANİMASYONLAR ===== */
@keyframes ipFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSİVE ===== */
@media (max-width: 1024px) {
    .stats-counter-grid { grid-template-columns: repeat(4, 1fr); }
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .inner-hero { padding: 110px 20px 60px; min-height: 360px; }
    .stats-counter-section { padding: 50px 20px; }
    .achievements-section { padding: 50px 20px; }
    .inner-cta-section { padding: 36px 20px; }
    .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
    .achievements-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .inner-cta-inner { flex-direction: column; align-items: center; }
    .btn-inner { width: 100%; justify-content: center; }
}