/* ============================================
   ORTAK BADGE DEĞİŞKENLERİ
   numara-badge ve timeline-number için ortak renk değişkenleri
   ============================================ */

:root {
    --badge-bg-gradient: linear-gradient(135deg, var(--brand-primary) 0%, #0a2342 100%);
    --badge-text-color: var(--brand-accent);
    --badge-border-color: var(--brand-accent-secondary);
}

/* ============================================
   BİLGİ KUTUSU KOMPONENTİ
   Gezi Bilgileri ve Güvenlik bölümü için
   ============================================ */

.bilgi-kutusu {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 4rem;
    border: 2px solid rgba(67, 56, 202, 0.1);
}

.bilgi-kutusu h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bilgi-kutusu h4 i {
    color: #4338ca;
    font-size: 1.75rem;
}

.bilgi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bilgi-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bilgi-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bilgi-item-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.bilgi-item-content p {
    color: rgba(15, 23, 42, 0.7);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bilgi-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ÖZELLİK KARTLARI KOMPONENTİ
   İkonlu kart grid yapısı için
   ============================================ */

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ozellik-kart {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(67, 56, 202, 0.1);
    transition: all 0.3s ease;
}

.ozellik-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(67, 56, 202, 0.15);
}

.ozellik-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.ozellik-kart h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.ozellik-kart p {
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .ozellik-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FİLTRE KATEGORİ KOMPONENTİ
   Kategori filtreleme butonları için
   ============================================ */

.filtre-kategori {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filtre-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtre-btn:hover,
.filtre-btn.active {
    border-color: #4338ca;
    background: #4338ca;
    color: #fff;
}

@media (max-width: 768px) {
    .filtre-kategori {
        justify-content: flex-start;
    }
}

/* ============================================
   PAGE HERO KOMPONENTİ
   Ortak sayfa hero stili
   Kullanım: haberler, okul gezileri, topluma hizmet, rehberlik vb.
   ============================================ */

.page-hero {
    background: radial-gradient(circle at 20% 30%, rgba(145, 25, 37, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(107, 18, 25, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, #2a0408 0%, #4a0d10 25%, var(--brand-primary) 50%, #6b1219 75%, #4a0d10 100%);
    color: #fff;
    padding: clamp(8rem, 12vw, 12rem) 0 clamp(4rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 180, 131, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.page-hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   GOLD TEXT COLOR
   Altın renkli metin için
   ============================================ */

.gold {
    color: var(--brand-accent-secondary) !important;
}

/* ============================================
   RELATED POLICIES / POLICY TILE KOMPONENTİ
   İlgili politikalar bölümü için kart yapısı
   ============================================ */

.related-policies {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, rgba(247, 250, 255, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-top: 1px solid var(--brand-accent-secondary);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    overflow: hidden;
}

.related-policies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-accent-secondary), var(--brand-accent), var(--brand-accent-secondary));
    opacity: 0.6;
}

.related-policies .container {
    position: relative;
    z-index: 1;
}

.related-policies h2 {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.policy-tile {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 1.4rem;
    padding: clamp(1.6rem, 3vw, 2rem);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.policy-tile:hover {
    transform: translateY(-4px);
    border-color: var(--brand-accent-secondary);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.12);
}

.policy-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(1, 104, 179, 0.12), rgba(1, 104, 179, 0.3));
    color: #0168b3;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.policy-tile h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.policy-tile p {
    color: rgba(15, 23, 42, 0.68);
    line-height: 1.7;
}

/* ============================================
   FEATURES PANEL KOMPONENTİ
   Ortak özellikler/özellikler paneli yapısı
   Kullanım: foundations-panel, services-grid, felsefe-grid, optional-services-grid vb.
   ============================================ */

.features-panel {
    background-color: var(--brand-white);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
    padding: clamp(2.8rem, 6vw, 4rem);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.feature-item {
    padding: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(11, 31, 58, 0.12), transparent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #0a2342 100%);
    border: 2px solid var(--brand-accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--brand-accent-secondary);
    font-size: 1.6rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-item p {
    margin: 0;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
}

/* Icon olmayan durumlar için */
.feature-item:not(:has(.feature-icon)) {
    text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .feature-item:nth-child(2n):not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(11, 31, 58, 0.12), transparent);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .feature-item + .feature-item {
        border-top: 1px solid rgba(11, 31, 58, 0.08);
        padding-top: clamp(2rem, 4vw, 2.5rem);
    }
}

/* ============================================
   CONTENT ROW KOMPONENTİ
   Resim + metin alternatif yerleşim yapısı
   Kullanım: z-row, deneyim-satiri, process-row, experience-row vb.
   ============================================ */

.content-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: 28px;
    background-color: var(--brand-white);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.08);
    margin-bottom: 2.5rem;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-row:nth-child(even) {
    background-color: var(--brand-sand);
}

/* Alternatif yerleşim için - çift satırlarda resim sağda */
.content-row:nth-child(even) {
    direction: rtl;
}

.content-row:nth-child(even) > * {
    direction: ltr;
}

/* Resim container */
.content-row-media,
.content-row figure {
    position: relative;
    width: 100%;
}

.content-row-media img,
.content-row figure img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
    min-height: 240px;
    aspect-ratio: 4 / 3;
}

/* Metin container */
.content-row-content,
.content-row .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Etiket/numara span */
.content-row-content span,
.content-row .content span {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Numaralandırma (numara-badge class'ı ile) - timeline-number ile aynı görünüm */
.numara-badge,
.content-row-content .numara-badge,
.content-row .content .numara-badge,
.content-row-content span.numara-badge,
.content-row .content span.numara-badge,
.process-card .numara-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--badge-bg-gradient);
    border: 2px solid var(--brand-accent-secondary);
    color: var(--brand-accent-secondary);
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.08);
}

/* Başlık */
.content-row-content h3,
.content-row .content h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

/* Paragraf */
.content-row-content p,
.content-row .content p {
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Liste */
.content-row-content ul,
.content-row .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.content-row-content ul li,
.content-row .content ul li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.content-row-content ul li i,
.content-row .content ul li i {
    color: var(--brand-accent-secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Buton */
.content-row-content .cta-btn,
.content-row .content .cta-btn {
    margin-top: 1rem;
    align-self: flex-start;
    width: auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .content-row {
        grid-template-columns: 1fr;
        padding: 1.8rem;
    }

    .content-row:nth-child(even) {
        direction: ltr;
    }

    .content-row:nth-child(even) .content-row-media,
    .content-row:nth-child(even) figure {
        order: -1;
    }

    .content-row-media img,
    .content-row figure img {
        min-height: 200px;
    }
}

@media (max-width: 575.98px) {
    .content-row {
        padding: 1.5rem;
    }
}

/* ============================================
   CTA BUTON KOMPONENTİ
   Call-to-Action butonu için jenerik stil
   Kullanım: egitim-link-btn, btn-detay vb. yerine
   ============================================ */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--brand-red);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto;
    align-self: flex-start;
}

.cta-btn:hover {
    background: #7d1519;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(145, 25, 37, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 575.98px) {
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* ============================================
   TIMELINE KOMPONENTİ
   Alternatif yerleşimli süreç/timeline yapısı
   Kullanım: process-timeline, process-timeline-scholarship, application-timeline vb.
   ============================================ */

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: auto;
    width: 3px;
    height: calc(100% - 72px);
    background: linear-gradient(180deg, var(--brand-primary), rgba(145, 25, 37, 0.3));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternatif yerleşim: tek sayılar sağda, çift sayılar solda */
.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
    text-align: left;
}

/* Numaralandırma badge - ortak değişkenler kullanıyor */
.timeline-number,
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--badge-bg-gradient);
    border: 2px solid var(--brand-accent-secondary);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--badge-text-color);
    font-size: 1.6rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.08);
}

