/* ============================================
   LANDING PAGE (giris.php)
   — Self-contained, diğer CSS'e bağımlı değil
   ============================================ */

* { scroll-behavior: smooth; }

.mp-landing {
    background: #fff;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
}
.mp-landing a { text-decoration: none; }

/* -------- NAV -------- */
.mp-landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    z-index: 50;
    transition: all .3s ease;
    background: rgba(255,255,255,0);
}
.mp-landing-nav.scrolled {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 20px rgba(0,0,0,.05);
    padding: 10px 40px;
}

.mp-landing-logo {
    display: inline-flex;
    align-items: center;
}
.mp-landing-logo-img {
    height: 40px;
    width: auto;
    display: block;
}
.mp-landing-nav.scrolled .mp-landing-logo-img {
    height: 34px;
}

.mp-landing-nav-orta {
    display: flex;
    gap: 30px;
}
.mp-landing-nav-orta a {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: color .15s;
}
.mp-landing-nav-orta a:hover { color: #6366F1; }

.mp-landing-nav-sag {
    display: flex;
    gap: 10px;
    align-items: center;
}
.mp-landing-nav-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(15,23,42,.1);
    color: #334155;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all .15s;
    backdrop-filter: blur(8px);
}
.mp-landing-nav-btn-outline:hover {
    background: #fff;
    border-color: #6366F1;
    color: #6366F1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -4px rgba(99,102,241,0.2);
}
.mp-landing-nav-btn-outline svg {
    opacity: .7;
}

.mp-landing-nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: #0F172A;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all .15s;
}
.mp-landing-nav-btn:hover {
    background: #6366F1;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -4px rgba(99,102,241,.5);
}

/* -------- HERO -------- */
.mp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}

.mp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.mp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
}
.mp-hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #2EE59D 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: mp-float 20s ease-in-out infinite;
}
.mp-hero-orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #6366F1 0%, transparent 70%);
    bottom: -200px; right: -200px;
    animation: mp-float 25s ease-in-out infinite reverse;
}
.mp-hero-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #A855F7 0%, transparent 70%);
    top: 40%; right: 20%;
    opacity: .3;
    animation: mp-float 30s ease-in-out infinite;
}
@keyframes mp-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(.95); }
}
.mp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.mp-hero-icerik {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

.mp-hero-rozet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(46,229,157,.12);
    border: 1px solid rgba(46,229,157,.3);
    color: #065F46;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
}
.mp-hero-nokta {
    width: 8px; height: 8px;
    background: #2EE59D;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(46,229,157,.3);
    animation: mp-hero-nabiz 2s ease-in-out infinite;
}
@keyframes mp-hero-nabiz {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46,229,157,.3); }
    50% { box-shadow: 0 0 0 6px rgba(46,229,157,.1); }
}

