/* ============================================
   ANALİZPANEL - LANDING PAGE v2 (ÇOKLU RENK)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    background: #060b18;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── COOKIE CONSENT (Bottom-left) ── */
.ap-cookie {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 2200;
    width: min(440px, calc(100vw - 36px));
}

.ap-cookie[hidden] {
    display: none !important;
}

.ap-cookie-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(700px 240px at 18% 0%, rgba(99, 102, 241, 0.22), transparent 60%),
        radial-gradient(520px 220px at 85% 10%, rgba(139, 92, 246, 0.18), transparent 55%),
        rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
    padding: 1.05rem 1.05rem 0.95rem;
    overflow: hidden;
    transform-origin: bottom left;
}

.ap-cookie.is-visible .ap-cookie-card {
    animation: apCookieIn 420ms cubic-bezier(.2, .9, .15, 1) both;
}

.ap-cookie.is-leaving .ap-cookie-card {
    animation: apCookieOut 320ms cubic-bezier(.3, .0, .2, 1) both;
}

@keyframes apCookieIn {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes apCookieOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
}

@media (prefers-reduced-motion: reduce) {

    .ap-cookie.is-visible .ap-cookie-card,
    .ap-cookie.is-leaving .ap-cookie-card {
        animation: none !important;
    }
}

.ap-cookie-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ap-cookie-close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.ap-cookie-head {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding-right: 2.2rem;
}

.ap-cookie-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #a78bfa;
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.18);
}

.ap-cookie-title .t1 {
    font-weight: 950;
    letter-spacing: -0.01em;
    color: #f8fafc;
    line-height: 1.1;
}

.ap-cookie-title .t2 {
    margin-top: 0.2rem;
    color: rgba(226, 232, 240, 0.78);
    font-weight: 650;
    font-size: 0.88rem;
    line-height: 1.45;
}

.ap-cookie-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ap-cookie-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: rgba(226, 232, 240, 0.86);
    font-weight: 850;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.28);
    padding-bottom: 2px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.ap-cookie-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(99, 102, 241, 0.55);
}

.ap-cookie-btns {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
}

.btn-cookie {
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    font-weight: 950;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform 0.16s ease, filter 0.16s ease, background 0.16s ease, border-color 0.16s ease;
    white-space: nowrap;
}

.btn-cookie:hover {
    transform: translateY(-1px);
}

.btn-cookie.ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-cookie.primary {
    border: 1px solid rgba(99, 102, 241, 0.28);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(139, 92, 246, 0.95));
    box-shadow: 0 14px 34px rgba(99, 102, 241, 0.22);
    color: #fff;
}

.btn-cookie.primary:hover {
    filter: brightness(1.02);
}

@media (max-width: 480px) {
    .ap-cookie {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
    }

    .ap-cookie-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .ap-cookie-link {
        align-self: center;
    }

    .ap-cookie-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        justify-content: center;
    }
}

/* ── CANLI KORUMA AKIŞI (TICKER) ── */
.lp-protection-ticker {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.25);
    height: 48px;
    display: flex;
    align-items: center;
    position: fixed;
    top: var(--lp-nav-h, 76px);
    /* Navbar altı */
    left: 0;
    right: 0;
    z-index: 990;
    overflow: hidden;
}