/* İçerik */
.timeline-content {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    text-align: inherit;
}

.timeline-content p {
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .timeline::before {
        left: 1.5rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 4rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-number,
    .timeline-dot {
        left: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Eğitim hero özel stilleri kaldırıldı - background inline tanımlanıyor */

/* ============================================
   NEDEN BİZ SAYFASI - GENEL YAPISAL STİLLER
   ============================================ */

/* Neden Biz Tabs */
.neden-biz-tabs {
    color: #f8fafc;
    border-radius: clamp(1.5rem, 4vw, 2.75rem);
    padding: clamp(2rem, 5vw, 3.5rem);
    margin-top: clamp(4rem, 8vw, 6rem);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.neden-biz-tabs::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.neden-biz-tabs-header {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.neden-biz-tabs-header span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand-accent-secondary);
}

.neden-biz-tabs-header h2 {
    margin: 1.5rem 0 0.75rem;
    font-size: clamp(2.35rem, 5vw, 3.5rem);
    letter-spacing: -0.01em;
    font-weight: 700;
}

.neden-biz-tabs-header p {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.8;
    font-size: 1.05rem;
}

.neden-biz-tabs-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.neden-biz-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.neden-biz-menu label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 1.25rem;
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.1);
    color: rgba(226, 232, 240, 0.7);
    font-weight: 500;
    cursor: pointer;
    transition: background 190ms ease, color 190ms ease, border-color 190ms ease, transform 190ms ease;
}

.neden-biz-menu label span.numara-badge {
    margin-bottom: 0.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.neden-biz-menu label strong {
    font-size: 1.15rem;
    font-weight: 600;
    color: inherit;
}

.neden-biz-tabs input {
    position: fixed;
    top: -100vh;
    left: -100vw;
    opacity: 0;
    pointer-events: none;
}

.neden-biz-panels {
    position: relative;
    min-height: 320px;
}

.neden-biz-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 220ms ease, transform 240ms ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem;
}

.neden-biz-panel .numara-badge {
    margin-bottom: 1rem;
}

.neden-biz-panel h3 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 2.65rem);
    letter-spacing: -0.01em;
}