.mp-hero-baslik {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.mp-hero-vurgu {
    background: linear-gradient(135deg, #6366F1 0%, #2EE59D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mp-hero-aciklama {
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 36px;
    max-width: 540px;
}

.mp-hero-istatistikler {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(15,23,42,.08);
}
.mp-hero-istatistik-deger {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366F1, #2EE59D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mp-hero-istatistik-etiket {
    font-size: 13px;
    color: #64748B;
    margin-top: 2px;
    font-weight: 500;
}

/* HERO sağ - Giriş kart (SELF-CONTAINED stiller) */
.mp-hero-sag {
    justify-self: center;
    width: 100%;
    max-width: 440px;
}
.mp-giris-kart {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.9);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 25px 60px -15px rgba(15,23,42,.18);
}
.mp-giris-kart-ust {
    text-align: center;
    margin-bottom: 26px;
}
.mp-giris-kart-ust h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.mp-giris-kart-ust p {
    color: #64748B;
    font-size: 14px;
    margin: 0;
}

/* Giriş formu — KENDİ stilleri */
.mp-giris-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mp-giris-form-grup label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.mp-input-kutu {
    position: relative;
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    transition: all .15s;
}
.mp-input-kutu:focus-within {
    border-color: #6366F1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99,102,241,.1);
}
.mp-input-kutu svg {
    color: #94A3B8;
    margin-left: 14px;
    flex-shrink: 0;
}
.mp-input-kutu:focus-within svg { color: #6366F1; }
.mp-input-kutu input {
    border: none;
    background: transparent;
    padding: 12px 14px 12px 10px;
    font-size: 15px;
    font-family: inherit;
    color: #0F172A;
    width: 100%;
    outline: none;
}
.mp-input-kutu input::placeholder { color: #94A3B8; }

.mp-giris-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #2EE59D, #22C479);
    color: #0B3F2B;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .15s;
    font-family: inherit;
    box-shadow: 0 4px 14px -2px rgba(46,229,157,.45);
    margin-top: 4px;
}
.mp-giris-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -4px rgba(46,229,157,.5);
}
.mp-giris-btn:active { transform: translateY(0); }

.mp-giris-alt-metin {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: #64748B;
}
.mp-giris-alt-metin a {
    color: #6366F1;
    font-weight: 600;
}
.mp-giris-alt-metin a:hover { text-decoration: underline; }

/* Uyarı — landing içinde */
.mp-landing .mp-uyari {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    border-left: 4px solid;
}
.mp-landing .mp-uyari-hata {
    background: #FEF2F2;
    color: #991B1B;
    border-color: #EF4444;
}

/* Scroll göstergesi */
.mp-scroll-gosterge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    z-index: 2;
}
.mp-scroll-gosterge:hover { color: #6366F1; }
.mp-scroll-ok {
    width: 38px; height: 38px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mp-zipla 2s ease-in-out infinite;
}
@keyframes mp-zipla {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* -------- BÖLÜMLER -------- */
.mp-bolum {
    padding: 100px 40px;
    background: #fff;
}
.mp-bolum-alt { background: #F8FAFC; }
.mp-bolum-icerik { max-width: 1240px; margin: 0 auto; }
.mp-bolum-baslik-kutu {
    text-align: center;
    margin-bottom: 60px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.mp-bolum-etiket {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99,102,241,.1);
    color: #6366F1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}
.mp-bolum-baslik {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}
.mp-bolum-altyazi {
    font-size: 17px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* -------- VIDEO -------- */
.mp-video-kutu {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(15,23,42,.25);
}
.mp-video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.mp-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(99,102,241,.3), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(46,229,157,.2), transparent 50%);
}
.mp-video-oynat {
    width: 80px; height: 80px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.3);
    position: relative;
    z-index: 1;
    transition: all .2s;
    cursor: pointer;
}
.mp-video-oynat:hover {
    background: rgba(255,255,255,.25);
    transform: scale(1.08);
}
.mp-placeholder-etiket {
    color: rgba(255,255,255,.9);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.04em;
}
.mp-placeholder-etiket small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

/* -------- ÖZELLİK GRİD -------- */
.mp-ozellik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mp-ozellik-kart {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    transition: all .2s;
}
.mp-ozellik-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(15,23,42,.1);
    border-color: #6366F1;
}
.mp-ozellik-ikon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.mp-ozellik-ikon-mint { background: linear-gradient(135deg, #2EE59D, #22C479); color: #fff; }
.mp-ozellik-ikon-indigo { background: linear-gradient(135deg, #6366F1, #4F46E5); color: #fff; }
.mp-ozellik-ikon-ocean { background: linear-gradient(135deg, #06B6D4, #0891B2); color: #fff; }
.mp-ozellik-ikon-purple { background: linear-gradient(135deg, #A855F7, #7C3AED); color: #fff; }
.mp-ozellik-ikon-pink { background: linear-gradient(135deg, #EC4899, #DB2777); color: #fff; }
.mp-ozellik-ikon-amber { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }

.mp-ozellik-kart h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 8px;
}
.mp-ozellik-kart p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 16px;
}

/* Görsel placeholder'lar */
.mp-gorsel-placeholder {
    aspect-ratio: 16 / 10;
    background: repeating-linear-gradient(45deg, #F1F5F9, #F1F5F9 10px, #F8FAFC 10px, #F8FAFC 20px);
    border: 2px dashed #CBD5E1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
    gap: 4px;
}
.mp-gorsel-placeholder small {
    font-size: 11px;
    font-weight: 400;
    color: #CBD5E1;
}
.mp-gorsel-placeholder-sm { font-size: 11px; aspect-ratio: 16 / 9; }
.mp-gorsel-placeholder-lg { aspect-ratio: 16 / 10; font-size: 15px; }

/* -------- PREVIEW GRID -------- */
.mp-preview-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}
.mp-preview-buyuk {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
}
.mp-preview-buyuk .mp-gorsel-placeholder {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #E2E8F0;
    aspect-ratio: 16 / 9;
}
.mp-preview-metin {
    padding: 22px 26px;
}
.mp-preview-metin h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}
.mp-preview-metin p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}
.mp-preview-kucuk-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mp-preview-kucuk {
    flex: 1;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.mp-preview-kucuk .mp-gorsel-placeholder {
    border: none;
    border-radius: 0;
    flex: 1;
    min-height: 160px;
}
.mp-preview-metin-alt {
    padding: 16px 20px;
    border-top: 1px solid #E2E8F0;
}
.mp-preview-metin-alt h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}
.mp-preview-metin-alt p {
    font-size: 12px;
    color: #64748B;
    margin: 2px 0 0;
}

/* -------- CTA -------- */
.mp-cta-bolum {
    padding: 90px 40px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 50%, #2EE59D 120%);
    position: relative;
    overflow: hidden;
}
.mp-cta-bolum::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.1), transparent 40%);
}
.mp-cta-icerik {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    color: #fff;
}
.mp-cta-icerik h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.mp-cta-icerik p {
    font-size: 17px;
    opacity: .9;
    margin: 0 0 30px;
}
.mp-cta-bolum .mp-btn-mint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #6366F1;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all .2s;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,.3);
}
.mp-cta-bolum .mp-btn-mint:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -8px rgba(0,0,0,.4);
}

/* -------- FOOTER -------- */
.mp-landing-footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 60px 40px 20px;
}
.mp-landing-footer-icerik {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mp-landing-footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.mp-landing-footer-aciklama {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin: 0;
}
.mp-landing-footer-sutunlar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.mp-landing-footer-sutunlar h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
}
.mp-landing-footer-sutunlar a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    font-size: 14px;
    padding: 6px 0;
    transition: color .15s;
}
.mp-landing-footer-sutunlar a:hover { color: #2EE59D; }
.mp-landing-footer-sutunlar a svg { color: #64748B; flex-shrink: 0; }
.mp-landing-footer-sutunlar a:hover svg { color: #2EE59D; }

.mp-landing-footer-alt {
    max-width: 1240px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 13px;
    color: #64748B;
}

/* -------- ANİMASYONLAR -------- */
.mp-anim-hazir {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.22, 1, .36, 1);
}
.mp-goster {
    opacity: 1;
    transform: translateY(0);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1100px) {
    .mp-landing-nav-orta { display: none; }
    .mp-landing-nav-btn-outline span, .mp-landing-nav-btn-outline { font-size: 12px; padding: 8px 12px; }
}
@media (max-width: 900px) {
    .mp-landing-nav { padding: 14px 20px; }
    .mp-landing-nav.scrolled { padding: 10px 20px; }
    .mp-hero { padding: 120px 20px 60px; }
    .mp-hero-icerik { grid-template-columns: 1fr; gap: 40px; }
    .mp-hero-baslik { font-size: 36px; }
    .mp-bolum { padding: 70px 20px; }
    .mp-bolum-baslik { font-size: 30px; }
    .mp-ozellik-grid { grid-template-columns: repeat(2, 1fr); }
    .mp-preview-grid { grid-template-columns: 1fr; }
    .mp-landing-footer { padding: 50px 20px 20px; }
    .mp-landing-footer-icerik { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
    .mp-landing-nav-sag { gap: 6px; }
    .mp-landing-nav-btn-outline { display: none; }
    .mp-landing-logo-img { height: 32px; }
    .mp-hero-baslik { font-size: 28px; }
    .mp-hero-aciklama { font-size: 15px; }
    .mp-hero-istatistikler { gap: 20px; flex-wrap: wrap; }
    .mp-hero-istatistik-deger { font-size: 22px; }
    .mp-bolum-baslik { font-size: 26px; }
    .mp-ozellik-grid { grid-template-columns: 1fr; }
    .mp-giris-kart { padding: 26px 22px; }
    .mp-cta-icerik h2 { font-size: 28px; }
    .mp-landing-footer-sutunlar { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   YENİ ÖZELLİK KARTLARI — ANİMASYONLU GÖRSELLER
   ============================================ */

/* Ana görsel alanı - kart üstünde */
.mp-ozellik-gorsel {
    height: 130px;
    margin: -28px -28px 20px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(99,102,241,0.08);
}
.mp-ozellik-gorsel > svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 1) RAPOR GRAFİĞİ */
.mp-gorsel-rapor {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
}
.mp-gorsel-rapor .mp-gorsel-cizgi {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: mp-cizgi-ciz 2.5s ease-out forwards;
    animation-delay: .3s;
}
.mp-gorsel-rapor .mp-gorsel-nokta {
    opacity: 0;
    animation: mp-nokta-gel .4s ease-out forwards;
}
.mp-gorsel-rapor .mp-gorsel-nokta:nth-child(3) { animation-delay: 1.5s; }
.mp-gorsel-rapor .mp-gorsel-nokta:nth-child(4) { animation-delay: 1.9s; }
.mp-gorsel-rapor .mp-gorsel-nokta:nth-child(5) { animation-delay: 2.3s; }
@keyframes mp-cizgi-ciz {
    to { stroke-dashoffset: 0; }
}
@keyframes mp-nokta-gel {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

/* 2) MİNİ TIMELINE */
.mp-gorsel-timeline {
    background: linear-gradient(135deg, #EEF2FF 0%, #F3F0FF 100%);
}
.mp-mini-timeline {
    display: flex;
    align-items: center;
    padding: 0 22px;
    width: 100%;
}
.mp-mini-adim {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}
.mp-mini-adim.mp-mini-tamam {
    background: #2EE59D;
    border-color: #2EE59D;
}
.mp-mini-adim.mp-mini-islemde {
    background: #F59E0B;
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px rgba(245,158,11,.25);
    animation: mp-islemde-ring 2s ease-in-out infinite;
}
@keyframes mp-islemde-ring {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245,158,11,.25); }
    50% { box-shadow: 0 0 0 8px rgba(245,158,11,.1); }
}
.mp-mini-nabiz {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: mp-nabiz-ic 1.4s ease-in-out infinite;
}
@keyframes mp-nabiz-ic {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .6; }
}
.mp-mini-cizgi {
    flex: 1;
    height: 3px;
    background: #CBD5E1;
    border-radius: 2px;
}
.mp-mini-cizgi.mp-mini-cizgi-tamam { background: #2EE59D; }

/* 3) DOSYA LİSTESİ */
.mp-gorsel-dosya {
    background: linear-gradient(135deg, #ECFEFF 0%, #F0F9FF 100%);
    padding: 14px 20px;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
}
.mp-mini-dosya {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    width: 100%;
    opacity: 0;
    transform: translateX(-10px);
    animation: mp-dosya-gel .5s ease-out forwards;
    animation-delay: var(--gecikme, 0s);
}
@keyframes mp-dosya-gel {
    to { opacity: 1; transform: translateX(0); }
}
.mp-mini-dosya > span {
    font-size: 16px;
    flex-shrink: 0;
}
.mp-mini-dosya > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.mp-mini-dosya-ad {
    height: 6px;
    background: #0F172A;
    opacity: .15;
    border-radius: 3px;
    width: 80%;
}
.mp-mini-dosya-alt {
    height: 4px;
    background: #0F172A;
    opacity: .08;
    border-radius: 2px;
    width: 50%;
}

/* 4) BİLDİRİM — TİTREYEN ZİL */
.mp-gorsel-bildirim {
    background: linear-gradient(135deg, #FAF5FF 0%, #F5F3FF 100%);
}
.mp-mini-zil {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
}
.mp-mini-zil > svg {
    animation: mp-zil-salla 2s ease-in-out infinite;
    transform-origin: top center;
}
@keyframes mp-zil-salla {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-12deg); }
    20%, 40% { transform: rotate(12deg); }
    50% { transform: rotate(0); }
}
.mp-mini-nokta-bildirim {
    position: absolute;
    top: 4px; right: 6px;
    width: 10px; height: 10px;
    background: #EF4444;
    border-radius: 50%;
    border: 2px solid #FAF5FF;
    animation: mp-bildirim-nabiz 1.8s ease-in-out infinite;
}
@keyframes mp-bildirim-nabiz {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
    50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.mp-dalga {
    position: absolute;
    top: 50%; left: 50%;
    width: 70px; height: 70px;
    border: 2px solid #A855F7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: mp-dalga-yay 3s ease-out infinite;
}
.mp-dalga-2 { animation-delay: 1s; }
.mp-dalga-3 { animation-delay: 2s; }
@keyframes mp-dalga-yay {
    0% { opacity: .6; transform: translate(-50%, -50%) scale(.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); }
}

/* 5) BAR GRAFİK — DÖNEM KARŞILAŞTIRMA */
.mp-gorsel-karsilastir {
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
    align-items: flex-end;
    padding-bottom: 18px;
}
.mp-mini-bar-grup {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 90px;
    padding: 0 30px;
    width: 100%;
}
.mp-mini-bar {
    flex: 1;
    height: var(--yukseklik, 50%);
    background: linear-gradient(180deg, #EC4899, #F472B6);
    border-radius: 4px 4px 0 0;
    opacity: .4;
    transform-origin: bottom;
    transform: scaleY(0);
    animation: mp-bar-yukseliv .6s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: var(--gecikme, 0s);
}
.mp-mini-bar.mp-mini-bar-vurgu {
    opacity: 1;
    background: linear-gradient(180deg, #DB2777, #EC4899);
    box-shadow: 0 2px 8px rgba(219,39,119,.3);
}
@keyframes mp-bar-yukseliv {
    to { transform: scaleY(1); }
}

/* 6) GÜVENLİK KİLİT */
.mp-gorsel-guvenlik {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
}
.mp-mini-kilit {
    position: relative;
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mp-mini-kilit .mp-kilit-kol {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: mp-kilit-kapan 1.5s ease-out forwards;
    animation-delay: .3s;
}
@keyframes mp-kilit-kapan {
    to { stroke-dashoffset: 0; }
}
.mp-kilit-ring {
    position: absolute;
    inset: -14px;
    border: 2px solid #F59E0B;
    border-radius: 50%;
    opacity: 0;
    animation: mp-kilit-ring-gel 3s ease-in-out infinite;
    animation-delay: 1.5s;
}
@keyframes mp-kilit-ring-gel {
    0%, 100% { opacity: 0; transform: scale(.85); }
    50% { opacity: .5; transform: scale(1); }
}

/* Eski placeholder'ları artık kullanmıyoruz — inline'daki bağımlılıkları kır */
.mp-ozellik-kart .mp-gorsel-placeholder { display: none; }

/* ============================================
   MOBİL SCROLL GÖSTERGESİ FIX
   ============================================ */
@media (max-width: 900px) {
    .mp-scroll-gosterge { display: none; }
}

/* ============================================
   FOOTER LOGO FIX — beyaz arkaplan kutucuğu
   ============================================ */
.mp-landing-footer-logo-kutu {
    display: inline-block;
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.mp-landing-footer-logo {
    height: 36px;
    width: auto;
    display: block;
    /* filter'ı kaldırdık — logo orijinal renkleriyle */
    filter: none;
    opacity: 1;
    margin-bottom: 0;
}

/* Kilobyte tasarrufu: kullanılmayan preview/video CSS'i override etmiyoruz, zaten HTML'den kaldırıldı */
