/* ============================================================
   TAKSİNET — PREMIUM LANDING PAGE
   ============================================================ */

/* ── GENEL ── */
.landing-body { background: #060914; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 18px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(6,9,20,0.96);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.35rem; font-weight: 800;
    font-family: var(--font-heading); color: #fff; text-decoration: none;
}
.nav-logo .logo-mark { font-size: 1.7rem; }
.nav-logo strong { color: #f59e0b; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
    color: rgba(255,255,255,0.55); font-size: 0.9rem; font-weight: 500;
    text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: #f59e0b; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-admin-link {
    color: rgba(255,255,255,0.3); font-size: 1.2rem; text-decoration: none;
    transition: color 0.2s; padding: 6px; border-radius: 8px;
}
.btn-admin-link:hover { color: #f59e0b; background: rgba(245,158,11,0.08); }
.nav-hamburger {
    display: none; background: none; border: 1px solid rgba(255,255,255,0.12);
    color: #fff; font-size: 1.2rem; padding: 8px 12px;
    border-radius: 8px; cursor: pointer;
}
.mobile-menu {
    display: none; flex-direction: column; gap: 10px;
    padding: 20px 28px; background: rgba(6,9,20,0.99);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: 500;
}
@media (max-width: 900px) {
    .nav-links, .nav-actions { display: none !important; }
    .nav-hamburger { display: none !important; } /* Hamburger gizli – alt bar yeterli */
    .nav-container { gap: 0; justify-content: center; }
    /* Bottom sheet de gizli – gerek yok */
    .mob-sheet, .mob-sheet-overlay { display: none !important; }
}

/* ── MOBİL BOTTOM SHEET MENÜ ─────────────────────────────── */
/* Eski .mobile-menu gizle */
.mobile-menu { display: none !important; }

/* Bottom sheet overlay */
.mob-sheet-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 298;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mob-sheet-overlay.active {
    display: block;
    opacity: 1;
}

/* Bottom sheet paneli */
.mob-sheet {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 299;
    background: rgba(8, 11, 24, 0.98);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px 24px 0 0;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.7);
}
.mob-sheet.open {
    transform: translateY(0);
}

/* Tutma çubuğu */
.mob-sheet-handle {
    width: 40px; height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* Başlık etiketi */
.mob-sheet-title {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 14px; padding-left: 2px;
}

/* 3'lü buton grid */
.mob-sheet-btns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

/* Her giriş butonu */
.mob-sheet-btn {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.mob-sheet-btn-icon { font-size: 1.6rem; line-height: 1; }
.mob-sheet-btn-label {
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-align: center; letter-spacing: 0.01em;
}
.mob-sheet-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}
.mob-sheet-btn.primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4),
                inset 0 1px 0 rgba(255,255,255,0.2);
}
.mob-sheet-btn.primary .mob-sheet-btn-label { color: #000; font-weight: 800; }
.mob-sheet-btn:active { transform: scale(0.94); }

/* Ayraç */
.mob-sheet-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 12px 0;
}

/* Sayfa nav linkleri */
.mob-sheet-links { display: flex; flex-direction: column; gap: 2px; }
.mob-sheet-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 10px;
    color: rgba(255,255,255,0.55);
    text-decoration: none; font-weight: 500; font-size: 0.9rem;
    border-radius: 12px;
    transition: background 0.2s;
}
.mob-sheet-link:hover { background: rgba(255,255,255,0.05); color: #fff; }


/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 110px 28px 60px;
    max-width: 1200px; margin: 0 auto;
    gap: 70px; position: relative;
}
.hero-bg {
    position: fixed; inset: 0;
    pointer-events: none; z-index: -1; overflow: hidden;
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(90px);
}
.orb1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,158,11,0.18), transparent);
    top: -250px; right: -200px;
    animation: orbFloat 10s ease-in-out infinite;
}
.orb2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.12), transparent);
    bottom: -150px; left: -150px;
    animation: orbFloat 13s ease-in-out infinite reverse;
}
.orb3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(139,92,246,0.1), transparent);
    top: 35%; left: 35%;
    animation: orbFloat 16s ease-in-out infinite;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(30px,-30px) scale(1.05); }
    66%       { transform: translate(-20px,20px) scale(0.95); }
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 40px; padding: 8px 20px;
    font-size: 0.82rem; font-weight: 600; color: #6ee7b7;
    margin-bottom: 28px; letter-spacing: 0.03em;
}
.pulse-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero-title {
    font-size: clamp(2.8rem,5.5vw,4.4rem);
    font-weight: 900; line-height: 1.08; margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #06b6d4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.5);
    line-height: 1.75; margin-bottom: 40px; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.82rem; color: rgba(255,255,255,0.45); font-weight: 500;
}
.trust-icon { font-size: 0.95rem; }

