        :root {
            --bg: #030308;
            --accent: #006aff;
            --accent-glow: rgba(0, 106, 255, 0.4);
            --text-main: #ffffff;
            --text-dim: #94a3b8;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.07);
        }

        /* --- GLOBAL & SMOOTH SCROLL --- */
        * {
            margin: 0; padding: 0; box-sizing: border-box;
            cursor: none !important;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

        /* --- CUSTOM CURSOR SYSTEM --- */
        #c-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999 !important;
    mix-blend-mode: difference;
}

#c-ring {
    width: 45px;
    height: 45px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999 !important;
    transition: transform 0.15s ease-out;
}
        .cursor-hover #c-ring { transform: scale(1.5); background: rgba(255,255,255,0.1); border-color: transparent; }

        /* --- PRELOADER --- */
#loader {
    position: fixed; 
    inset: 0; 
    background: #000; 
    z-index: 10000;
    /* Ekranın tam ortasına her şeyi toplar */
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.load-content { 
    display: flex;
    flex-direction: column;
    align-items: center; /* İçindeki yazıyı ve barı dikeyde hizalar */
    justify-content: center;
    width: 100%;
    text-align: center; 
}

.load-bar { 
    width: 300px; 
    height: 2px; 
    background: rgba(255,255,255,0.05); 
    margin-top: 30px; 
    position: relative; 
    overflow: hidden; 
    /* Barın kendisinin sağa sola kaymasını engellemek için */
    margin-left: auto;
    margin-right: auto;
}

.load-progress { 
    position: absolute; 
    left: 0; 
    top: 0; 
    height: 100%; 
    background: var(--accent); 
    width: 0%; 
    box-shadow: 0 0 25px var(--accent); 
}

        /* --- NAVIGATION --- */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 11000;
            padding: 30px 60px; transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        nav.scrolled {
            padding: 15px 60px; background: rgba(3, 3, 8, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
        }
        .nav-link {
            position: relative; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim);
            transition: 0.4s;
        }
        .nav-link:hover, .nav-link.active { color: #fff; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent); transition: 0.4s;
        }
        .nav-link:hover::after { width: 100%; }

        /* --- HERO SECTION --- */
        .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
        .hero-bg-text {
            position: absolute; font-size: 25vw; font-weight: 900; color: rgba(255,255,255,0.02);
            white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
        }
        .hero-content { position: relative; z-index: 10; text-align: center; max-width: 1200px; }
        .hero-h1 { font-size: clamp(4rem, 12vw, 10rem); line-height: 0.85; font-weight: 800; letter-spacing: -0.05em; }
        .hero-gradient { background: linear-gradient(to bottom, #fff 40%, #444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        /* --- BENTO GRID SYSTEM --- */
        .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 25px; padding: 25px; }
        .bento-item {
            background: var(--card-bg); border: 1px solid var(--border); border-radius: 40px;
            padding: 50px; position: relative; overflow: hidden; backdrop-filter: blur(10px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .bento-item:hover { border-color: var(--accent); transform: translateY(-10px); background: rgba(255,255,255,0.05); }
        .card-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); opacity: 0; filter: blur(100px); pointer-events: none; transition: 0.5s; }
        .bento-item:hover .card-glow { opacity: 1; }

        /* --- FORMS & INPUTS --- */
        .input-group { position: relative; margin-bottom: 30px; }
        .rmz-input {
            width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
            border-radius: 20px; padding: 20px 25px; color: #fff; font-family: inherit;
            transition: 0.4s; outline: none;
        }
        .rmz-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.07); box-shadow: 0 0 30px rgba(0, 106, 255, 0.1); }
        .rmz-label { position: absolute; left: 25px; top: 20px; color: #555; pointer-events: none; transition: 0.4s; font-size: 14px; }
        .rmz-input:focus ~ .rmz-label, .rmz-input:not(:placeholder-shown) ~ .rmz-label {
            top: -10px; left: 15px; font-size: 11px; color: var(--accent); background: var(--bg); padding: 0 10px;
        }

        /* --- BUTTONS --- */
        .btn-main {
            padding: 22px 45px; border-radius: 20px; background: #fff; color: #000;
            font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: 2px;
            position: relative; overflow: hidden; transition: 0.5s; display: inline-block;
        }
        .btn-main:hover { background: var(--accent); color: #fff; transform: scale(1.05); box-shadow: 0 20px 40px var(--accent-glow); }

        /* --- SECTIONS --- */
        section { padding: 150px 0; position: relative; }
        .sec-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; italic: true; line-height: 1; margin-bottom: 50px; }

        .noise { position: fixed; inset: 0; background: url('https://grainy-gradients.vercel.app/noise.svg'); opacity: 0.04; pointer-events: none; z-index: 9998; }

        /* --- ABOUT TIMELINE --- */
        .timeline-item { border-left: 2px solid var(--border); padding-left: 40px; padding-bottom: 60px; position: relative; }
        .timeline-item::before { content: ''; position: absolute; left: -9px; top: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }

        /* --- ANIMATION CLASSES --- */
        .reveal { opacity: 0; transform: translateY(50px); }
        /* --- PROJECTS SHOWCASE --- */
.project-card {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* OKUNMA SORUNU ÇÖZÜMÜ: Opacity 0.5 çok karanlıktı, 0.75 yapıyoruz */
    opacity: 0.75; 
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    /* Gri tonlamayı %100'den %40'a düşürdük ki renkler biraz seçilsin */
    filter: grayscale(40%) brightness(0.9); 
}

.project-card:hover .project-img {
    opacity: 1; /* Mouse gelince tam aydınlık olsun */
    transform: scale(1.05); /* 1.1 çok fazlaydı, 1.05 daha klas durur */
    filter: grayscale(0%) brightness(1.1); /* Hoverda hafif parlasın */
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 3, 8, 1) 0%, rgba(3, 3, 8, 0.5) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
}