.neden-biz-panel p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(226, 232, 240, 0.78);
    max-width: 60ch;
}

.neden-biz-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.neden-biz-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Why Page Intro */
.why-page-intro {
    padding: clamp(5rem, 9vw, 7rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.why-page-intro .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-page-intro-content {
    max-width: min(820px, 90%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.why-page-intro-content h2 {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.why-page-intro-content p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.85;
    color: rgba(15, 23, 42, 0.78);
    margin: 0;
}

.neden-biz-tabs {
    margin-top: -3rem;
    border-radius: clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem) clamp(2.5rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

/* Why Experience Section */
.why-experience-section {
    position: relative;
    border-radius: clamp(2rem, 5vw, 3rem);
    padding: clamp(2.6rem, 5vw, 3.6rem) clamp(1.5rem, 5vw, 3.5rem);
    margin-top: clamp(3rem, 6vw, 4.5rem);
    overflow: hidden;
}

.why-experience-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-experience-header {
    max-width: 680px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #f8fafc;
}

.why-experience-header span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-accent-secondary);
}

.why-experience-header h3 {
    margin: 1.2rem 0 0.75rem;
    font-size: clamp(2.3rem, 4vw, 3.1rem);
    letter-spacing: -0.01em;
    color: #e0f2fe;
}

.why-experience-header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(224, 242, 254, 0.78);
}

/* Strategic Flow */
.strategic-flow {
    position: relative;
    display: grid;
    gap: clamp(2.6rem, 5vw, 3.8rem);
}

.strategic-flow::before {
    content: "";
    position: absolute;
    top: clamp(0.5rem, 1vw, 1rem);
    bottom: clamp(0.5rem, 1vw, 1rem);
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.flow-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(58px, 10vw, 78px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.2rem, 3vw, 2rem);
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.flow-item.animate-in {
    opacity: 1;
}

.flow-item[data-side="left"] {
    transform: translate(-40px, 20px);
}

.flow-item[data-side="left"].animate-in {
    transform: translate(0, 0);
}

.flow-item[data-side="right"] {
    transform: translate(40px, 20px);
}

.flow-item[data-side="right"].animate-in {
    transform: translate(0, 0);
}

.flow-card {
    border-radius: 1.6rem;
    padding: clamp(1.9rem, 3.6vw, 2.5rem);
    display: grid;
    gap: 1.15rem;
    color: rgba(255, 255, 255, 0.86);
    grid-row: 1;
}

.flow-item[data-side="left"] .flow-card {
    grid-column: 1 / 2;
    justify-self: end;
}

.flow-item[data-side="right"] .flow-card {
    grid-column: 3 / 4;
    justify-self: start;
}

.flow-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.flow-card h4 {
    margin: 0;
    font-size: clamp(1.85rem, 3.2vw, 2.3rem);
    letter-spacing: -0.01em;
    color: #f0f9ff;
}

.flow-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

.flow-card p {
    margin: 0;
    line-height: 1.8;
    font-size: 1.02rem;
    color: rgba(224, 242, 254, 0.78);
}

.flow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.flow-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    font-weight: 500;
    color: rgba(224, 242, 254, 0.88);
}

.flow-list li i {
    margin-top: 0.15rem;
    color: var(--brand-accent-secondary);
}

.flow-step {
    grid-column: 2 / 3;
    grid-row: 1;
    position: relative;
    justify-self: center;
    align-self: center;
    margin-bottom: 0;
}

.flow-step.numara-badge::before,
.flow-step.numara-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
}

.flow-step.numara-badge::before {
    width: clamp(48px, 8vw, 90px);
}

.flow-step.numara-badge::after {
    width: 10px;
    height: 10px;
    background: none;
}

.flow-item[data-side="left"] .flow-step.numara-badge::before {
    right: calc(100% + 8px);
    transform: translateY(-50%);
}

.flow-item[data-side="left"] .flow-step.numara-badge::after {
    right: calc(100% + 8px);
    transform: translateY(-50%) rotate(-135deg);
}

.flow-item[data-side="right"] .flow-step.numara-badge::before {
    left: calc(100% + 8px);
    transform: translateY(-50%);
}

.flow-item[data-side="right"] .flow-step.numara-badge::after {
    left: calc(100% + 8px);
    transform: translateY(-50%) rotate(45deg);
}

/* Why Stats Section */
.why-stats-section {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    border-radius: 2rem;
    padding: clamp(2.25rem, 5vw, 3.5rem);
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.why-stat-card {
    border-radius: 1.4rem;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-stat-card .why-stat-number {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-accent-secondary);
}

.why-stat-card .why-stat-label {
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.6);
}

.why-stat-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.74);
}