/* PHONE MOCKUP */
.hero-visual { flex-shrink: 0; }
.phone-mockup {
    width: 290px;
    background: linear-gradient(145deg, #111827, #0d1424);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 50px 100px rgba(0,0,0,0.7),
        0 0 60px rgba(245,158,11,0.08);
}
.phone-mockup::before {
    content: ''; display: block;
    width: 90px; height: 6px;
    background: rgba(255,255,255,0.12); border-radius: 3px;
    margin: 0 auto 12px;
}
.phone-screen {
    background: #090d1a; border-radius: 30px; overflow: hidden;
}
.phone-header {
    padding: 16px;
    background: rgba(245,158,11,0.05);
    border-bottom: 1px solid rgba(245,158,11,0.12);
}
.search-bar-mini {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06); border-radius: 10px;
    padding: 9px 13px; font-size: 0.78rem; color: rgba(255,255,255,0.45);
    border: 1px solid rgba(245,158,11,0.2);
}
.phone-map { height: 170px; background: #1a2332; }
.phone-card { padding: 16px; }
.phone-card-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.taxi-avatar {
    width: 44px; height: 44px;
    background: rgba(16,185,129,0.12);
    border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    box-shadow: 0 0 20px rgba(16,185,129,0.2);
}
.taxi-name  { font-weight: 700; font-size: 0.9rem; color: #fff; }
.taxi-plate { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.phone-card-status {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.75rem; color: #10b981;
}
.status-bar {
    flex: 1; height: 4px;
    background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden;
}
.status-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    animation: scanFill 2.5s ease-in-out infinite alternate;
    border-radius: 2px;
}
@keyframes scanFill { from { width: 30%; } to { width: 95%; } }

/* ── STATS ── */
.stats-section {
    padding: 80px 28px;
    background: linear-gradient(180deg, #060914 0%, #0c1020 50%, #060914 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.container     { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.container-sm  { max-width: 720px;  margin: 0 auto; position: relative; z-index: 1; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px; text-align: center;
}
.stat-item {
    padding: 40px 24px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    position: relative; overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.stat-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    opacity: 0; transition: opacity 0.35s;
}
.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(245,158,11,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(245,158,11,0.06);
}
.stat-item:hover::before { opacity: 1; }
.stat-number {
    font-size: 3.8rem; font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(245,158,11,0.3));
}
.stat-label-text {
    font-size: 1rem; font-weight: 700; color: #fff;
    margin-bottom: 6px; letter-spacing: 0.3px;
}
.stat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── HOW IT WORKS ── */
.how-section {
    padding: 90px 28px;
    background: #060914;
}
.section-header {
    text-align: center; max-width: 580px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 30px; padding: 5px 16px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.section-header h2 {
    font-size: 2.5rem; font-weight: 800;
    margin-bottom: 14px; letter-spacing: -0.02em;
}
.section-header p { color: rgba(255,255,255,0.45); line-height: 1.8; font-size: 1rem; }

.steps-wrapper {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 28px; position: relative;
}
.step-connector {
    position: absolute; top: 58px; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), rgba(6,182,212,0.4), transparent);
    z-index: 0;
}
.step-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px; padding: 44px 32px;
    text-align: center; position: relative; z-index: 1;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    overflow: hidden;
}
.step-card::after {
    content: '';
    position: absolute; inset: 0; border-radius: 28px;
    background: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.step-card:hover { transform: translateY(-14px); border-color: rgba(245,158,11,0.3); }
.step-card:hover::after { opacity: 1; }

.step-num {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000; font-weight: 900; font-size: 1.4rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 26px;
    box-shadow: 0 0 0 6px rgba(245,158,11,0.1), 0 0 30px rgba(245,158,11,0.3);
}
.step-icon { font-size: 3.2rem; margin-bottom: 22px; }
.step-card h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.step-card p  { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.85; }

/* ── ALGORITHM ── */
.algo-section {
    padding: 80px 28px;
    background: linear-gradient(180deg, #060914 0%, #0a0f1c 100%);
    position: relative;
}
.algo-section::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
}
.algo-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1100px; margin: 0 auto;
}
.algo-info .section-tag { display: block; margin-bottom: 18px; width: fit-content; }
.algo-info h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.02em; }
.algo-info p  { color: rgba(255,255,255,0.45); margin-bottom: 32px; line-height: 1.8; }

.algo-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 44px;
}
.algo-feat {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 14px 18px; font-weight: 500;
    transition: all 0.25s ease;
}
.algo-feat:hover {
    transform: translateX(6px);
    background: rgba(245,158,11,0.06);
    border-color: rgba(245,158,11,0.2);
    color: #fff;
}