.ticker-inner {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-sep {
    color: rgba(255, 255, 255, 0.22);
    margin: 0 18px 0 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.ticker-mask {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.ticker-label strong {
    color: #f8fafc;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #f43f5e;
    border-radius: 50%;
    box-shadow: 0 0 10px #f43f5e;
    animation: ticker-pulse 2s infinite;
}

@keyframes ticker-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 15px #f43f5e;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

.ticker-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker-slide 80s linear infinite;
}

.ticker-item {
    font-size: 0.82rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item b {
    color: #e2e8f0;
    font-weight: 700;
}

.ticker-item .t-time {
    color: #64748b;
    font-size: 0.75rem;
}

.ticker-item .t-loc {
    color: #60a5fa;
    font-weight: 600;
}

.ticker-item .t-site {
    color: #cbd5e1;
    font-weight: 700;
}

.ticker-item .t-type {
    color: #fb7185;
    font-weight: 700;
}

.ticker-item .t-status {
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.04em;
}

.ticker-item .t-status.ok {
    color: #34d399;
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.22);
}

.ticker-item .t-status.blocked {
    color: #fb7185;
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.22);
}

.ticker-item .t-ip {
    color: #64748b;
    font-size: 0.75rem;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.lp-protection-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* ── NAVBAR ── */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 11, 24, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
}

.ap-brand-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.lp-navbar .ap-brand-logo {
    height: 60px;
    margin-top: -8px;
    margin-bottom: -8px;
}

.ap-brand-text {
    display: inline-block;
}

.footer-brand-logo {
    height: 56px;
    max-width: 200px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-auth-row {
    display: none;
}

.lp-nav-links a.mobile-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.lp-nav-links a.mobile-auth-btn.ghost {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-nav-links a.mobile-auth-btn.primary {
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.lp-nav-links a.mobile-auth-btn:hover {
    filter: brightness(1.08);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.lp-nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.lp-nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.07);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-ghost {
    color: #94a3b8;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-ghost:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.btn-primary-nav {
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.55);
    color: white;
}

/* ── HERO (KOYU GECEYARIİ + MOR GRADIENT) ── */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 11rem 0 5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 100% 70% at 50% -10%, rgba(99, 102, 241, 0.30) 0%, transparent 60%),
        linear-gradient(180deg, #060b18 0%, #080d1f 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ── İki sütunlu hero layout ── */
.hero-two-col {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Metin Slaytları (Hero Text Slider) ── */
.hero-text-slider {
    position: relative;
    min-height: 280px;
}

@media (max-width: 768px) {
    .hero-text-slider {
        min-height: 480px;
    }
}

.ht-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    z-index: 1;
}

.ht-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: #a5b4fc;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge .pulse {
    width: 7px;
    height: 7px;
    background: #f43f5e;
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, .5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(244, 63, 94, 0);
    }
}


.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 1.5rem;
    color: white;
}

.hero-title span.accent,
.sec-title span.accent {
    background: linear-gradient(90deg, #f43f5e, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-exclamation {
    display: inline-block;
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(244, 63, 94, 0.5));
    font-weight: 900;
    transform: scale(1.15) rotate(4deg);
    margin-left: 0.1rem;
    animation: pulseExclamation 2.5s infinite ease-in-out;
}

@keyframes pulseExclamation {

    0%,
    100% {
        transform: scale(1.15) rotate(4deg);
        filter: drop-shadow(0 0 12px rgba(244, 63, 94, 0.5));
    }

    50% {
        transform: scale(1.25) rotate(8deg);
        filter: drop-shadow(0 0 20px rgba(244, 63, 94, 0.8));
    }
}


.hero-title span.accent-blue,
.sec-title span.accent-blue {
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 0 2.5rem;
    line-height: 1.75;
}

.sec-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 720px;
    line-height: 1.75;
    margin: 0 0 3rem;
}

.sec-desc.wide {
    max-width: none;
    width: 100%;
}

