@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ══════════════════════════════════════════════
   BÖLÜM
══════════════════════════════════════════════ */
.ya3-section {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    background-color: #030d1e;
    font-family: 'Inter', system-ui, sans-serif;
    color: #ffffff;
}

.ya3-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.65;
}

.ya3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(3,13,30,0.78) 0%,
        rgba(0,40,100,0.60) 50%,
        rgba(3,13,30,0.72) 100%
    );
    z-index: 1;
}

.ya3-grid-texture {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,156,228,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,156,228,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 2;
    pointer-events: none;
}

.ya3-glow {
    position: absolute;
    bottom: -120px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,156,228,0.14) 0%, transparent 65%);
    z-index: 2;
    pointer-events: none;
}

.ya3-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.ya3-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    align-items: stretch;
}

/* ══════════════════════════════════════════════
   STAT KARTI
══════════════════════════════════════════════ */
.ya3-stat-card {
    position: relative;
    background: rgba(4,18,48,0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(0,156,228,0.20);
    border-radius: 20px;
    padding: 52px 44px 44px;
    box-shadow:
        0 24px 64px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(0,156,228,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.ya3-stat-card::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 4px;
    background: linear-gradient(to bottom, #4db8f0 0%, #0047b3 100%);
    border-radius: 0 2px 2px 0;
}

.ya3-stat-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at top right, rgba(0,156,228,0.10) 0%, transparent 65%);
    border-radius: 0 20px 0 0;
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   ROZET
══════════════════════════════════════════════ */
.ya3-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 30px;
}
.ya3-badge-dot {
    width: 7px; height: 7px;
    background: #009ce4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,156,228,0.90);
    flex-shrink: 0;
    animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 8px rgba(0,156,228,0.80); }
    50%      { box-shadow: 0 0 16px rgba(0,156,228,1.00), 0 0 30px rgba(0,156,228,0.40); }
}

/* ══════════════════════════════════════════════
   16 YIL — PREMİUM ANİMASYONLU HERO
══════════════════════════════════════════════ */
.ya3-year-hero {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 26px;
    line-height: 1;
    position: relative;
}

/* Parlayan halka arka planı */
.ya3-year-num-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Dönen çerçeve */
.ya3-year-ring {
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

/* SVG ring animasyonu için */
.ya3-ring-svg {
    position: absolute;
    inset: -14px;
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    pointer-events: none;
    z-index: 0;
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ya3-ring-svg circle {
    fill: none;
    stroke-width: 1.5;
    stroke-dasharray: 40 200;
    stroke-linecap: round;
}

/* Sayı */
.ya3-year-num {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 10rem;
    font-weight: 400;
    line-height: 0.88;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;

    /* Parıltı efekti */
    animation: numGlow 3s ease-in-out infinite;
}

@keyframes numGlow {
    0%,100% {
        text-shadow:
            0 0 40px rgba(0,156,228,0.25),
            0 0 80px rgba(0,156,228,0.10);
    }
    50% {
        text-shadow:
            0 0 60px rgba(0,156,228,0.55),
            0 0 120px rgba(0,156,228,0.25),
            0 2px 0 rgba(0,156,228,0.20);
    }
}

/* Sayaç animasyonu — JS ile tetiklenir */
.ya3-year-num.ya3-counting {
    animation: numGlow 3s ease-in-out infinite, numCount 0.05s steps(1) 0s;
}

/* Altın/mavi gradyan kontur */
.ya3-year-num-gradient {
    position: absolute;
    inset: 0;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 10rem;
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4db8f0 0%, #009ce4 50%, #0052b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.ya3-year-num-wrap:hover .ya3-year-num-gradient {
    opacity: 1;
}

/* Yıl tarafı */
.ya3-year-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.ya3-year-label {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 4px;
    position: relative;

    /* Animasyonlu degrade renk */
    background: linear-gradient(90deg, #4db8f0, #009ce4, #4db8f0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: labelShine 4s linear infinite;
}

@keyframes labelShine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.ya3-year-sublabel {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #3a5a80;
    text-transform: uppercase;
}

/* Sayaç aktif hali */
.ya3-year-num[data-counting="true"] {
    color: #009ce4;
    transition: color 0.1s;
}

/* ══════════════════════════════════════════════
   PARTICLE NOKTALARI (dekoratif)
══════════════════════════════════════════════ */
.ya3-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
    overflow: hidden;
}

.ya3-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: #009ce4;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--dur, 4s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    20%  { opacity: 0.6; transform: translateY(-20px) scale(1); }
    80%  { opacity: 0.3; transform: translateY(-60px) scale(0.8); }
    100% { opacity: 0; transform: translateY(-100px) scale(0); }
}

/* ══════════════════════════════════════════════
   PROGRESS ÇIZGISI
══════════════════════════════════════════════ */
.ya3-progress-wrap {
    position: relative;
    margin-bottom: 10px;
}

.ya3-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3a5a80;
    margin-bottom: 6px;
}

.ya3-progress-bar {
    height: 2px;
    background: rgba(0,156,228,0.12);
    border-radius: 2px;
    overflow: hidden;
}

.ya3-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #009ce4, #4db8f0);
    border-radius: 2px;
    transition: width 1.8s cubic-bezier(0.2,0.8,0.2,1) 0.3s;
    position: relative;
}

.ya3-progress-fill::after {
    content: '';
    position: absolute;
    right: 0; top: -2px;
    width: 6px; height: 6px;
    background: #4db8f0;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,156,228,0.80);
}

.ya3-stat-card.ya3-active .ya3-progress-fill {
    width: 88%;
}

