*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(10, 10, 10, .95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #1e1e1e
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .logo img {
            height: 64px;
            width: auto
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px; /* Reduced gap to fit all items */
            list-style: none
        }

        .nav-link {
            padding: 8px 10px; /* Reduced horizontal padding */
            border-radius: 8px;
            font-weight: 500;
            font-size: .9rem;
            color: rgba(255, 255, 255, .8);
            text-decoration: none;
            white-space: nowrap; /* Prevent word wrapping like "Ana\nSayfa" */
        }

        .nav-link:hover {
            color: #e63946
        }

        .btn-nav {
            background: #e63946 !important;
            color: #fff !important;
            padding: 10px 18px !important;
            border-radius: 12px !important;
            font-weight: 600 !important;
            font-size: .85rem !important;
            margin-left: 8px;
            white-space: nowrap !important;
            display: inline-flex !important;
            align-items: center;
            line-height: 1.2
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px
        }

        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #0a0a0a 0%, rgba(230, 57, 70, .06) 50%, #0a0a0a 100%);
            border-bottom: 1px solid #1e1e1e
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: .85rem;
            font-weight: 600;
            color: #e63946;
            background: rgba(230, 57, 70, .1);
            border: 1px solid rgba(230, 57, 70, .2);
            margin-bottom: 16px
        }

        .text-red {
            color: #e63946
        }

        .card {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            padding: 28px
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            padding: 20px 0
        }

        .faq-item:last-child {
            border-bottom: none
        }

        .faq-q {
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            font-size: .95rem
        }

        .faq-a {
            color: rgba(255, 255, 255, .65);
            font-size: .9rem;
            line-height: 1.8
        }

        .cta-bar {
            position: sticky;
            bottom: 0;
            z-index: 100;
            background: rgba(10, 10, 10, .97);
            border-top: 1px solid rgba(230, 57, 70, .3);
            padding: 14px 0;
            backdrop-filter: blur(20px)
        }

        @media(max-width:768px) {
            .navbar {
                z-index: 5100
            }

            .hamburger {
                display: flex;
                z-index: 5200
            }

            .nav-menu {
                display: none;
                position: fixed;
                inset: 0;
                width: 100%;
                height: 100vh;
                z-index: 5000;
                background: rgba(5, 5, 5, .98);
                backdrop-filter: blur(18px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 90px 24px 40px;
                overflow-y: auto
            }

            .nav-menu.open {
                display: flex
            }

            .nav-link {
                padding: 10px 14px;
                font-size: .95rem;
                text-align: center
            }

            .hero {
                padding-top: clamp(110px, 18vw, 140px)
            }

            .hero-grid {
                grid-template-columns: 1fr !important
            }
        }


/* =========================================
   NAVBAR ULTIMATE FIX (Medium Screen Wrap Prevention)
   ========================================= */
.nav-brand, .logo {
    flex-shrink: 0 !important;
}
.nav-link {
    white-space: nowrap !important;
}
@media(max-width: 1150px) {
    .nav-menu {
        display: none !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 5000 !important;
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(18px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 90px 24px 40px !important;
        overflow-y: auto !important;
    }
    .hamburger {
        display: flex !important;
        z-index: 5200 !important;
    }
    .nav-menu.open {
        display: flex !important;
    }
    .nav-link {
        padding: 10px 14px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
    }
}