/* ── GENEL SECTION BAŞLIKLARI ── */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.sec-label.violet {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.sec-label.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.sec-label.red {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.sec-label.rose {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.sec-label.emerald {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sec-label.orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.sec-label.green {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.sec-label.emerald {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sec-label i {
    font-size: 1.1rem;
}

.sec-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    letter-spacing: -0.5px;
}

.sec-title.one-line {
    hyphens: none;
}

@media (min-width: 769px) {
    .sec-title.one-line {
        white-space: nowrap;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f43f5e, #f97316);
    color: white;
    padding: 0.95rem 2.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(244, 63, 94, 0.4);
    transition: all 0.3s;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(244, 63, 94, 0.55);
    color: white;
}

.btn-hero-sec {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 0.95rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.btn-hero-sec:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Hero İstatistik Şeridi (Yeni: Merkezi ve Modern) */
.hero-stats-new {
    margin: 3rem auto 0;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 3rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.hs-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hs-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hs-icon-red {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
    box-shadow: 0 8px 16px rgba(244, 63, 94, 0.2);
}

.hs-icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.2);
}

.hs-icon-violet {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.2);
}

.hs-icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.hs-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hs-num.red {
    color: #f43f5e;
}

.hs-num.orange {
    color: #f97316;
}

.hs-num.violet {
    color: #8b5cf6;
}

.hs-num.green {
    color: #10b981;
}

.hs-lbl {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .hero-stats-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .hero-stats-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        padding: 1.35rem 1.15rem;
    }

    .hs-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 0.65rem;
    }

    .hs-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .hs-num {
        font-size: 1.25rem;
    }

    .hs-lbl {
        font-size: 0.74rem;
        line-height: 1.2;
    }
}

/* Mobil menü: giriş/kayıt linkleri masaüstünde gizli */
.nav-mobile-divider,
.nav-mobile-action {
    display: none;
}

/* ── HERO CAROUSEL ── */
.hero-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 680px;
}

.hc-slide {
    display: none;
    animation: hcFadeIn 0.6s ease;
}

.hc-slide.active {
    display: block;
}

@keyframes hcFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hc-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(99, 102, 241, 0.12);
    animation: floatY 5s ease-in-out infinite;
    background: #0a0f24;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hc-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.hc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(0deg, rgba(6, 11, 24, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c4b5fd;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 0 0 20px 20px;
}

.hc-label i {
    font-size: 1rem;
}

/* Dot navigation */
.hc-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hc-dot.active {
    background: #6366f1;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.7);
    width: 24px;
    border-radius: 4px;
}

.hc-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.38);
}

/* Dekoratif glow'lar */
.hc-glow-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    pointer-events: none;
    z-index: -1;
}

.hc-glow-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.1) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    pointer-events: none;
    z-index: -1;
}

/* Responsive: Carousel mobilde gizle */
@media (max-width: 900px) {
    .hero-two-col {
        grid-template-columns: 1fr;
    }

    .hero-visual-wrap {
        display: none;
    }
}

/* ── HTML/CSS PANEL MOCKUP STİLLERİ ── */
.hc-frame--ui {
    background: #0a0f24;
    border-radius: 16px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.mock-topbar {
    background: #0d1430;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-dot.red {
    background: #f43f5e;
}

.mock-dot.orange {
    background: #f97316;
}

.mock-dot.green {
    background: #10b981;
}

.mock-title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mock-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
}

.mock-stat {
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mock-stat.red {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.mock-stat.orange {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.mock-stat.violet {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.ms-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.ms-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.mock-table {
    margin: 0 0.75rem 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.mock-thead {
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
}

.mock-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
}

.mock-badge {
    display: inline-block;
    padding: 0.12rem 0.5rem;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 700;
}

.mock-badge.red {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.mock-badge.orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.mock-badge.green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.mock-shield-center {
    text-align: center;
    padding: 1rem 1rem 0.75rem;
}

.mock-shield-icon {
    font-size: 2.5rem;
    color: #6366f1;
    line-height: 1;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.6));
}

.mock-shield-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-shield-sub {
    font-size: 0.65rem;
    color: #475569;
    margin-top: 0.1rem;
}

.mock-blocked-list {
    margin: 0 0.75rem 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.mock-blocked-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.72rem;
    color: #94a3b8;
}

.mock-blocked-item:last-child {
    border-bottom: none;
}

.mock-blocked-item span:first-of-type {
    flex: 1;
}

.mock-time {
    color: #334155;
    font-size: 0.62rem;
}

.mock-report {
    margin: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.mock-report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.73rem;
}

.mock-report-row:last-child {
    border-bottom: none;
}

.rr-label {
    color: #64748b;
    font-weight: 600;
}

.rr-val {
    color: #e2e8f0;
    font-weight: 700;
}

.mock-approve-btn {
    margin: 0 0.75rem 0.75rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.hc-label-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(99, 102, 241, 0.05);
}

/* ── PROBLEM SECTION (AÇIK RENKLI) ── */
.sec-problem {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 0;
}

.lp-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Problem Stat Kartları */
.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}


.pstat-card {
    border-radius: 18px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.pstat-card.red-card {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(244, 63, 94, 0.04));
    border: 1px solid rgba(244, 63, 94, 0.2);
    overflow: visible;
}

.pstat-card.orange-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.04));
    border: 1px solid rgba(249, 115, 22, 0.2);
    overflow: visible;
}