/* ══════════════════════════════════════════════
   ÇIZGI
══════════════════════════════════════════════ */
.ya3-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg,
        rgba(0,156,228,0.50) 0%,
        rgba(0,71,179,0.40) 60%,
        transparent 100%
    );
    margin-bottom: 26px;
    margin-top: 16px;
}

.ya3-card-desc {
    font-size: 0.97rem;
    line-height: 1.70;
    color: #7a92b0;
    margin-bottom: 34px;
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   MİNİ İSTATİSTİKLER
══════════════════════════════════════════════ */
.ya3-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,156,228,0.10);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,156,228,0.15);
}

.ya3-mini-stat {
    background: rgba(4,18,48,0.70);
    padding: 18px 12px;
    text-align: center;
    transition: background 0.25s ease;
}
.ya3-mini-stat:hover { background: rgba(0,156,228,0.12); }

.ya3-ms-num {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 5px;
    /* Sayaç animasyonu için */
    transition: color 0.1s;
}
.ya3-ms-num span { color: #009ce4; font-size: 1.4rem; }
.ya3-ms-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #3a5a80;
    text-transform: uppercase;
    line-height: 1.35;
}

/* ══════════════════════════════════════════════
   SAĞ: İÇERİK
══════════════════════════════════════════════ */
.ya3-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.ya3-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4db8f0;
    margin-bottom: 22px;
}
.ya3-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #4db8f0;
    border-radius: 1px;
}

.ya3-heading {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 26px;
}
.ya3-heading .ya3-accent { color: #009ce4; }

.ya3-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #7a92b0;
    margin-bottom: 38px;
    max-width: 540px;
}
.ya3-body strong { color: #cbd5e1; font-weight: 700; }

.ya3-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 42px;
}

.ya3-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(4,18,48,0.50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0,156,228,0.12);
    border-left: 3px solid rgba(0,156,228,0.45);
    border-radius: 12px;
    transition: border-left-color 0.25s, background 0.25s;
    cursor: default;
}
.ya3-feature:hover {
    border-left-color: #009ce4;
    background: rgba(0,156,228,0.08);
}

.ya3-feat-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0,156,228,0.12);
    border: 1px solid rgba(0,156,228,0.28);
    display: flex; align-items: center; justify-content: center;
    color: #009ce4;
    transition: background 0.25s;
}
.ya3-feature:hover .ya3-feat-icon { background: rgba(0,156,228,0.22); }
.ya3-feat-icon svg { width: 20px; height: 20px; }

.ya3-feat-title {
    font-size: 1rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 3px;
}
.ya3-feat-desc {
    font-size: 0.875rem;
    color: #4a6080;
    line-height: 1.45;
    font-weight: 500;
}

/* Buton */
.ya3-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #009ce4 0%, #0052b3 100%);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 17px 34px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
    box-shadow: 0 12px 28px rgba(0,82,179,0.40);
    align-self: flex-start;
}
.ya3-cta svg { width: 17px; height: 17px; transition: transform 0.3s ease; }
.ya3-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,82,179,0.55);
    background: linear-gradient(135deg, #22b0f0 0%, #0047b3 100%);
}
.ya3-cta:hover svg { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   REVEAL ANİMASYONLARI
══════════════════════════════════════════════ */
.ya3-reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.85s cubic-bezier(0.2,0.8,0.2,1), transform 0.85s cubic-bezier(0.2,0.8,0.2,1);
}
.ya3-reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.85s cubic-bezier(0.2,0.8,0.2,1), transform 0.85s cubic-bezier(0.2,0.8,0.2,1);
    transition-delay: 0.12s;
}
.ya3-reveal-left.ya3-active,
.ya3-reveal-right.ya3-active { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════
   MOBİL UYUM
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ya3-grid { grid-template-columns: 1fr; gap: 36px; }
    .ya3-stat-card { padding: 40px 36px 36px; }
    .ya3-year-num { font-size: 8rem; }
    .ya3-year-num-gradient { font-size: 8rem; }
}

@media (max-width: 768px) {
    .ya3-section { padding: 80px 0 90px; }
    .ya3-container { padding: 0 22px; }
    .ya3-grid { gap: 28px; }
    .ya3-stat-card { padding: 34px 28px 30px; text-align: center; }
    .ya3-badge { justify-content: center; }
    .ya3-year-hero { justify-content: center; }
    .ya3-year-num { font-size: 7rem; }
    .ya3-year-num-gradient { font-size: 7rem; }
    .ya3-year-label { font-size: 2rem; }
    .ya3-heading { font-size: 2.5rem; }
    .ya3-body { font-size: 1rem; }
    .ya3-reveal-left, .ya3-reveal-right {
        transform: translateY(24px);
        transition-delay: 0s;
    }
    .ya3-reveal-left.ya3-active,
    .ya3-reveal-right.ya3-active { transform: translateY(0); }
}

@media (max-width: 480px) {
    .ya3-year-num { font-size: 5.8rem; }
    .ya3-year-num-gradient { font-size: 5.8rem; }
    .ya3-year-label { font-size: 1.7rem; }
    .ya3-year-side { padding-bottom: 6px; }
    .ya3-heading { font-size: 2.1rem; letter-spacing: -0.8px; }
    .ya3-ms-label { font-size: 8px; letter-spacing: 0.5px; }
    .ya3-cta { width: 100%; justify-content: center; font-size: 12px; padding: 16px 24px; }
    .ya3-feature { padding: 14px 16px; gap: 14px; }
    .ya3-feat-icon { width: 38px; height: 38px; }
    .ya3-stat-card { padding: 30px 20px; }
}