.project-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 100px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-tag {
    transform: translateY(0);
    opacity: 1;
}

.project-title {
    font-size: 4rem;
    font-weight: 800;
    italic: true;
    line-height: 0.9;
    margin-bottom: 20px;
    transform: translateY(30px);
    transition: all 0.6s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-title {
    transform: translateY(0);
}

.project-meta {
    display: flex;
    gap: 30px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-meta {
    transform: translateY(0);
    opacity: 1;
}

.meta-item span {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.meta-item p {
    font-weight: 700;
    font-size: 14px;
}

.projects-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px;
    overflow-x: auto; /* 'scroll' yerine 'auto' kullan */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Mobil kaydırma için */
    scrollbar-width: none; /* Firefox */
    cursor: grab; /* Kullanıcıya kaydırılabilir olduğunu hissettirir */
}
.projects-wrapper:active {
    cursor: grabbing;
}

.projects-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
/* Projeler kısmının görünmesi için zorunlu ekleme */
.projects-wrapper.reveal {
    opacity: 1 !important; /* Wrapper görünür olmalı */
    transform: none !important;
}

.project-card {
    flex: 0 0 600px; /* Kartların büzülmesini engeller, sabit genişlik verir */
    height: 600px;
    margin-right: 30px;
    opacity: 0; /* JS ile açılacak */
    transform: translateY(50px);
    display: block !important;
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 85vw; /* Mobilde ekranın %85'ini kaplasın */
        height: 450px;
    }
}
/* --- FAQ ACCORDION SYSTEM --- */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    color: var(--text-dim);
    line-height: 1.8;
    padding-top: 0;
}

.faq-item.active {
    background: rgba(0, 106, 255, 0.05);
    border-color: var(--accent);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-top: 25px;
}

.faq-icon {
    transition: transform 0.5s;
    color: var(--accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- PRICING TABLES --- */
.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transition: 0.6s;
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0,106,255,0.1) 0%, transparent 100%);
    transform: scale(1.05);
}