.pstat-card.yellow-card {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.12), rgba(234, 179, 8, 0.04));
    border: 1px solid rgba(234, 179, 8, 0.2);
    overflow: visible;
}

.pstat-card .big-num {
    /* Problem stat: büyük sayı sağ üstte (şık, hafif çapraz, kartın bir kısmı dışında) */
    position: absolute;
    top: -26px;
    right: -18px;
    z-index: 2;
    font-size: 4.1rem;
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 1;
    margin: 0;
    opacity: 0.28;
    transform: rotate(-12deg);
    transform-origin: 100% 0%;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35)) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
}

.red-card .big-num {
    color: #f43f5e;
}


.orange-card .big-num {
    color: #f97316;
}

.yellow-card .big-num {
    color: #eab308;
}

.pstat-card .pstat-text {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
}

.problem-quote {
    background: rgba(244, 63, 94, 0.07);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-left: 4px solid #f43f5e;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.65;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.problem-quote span {
    color: #f43f5e;
}

/* Kritik Sorun: Makale Özeti */
.problem-article {
    margin-top: 2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(900px 280px at 10% 0%, rgba(244, 63, 94, 0.14) 0%, transparent 55%),
        radial-gradient(700px 260px at 100% 85%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
}

.pa-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.25rem;
}

.pa-title {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.pa-title>i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    box-shadow: 0 14px 26px rgba(244, 63, 94, 0.18);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.pa-kicker {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fecdd3;
    opacity: 0.95;
}

.problem-article h3 {
    margin: 0.2rem 0 0;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
}

.pa-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    color: #bbf7d0;
    font-weight: 800;
    font-size: 0.82rem;
    white-space: nowrap;
}

.pa-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.pa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pa-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 11, 24, 0.55);
    padding: 1.25rem;
}

.pa-card-top {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.pa-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.pa-ic.ic-red {
    background: linear-gradient(135deg, #f43f5e, #be123c);
}

.pa-ic.ic-indigo {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.pa-card h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    color: white;
}

.pa-card p {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
}

.pa-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.75;
}

.pa-list li {
    margin: 0.35rem 0;
}

.pa-list b {
    color: #e2e8f0;
}

.pa-foot {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pa-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    flex: 1;
    min-width: 260px;
}

.pa-callout i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    flex-shrink: 0;
}

.pa-callout .t1 {
    color: #ddd6fe;
    font-weight: 900;
    font-size: 0.9rem;
}

.pa-callout .t2 {
    color: #94a3b8;
    font-size: 0.84rem;
    line-height: 1.6;
    margin-top: 0.2rem;
}

.pa-disclaimer {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 600;
    max-width: 420px;
}

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