/* RADAR */
.radar-wrapper {
    width: 320px; height: 320px;
    position: relative; margin: 0 auto;
}
.radar-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: radarPulse 3.5s ease-in-out infinite;
}
.ring1 { width: 90px;  height: 90px;  border-color: rgba(245,158,11,0.7); }
.ring2 { width: 175px; height: 175px; border-color: rgba(245,158,11,0.35); animation-delay: 0.6s; }
.ring3 { width: 280px; height: 280px; border-color: rgba(245,158,11,0.12); animation-delay: 1.2s; }
@keyframes radarPulse {
    0%, 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    50%       { opacity: 0.4; transform: translate(-50%,-50%) scale(1.03); }
}
.radar-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 2rem; z-index: 5;
    filter: drop-shadow(0 0 12px rgba(245,158,11,0.9));
}
.radar-dot { position: absolute; font-size: 1.5rem; }
.dot1 { top: 18%; left: 62%; animation: float 4s ease-in-out infinite; }
.dot2 { top: 62%; right: 8%;  animation: float 5s ease-in-out infinite 1s; }
.dot3 { bottom: 18%; left: 22%; animation: float 6s ease-in-out infinite 2s; }
.dot4 { top: 12%; left: 18%;  animation: float 4.5s ease-in-out infinite 0.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* ── COMPANIES ── */
.companies-section {
    padding: 90px 28px;
    background: #060914;
    position: relative; overflow: hidden;
}
.companies-section::before {
    content: '';
    position: absolute; bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.07), transparent 70%);
    pointer-events: none;
}

.company-features-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 20px; margin-bottom: 50px;
}
.feature-card {
    padding: 38px 26px; text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; position: relative; overflow: hidden;
    transition: all 0.35s ease;
}
.feature-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #f59e0b, #06b6d4);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.04);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 3rem; margin-bottom: 22px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.feature-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

.cta-box {
    display: flex; align-items: center; justify-content: space-between;
    padding: 48px 56px;
    background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(6,182,212,0.04) 100%);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 28px; flex-wrap: wrap; gap: 28px;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.05), transparent 60%);
    pointer-events: none;
}
.cta-box h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.cta-box p  { color: rgba(255,255,255,0.55); font-size: 1rem; }

/* ── REGISTER ── */
.register-section {
    padding: 80px 28px;
    background: linear-gradient(180deg, #060914 0%, #0a0f1c 100%);
    position: relative;
}
.register-section::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
}
.register-card {
    padding: 50px 48px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* ── FOOTER ── */
.footer {
    padding: 72px 28px 36px;
    background: #040711;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.25), transparent);
}
.footer-grid {
    display: grid; grid-template-columns: 2.2fr 1fr 1fr;
    gap: 56px; margin-bottom: 48px;
}
.footer-logo {
    font-size: 1.6rem; font-weight: 800;
    font-family: var(--font-heading); margin-bottom: 14px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer p { color: rgba(255,255,255,0.4); margin-bottom: 24px; font-size: 0.9rem; line-height: 1.8; }
.footer-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li {
    padding: 8px 0; color: rgba(255,255,255,0.5); font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.footer ul a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer ul a:hover { color: #f59e0b; }
.footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.25); font-size: 0.82rem;
    flex-wrap: wrap; gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
    .stats-grid           { grid-template-columns: repeat(2,1fr); }
    .company-features-grid{ grid-template-columns: repeat(2,1fr); }
    .algo-wrapper         { grid-template-columns: 1fr; }
    .footer-grid          { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero { flex-direction: column; padding: 90px 18px 120px; text-align: center; }
    .hero-content { width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .steps-wrapper { grid-template-columns: 1fr; }
    .step-connector { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .company-features-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-box { text-align: center; justify-content: center; padding: 36px 20px; }
    .algo-features { grid-template-columns: 1fr; }
    .register-card { padding: 24px 18px; }
    .grid-2 { grid-template-columns: 1fr; }
    .cta-box h3 { font-size: 1.3rem; }
    /* Footer butonları dikey */
    .footer-actions { flex-direction: column; gap: 10px; }
    .footer-actions .btn { width: 100%; justify-content: center; }
    /* Footer bottom dikey */
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .company-features-grid { grid-template-columns: 1fr; }
    .hero-badge { font-size: 0.75rem; }
}

/* ── SABİT BOTTOM NAV BAR (Mobil Landing) ── */
.landing-pill-nav {
    display: none;
}

@media (max-width: 900px) {
    .landing-pill-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0; right: 0;
        z-index: 999;
        background: rgba(6, 9, 20, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
        gap: 6px;
        box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
    }
    /* Alt nav için sayfa boşluğu */
    .landing-body { padding-bottom: 80px; }

    .lpn-item {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 12px 6px;
        color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        border-radius: 16px;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    .lpn-icon {
        font-size: 1.4rem;
        line-height: 1;
        display: block;
        transition: transform 0.2s ease;
        margin-bottom: 2px;
    }
    /* Ana CTA – parlak sarı */
    .lpn-item.lpn-cta {
        color: #000;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        border: 1px solid rgba(245,158,11,0.5);
        box-shadow: 0 0 20px rgba(245,158,11,0.35),
                    inset 0 1px 0 rgba(255,255,255,0.3);
        font-weight: 800;
    }
    .lpn-item.lpn-cta .lpn-icon {
        filter: drop-shadow(0 0 4px rgba(245,158,11,0.4));
    }
    /* Diğerleri hover */
    .lpn-item:not(.lpn-cta):hover {
        color: rgba(255,255,255,0.9);
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.1);
    }
    .lpn-item:active { transform: scale(0.95); }
}