.price-card ul li {
    margin-bottom: 15px;
    color: var(--text-dim);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* --- LOGO INFINITE SCROLL --- */
.logo-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

.logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) brightness(0.5);
    transition: 0.5s;
}

.logo-item:hover { filter: grayscale(0) brightness(1); }

/* --- TESTIMONIALS --- */
/* --- ENHANCED TESTIMONIALS --- */
#testimonials {
    background: radial-gradient(circle at top right, rgba(0, 106, 255, 0.05), transparent 40%);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testi-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px 45px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card:hover {
    border-color: var(--accent);
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.quote-mark {
    font-family: 'JetBrains Mono', monospace;
    font-size: 120px;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    background: linear-gradient(to bottom, var(--accent), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    pointer-events: none;
}

.testi-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--accent), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 106, 255, 0.2);
}
/* Bölümlerin birbirinin yanına binmesini engeller */
section {
    width: 100%;
    display: block;
    clear: both;
}

/* Mobilde ve masaüstünde gridin düzgün görünmesi için */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
}
/* ZORLAYICI TEMİZLİK */
#testimonials, #faq, #pricing, #contact {
    display: block !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
}

.testi-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Masaüstünde yan yana 3 tane */
    gap: 30px !important;
    width: 100% !important;
}

@media (max-width: 1100px) {
    .testi-grid {
        grid-template-columns: 1fr !important; /* Mobilde tek sütun */
    }
}
/* --- RMZ ÖZEL KAYBOLAN NOKTA EFECTİ --- */
@keyframes rmz-ping-absolute {
    0% { transform: scale(1); opacity: 1; }
    70%, 100% { transform: scale(3.5); opacity: 0; }
}

.animate-ping-custom {
    animation: rmz-ping-absolute 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 1024px) {
    nav {
        padding: 20px 25px;
    }

    .bento-item {
        padding: 30px;
    }

    section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {

    /* NAV */
    nav {
    background: rgba(3, 3, 8, 0.7);
    backdrop-filter: blur(10px);
    max-width: 100%;
    overflow: hidden;
}

    /* HERO */
    .hero-h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-content {
        padding: 0 15px;
    }

    /* TEXT */
    h2, .sec-title {
        font-size: clamp(2rem, 6vw, 3rem);
        text-align: center;
    }

    /* BENTO */
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .bento-item {
        padding: 25px;
        border-radius: 25px;
    }

    /* PROJECTS */
    .projects-wrapper {
        padding: 20px;
        gap: 20px;
    }

    .project-card {
        flex: 0 0 85%;
        height: 400px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-overlay {
        padding: 25px;
    }

    /* BUTTON */
    .btn-main {
        padding: 16px 25px;
        font-size: 11px;
    }

    /* TIMELINE */
    .timeline-item {
        padding-left: 25px;
    }

    /* PRICE CARDS */
    .price-card {
        padding: 25px;
    }

    /* GRID FIX */
    .grid {
        gap: 20px !important;
    }
}

@media (max-width: 480px) {

    .hero-h1 {
        font-size: 2rem;
    }

    .project-card {
        flex: 0 0 95%;
        height: 350px;
    }

    .bento-item {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .bento-grid {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    .bento-grid > div {
        grid-column: span 1 !important;
    }
}
/* NAVBAR FIX */
nav {
    background: rgba(3, 3, 8, 0.6);
    backdrop-filter: blur(15px);
}

/* MOBİLDE MENÜ YOK → GÖZÜKMEZ GİBİ DURUYOR */
@media (max-width: 1024px) {
    nav .lg\\:flex {
        display: none !important;
    }

    nav::after {
        content: "☰";
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
}
#mobile-menu a {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 85%;
    }

    .projects-wrapper {
        padding: 10px;
        gap: 15px;
    }
}
#menu-btn {
    display: block;
    z-index: 12000;
    position: relative;
}