/* ── ÇÖZÜM SECTION (KOYU MAVİ) ── */
.sec-solution {
    background: linear-gradient(180deg, #060b18 0%, #0a0f24 100%);
    padding: 6rem 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.sol-card {
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "body body";
    column-gap: 0.9rem;
    row-gap: 0.35rem;
    align-items: center;
}

.sol-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.sol-card .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.accent-violet {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.accent-rose {
    background: linear-gradient(90deg, #f43f5e, #fb7185);
}

.accent-orange {
    background: linear-gradient(90deg, #f97316, #fbbf24);
}

.accent-cyan {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
}

.accent-green {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.accent-pink {
    background: linear-gradient(90deg, #ec4899, #a855f7);
}

.sol-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.sol-card .sol-icon {
    grid-area: icon;
    margin: 0;
}

.icon-violet {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.icon-rose {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.icon-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.sol-card h3 {
    grid-area: title;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.sol-card p {
    grid-area: body;
    font-size: 0.855rem;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
}

/* Çözüm: Delil & Süreç Paneli */
.legal-panel {
    margin-top: 2.25rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(800px 280px at 10% 0%, rgba(99, 102, 241, 0.14) 0%, transparent 55%),
        radial-gradient(700px 260px at 100% 90%, rgba(244, 63, 94, 0.10) 0%, transparent 60%),
        rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    overflow: hidden;
}

.legal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: #c7d2fe;
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-badge i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.legal-note {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.legal-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 11, 24, 0.55);
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "list list";
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    align-items: center;
}

.legal-ic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0;
    color: white;
    grid-area: icon;
}

.legal-ic.ic-indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.legal-ic.ic-rose {
    background: linear-gradient(135deg, #f43f5e, #be123c);
}

.legal-ic.ic-emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}

.legal-card h4 {
    grid-area: title;
    margin: 0;
    color: white;
    font-size: 0.98rem;
    font-weight: 800;
}

.legal-card ul {
    grid-area: list;
    margin: 0;
    padding-left: 1.05rem;
    color: #94a3b8;
    font-size: 0.84rem;
    line-height: 1.7;
}

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

/* ── İADE TALEBI SECTION (ÖZEL RENK) ── */
.sec-refund {
    background: linear-gradient(135deg, #0f0a24 0%, #160d2e 50%, #0a0e20 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.sec-refund::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.refund-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.refund-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: flex-start;
}

.refund-cols>* {
    min-width: 0;
}

.sec-refund .sec-title.one-line {
    font-size: clamp(1.55rem, 2.4vw, 2.55rem);
}

.refund-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0;
}

.refund-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    transition: all 0.25s;
}

.refund-step:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.refund-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    font-size: 0.9rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.refund-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem;
}

.refund-step p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Refund Visual */
.refund-visual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 2rem;
}

.rv-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rv-icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.rv-header-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.1rem;
}

.rv-header-text p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

.rv-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rv-item:last-child {
    border-bottom: none;
}

.rv-item .rv-label {
    font-size: 0.82rem;
    color: #94a3b8;
}

.rv-item .rv-value {
    font-size: 0.9rem;
    font-weight: 700;
}

.rv-item .rv-value.muted {
    color: #94a3b8;
}

.rv-item .rv-value.red {
    color: #f43f5e;
}

.rv-item .rv-value.green {
    color: #10b981;
}

.rv-item .rv-value.violet {
    color: #a78bfa;
}

.rv-item .rv-value.white {
    color: white;
}

.rv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
}

/* ── IP ENGELLEME SECTION (AÇIK / HAFIF GRI-MAVİ) ── */
.sec-protection {
    background: #0d1526;
    padding: 6rem 0;
}

.protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3.5rem;
}

.protection-features {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.pf-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s;
}

.pf-item:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.pf-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pf-icon.green-ic {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.pf-icon.blue-ic {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.pf-icon.red-ic {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.pf-icon.yel-ic {
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
}

.pf-item h4 {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.2rem;
}

.pf-item p {
    font-size: 0.86rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* IP Monitor visual */
.ip-monitor {
    background: #060b18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    font-size: 0.82rem;
}

.ip-mon-header {
    background: rgba(244, 63, 94, 0.1);
    border-bottom: 1px solid rgba(244, 63, 94, 0.15);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ip-mon-header i {
    color: #f43f5e;
    font-size: 1.1rem;
}

.ip-mon-header .title {
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
}

.ip-mon-header .sub {
    font-size: 0.72rem;
    color: #64748b;
}

.ip-row {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    gap: 1rem;
}

.ip-row:last-child {
    border-bottom: none;
}

.ip-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ip-dot.blocked {
    background: #f43f5e;
    box-shadow: 0 0 6px rgba(244, 63, 94, 0.6);
}

.ip-dot.alert {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
}

.ip-dot.ok {
    background: #10b981;
}

.ip-addr {
    color: #94a3b8;
    font-family: monospace;
    flex: 1;
}

.ip-reason {
    color: #475569;
    font-size: 0.76rem;
    flex: 1;
}

.ip-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
}

.ip-badge.blocked-b {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.ip-badge.alert-b {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.ip-badge.safe-b {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ── CTA SECTION (KIRMIZI/TURUNCU AKSAN) ── */
.sec-cta {
    background: linear-gradient(135deg, #0c0618 0%, #120820 50%, #080c1e 100%);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sec-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(244, 63, 94, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f43f5e, #f97316);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 32px rgba(244, 63, 94, 0.4);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.75px;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.cta-title .cta-accent {
    background: linear-gradient(90deg, #f43f5e, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f43f5e, #f97316);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4);
    transition: all 0.3s;
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(244, 63, 94, 0.55);
    color: white;
}

.btn-cta-sec {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.3s;
}

.btn-cta-sec:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ── FOOTER ── */
.lp-footer {
    background: #030711;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 0 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #334155;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #64748b;
}

.footer-copy {
    font-size: 0.78rem;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: flex-end;
    text-align: right;
}

.footer-design {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.95);
}

.footer-design .ap-signature {
    font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    background: linear-gradient(90deg, #a78bfa, #6366f1, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ── FOOTER (PROFESSIONAL) ── */
.lp-footer {
    background: #060b18;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.lp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-top {
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.footer-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #6366f1;
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-list a:hover {
    color: #a5b4fc;
    transform: translateX(5px);
}

.newsletter-col .footer-text {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.footer-form input:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
}

.footer-form button {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.ap-scrolltop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e2e8f0;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1055;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
    overflow: hidden;
}

.ap-scrolltop .ap-scrolltop-ring {
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: conic-gradient(from 210deg, rgba(99, 102, 241, 0.9), rgba(16, 185, 129, 0.9), rgba(244, 63, 94, 0.9), rgba(99, 102, 241, 0.9));
    opacity: 0.55;
    filter: blur(10px);
}

.ap-scrolltop i {
    position: relative;
    font-size: 1.7rem;
    line-height: 1;
    transform: translateY(-1px);
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.ap-scrolltop.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ap-scrolltop:hover {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transform: translateY(-2px) scale(1.02);
}

.ap-scrolltop:active {
    transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {

    .ap-scrolltop,
    .ap-scrolltop:hover {
        transition: none;
        transform: none;
    }

    .ap-scrolltop .ap-scrolltop-ring {
        filter: none;
    }
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-copy strong {
    color: #e2e8f0;
}

.footer-design {
    color: #64748b;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TAM MOBİL UYUMLULUK
   ═══════════════════════════════════════════ */

/* ── 1024px: Tablet geniş ── */
@media (max-width: 1024px) {

    .refund-cols,
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-two-col {
        gap: 2rem;
    }

    .nav-inner,
    .hero-inner,
    .lp-container {
        padding: 0 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── 900px: Tablet ── */
@media (max-width: 900px) {
    .hero-two-col {
        grid-template-columns: 1fr;
    }

    .hero-visual-wrap {
        display: none;
    }

    .hero-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        display: inline-flex;
        margin: 0 auto 1.5rem;
    }

    .hero-title {
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 1.6rem;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 2.25rem;
    }
}

/* ── 768px: Mobil ── */
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fb-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-title,
    .footer-desc,
    .newsletter-col .footer-text {
        text-align: center;
    }

    .footer-brand,
    .footer-socials {
        justify-content: center;
    }

    .footer-links-list,

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    /* Genel: Mobilde section başlıklarını ortala */
    .sec-label {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .sec-title,
    .sec-desc {
        text-align: center;
    }

    .sec-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .problem-quote {
        margin-left: auto;
        margin-right: auto;
    }

    /* Kritik Sorun: istatistik kartları ortalı */
    .sec-problem .problem-stats {
        justify-items: center;
    }

    .sec-problem .pstat-card {
        text-align: center;
    }

    .sec-problem .pstat-card .pstat-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 46ch;
    }

    /* Çözümlerimiz: kart ikon + metin ortalı */
    .sec-solution .solution-grid {
        justify-items: center;
    }

    .sec-solution .sol-card {
        justify-content: center;
        text-align: left;
        grid-template-columns: 52px auto;
    }

    .sec-solution .sol-icon {
        margin-left: 0;
        margin-right: 0;
    }

    .sec-solution .sol-card h3 {
        text-align: left;
    }

    .sec-solution .sol-card p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 52ch;
    }

    /* Kritik Sorun / Delil & Süreç / Özet başlıkları */
    .legal-head,
    .pa-head {
        justify-content: center;
        text-align: center;
    }

    .legal-badge,
    .pa-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .legal-note,
    .pa-disclaimer {
        flex-basis: 100%;
        text-align: center;
    }

    .pa-title {
        justify-content: center;
    }

    .legal-grid {
        justify-items: center;
    }

    .legal-card {
        text-align: center;
        grid-template-columns: 46px auto;
        justify-content: center;
    }

    .legal-card ul {
        padding-left: 0;
        list-style: none;
        justify-self: stretch;
    }

    .legal-card ul li {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .legal-card ul li::before {
        content: "\2022";
        color: rgba(148, 163, 184, 0.55);
        flex: 0 0 auto;
        margin-top: 0.05rem;
    }

    .legal-ic {
        margin-left: auto;
        margin-right: auto;
    }

    /* IP Engelleme: Mobilde kartları ortala */
    .sec-protection .protection-features {
        align-items: center;
    }

    .sec-protection .pf-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 560px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .sec-protection .pf-icon {
        margin-bottom: 0.75rem;
    }

    .sec-protection .ip-monitor {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Navbar */
    .lp-nav-links {
        display: none;
        position: fixed;
        top: var(--lp-nav-h, 76px);
        left: 0;
        right: 0;
        background: rgba(6, 11, 24, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        z-index: 999;
    }

    .lp-nav-links .mobile-auth-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lp-nav-links.open {
        display: flex;
    }

    .lp-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.35rem;
    }

    .lp-hamburger span {
        width: 22px;
        height: 2px;
        background: #94a3b8;
        border-radius: 2px;
        transition: all 0.3s;
        display: block;
    }

    .lp-hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .lp-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .lp-hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Header Buton Gizleme */
    .btn-ghost,
    .btn-primary-nav {
        display: none !important;
    }

    /* Ticker Mobil */
    .lp-protection-ticker {
        top: var(--lp-nav-h, 76px);
        height: 42px;
    }

    .ticker-inner {
        padding: 0 1rem;
    }

    .ticker-label {
        font-size: 0.65rem;
    }

    .ticker-item {
        font-size: 0.78rem;
    }

    /* Hero Mobil */
    .lp-hero {
        padding: 9rem 0 3.5rem;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-badge {
        display: inline-flex;
        margin: 0 auto 1.25rem;
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin: 0.5rem 0 1.25rem;
        text-align: center;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin: 0 auto 1.35rem;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-bottom: 2.25rem;
    }

    .btn-hero-cta,
    .btn-hero-sec {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    /* Stats Mobil */
    .hero-stats-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.95rem;
        padding: 1.25rem 1.05rem;
        margin-top: 2.5rem;
    }

    .hs-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 0.65rem;
    }

    .hs-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .hs-num {
        font-size: 1.25rem;
    }

    .hs-lbl {
        font-size: 0.74rem;
        line-height: 1.2;
    }


    /* Sections */
    .sec-problem,
    .sec-solution,
    .sec-refund,
    .sec-protection {
        padding: 3.5rem 0;
    }

    .refund-cols,
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .refund-inner {
        gap: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ── 480px: Küçük mobil ── */
@media (max-width: 480px) {
    .lp-hero {
        padding: 8.5rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }

    .hero-inner {
        padding: 0 1rem;
    }

    .lp-protection-ticker {
        height: 38px;
    }

    .hero-sub {
        margin-bottom: 1.1rem;
    }

    .hero-actions {
        margin-bottom: 2rem;
    }

    .hero-stats-new {
        gap: 0.8rem;
        padding: 1.1rem 0.9rem;
        margin-top: 2.1rem;
    }

    .hs-icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
}