/* ═══════════════════════════════════════════
   WHY SECTION — Neden Reyhan / Neden Biz
   Reyhan Yemek tasarımı
══════════════════════════════════════════ */
:root {
    --primary-deepest: #0d3d16;
}

/* Main section */
.why-section {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(170deg, var(--primary-darker) 0%, #0f4a1c 40%, var(--primary-deepest) 100%);
    overflow: hidden;
    color: var(--white);
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(130, 203, 48, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(44, 148, 64, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.why-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.why-orb--1 {
    width: 500px; height: 500px;
    top: -150px; left: -100px;
    background: radial-gradient(circle, rgba(130, 203, 48, 0.07) 0%, transparent 65%);
    animation: orbDrift 20s ease-in-out infinite;
}

.why-orb--2 {
    width: 350px; height: 350px;
    bottom: -100px; right: -50px;
    background: radial-gradient(circle, rgba(44, 148, 64, 0.1) 0%, transparent 65%);
    animation: orbDrift 16s ease-in-out infinite reverse;
}

.why-orb--3 {
    width: 200px; height: 200px;
    top: 40%; right: 20%;
    background: radial-gradient(circle, rgba(163, 224, 85, 0.06) 0%, transparent 65%);
    animation: orbDrift 12s ease-in-out infinite 3s;
}

.why-accent-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
    opacity: 0.4;
    z-index: 5;
}

.why-inner {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-section .section-label {
    color: var(--accent);
}

.why-section .section-label .line {
    background: var(--accent);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-title .highlight {
    color: var(--accent);
}

.why-section .section-desc {
    color: rgba(255, 255, 255, 0.55);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.why-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-text-header .section-header {
    text-align: left;
    margin: 0 0 40px;
    max-width: none;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-reason {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.why-reason::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-reason:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(130, 203, 48, 0.2);
    transform: translateX(6px);
}

.why-reason:hover::before { opacity: 1; }

.why-reason-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(130, 203, 48, 0.15) 0%, rgba(44, 148, 64, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.why-reason:hover .why-reason-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(130, 203, 48, 0.25);
}

.why-reason-icon svg {
    width: 22px; height: 22px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.why-reason:hover .why-reason-icon svg { color: var(--white); }

.why-reason-text { flex: 1; }

.why-reason-title {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.35;
}

.why-reason-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.why-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-visual-main {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.why-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
}

.why-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, rgba(44, 148, 64, 0.12) 0%, rgba(130, 203, 48, 0.06) 100%);
}

.why-image-placeholder svg {
    width: 48px; height: 48px;
    color: rgba(255,255,255,0.15);
}

.why-image-placeholder span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-exp-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 6px rgba(13, 61, 22, 0.5);
    z-index: 5;
    text-align: center;
    animation: floatBadge 4s ease-in-out infinite;
}

.why-exp-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.why-exp-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.why-corner-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px; height: 80px;
    border: 2px solid rgba(130, 203, 48, 0.2);
    border-radius: 16px;
    pointer-events: none;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.why-stat {
    text-align: center;
    padding: 36px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.why-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%; right: 0;
    width: 1px; height: 60%;
    background: rgba(255, 255, 255, 0.06);
}

.why-stat:hover {
    background: rgba(255, 255, 255, 0.04);
}

.why-stat-value {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 6px;
}

.why-stat-value .accent { color: var(--accent); }

.why-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.why-section .reveal-left,
.why-section .reveal-right,
.why-section .reveal { opacity: 1; }

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.97); }
    75% { transform: translate(15px, 15px) scale(1.03); }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
    .why-section { padding: 80px 0 100px; }
    .why-inner { padding: 0 32px; }
    .why-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .why-text-header .section-header { text-align: center; }
    .why-visual-col {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .why-exp-badge {
        bottom: -20px;
        left: -16px;
        padding: 20px 28px;
    }
    .why-exp-number { font-size: 40px; }
    .why-stats { grid-template-columns: repeat(2, 1fr); }
    .why-stat:nth-child(2)::after { display: none; }
    .why-stat:nth-child(1)::after,
    .why-stat:nth-child(3)::after {
        top: 20%; height: 60%;
    }
    .why-stat:nth-child(1),
    .why-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
}

@media (max-width: 640px) {
    .why-section { padding: 64px 0 80px; }
    .why-inner { padding: 0 20px; }
    .why-layout { gap: 36px; margin-bottom: 48px; }
    .why-reasons { gap: 14px; }
    .why-reason {
        padding: 18px 20px;
        gap: 14px;
        border-radius: 14px;
    }
    .why-reason-icon {
        width: 42px; height: 42px;
        border-radius: 12px;
    }
    .why-reason-icon svg { width: 20px; height: 20px; }
    .why-reason-title { font-size: 15px; }
    .why-reason-desc { font-size: 13px; }
    .why-visual-main { max-width: 100%; }
    .why-exp-badge {
        bottom: -16px; left: -8px;
        padding: 16px 24px;
        border-radius: 14px;
    }
    .why-exp-number { font-size: 32px; }
    .why-exp-label { font-size: 10.5px; }
    .why-corner-accent { display: none; }
    .why-stats { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
    .why-stat { padding: 24px 16px; }
    .why-stat-label { font-size: 12px; }
}