/* Why Intro Highlight */
.why-intro-highlight {
    margin: clamp(3rem, 6vw, 4rem) 0;
}

.why-intro-highlight-inner {
    position: relative;
    margin: 0 auto;
    max-width: 880px;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    border-radius: clamp(1.75rem, 4vw, 2.5rem);
    color: #f8fafc;
    text-align: center;
    overflow: hidden;
}

.why-intro-highlight-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-intro-highlight-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(148, 163, 184, 0.2);
    mix-blend-mode: screen;
}

.why-intro-highlight-inner p {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.9;
    color: rgba(226, 232, 240, 0.86);
}

/* Responsive */
@media (max-width: 992px) {
    .neden-biz-tabs-content {
        grid-template-columns: 1fr;
    }

    .neden-biz-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.75rem;
    }

    .neden-biz-menu label {
        min-width: 220px;
    }

    .neden-biz-panels {
        min-height: auto;
        padding-top: 1rem;
    }

    .neden-biz-panel {
        position: relative;
    }

    .strategic-flow {
        gap: clamp(1.8rem, 4vw, 2.4rem);
    }

    .strategic-flow::before {
        display: none;
    }

    .flow-item {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .flow-card {
        grid-column: 1 !important;
    }

    .flow-step {
        grid-column: 1;
        justify-self: flex-start;
    }

    .flow-step::before,
    .flow-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-experience-card {
        padding: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .neden-biz-panel,
    .neden-biz-menu label {
        transition: none;
    }
}
