/* ==========================================================================
   RACC - PREMIUM DARK LANDING PAGE CSS (v2.0)
   ========================================================================== */

   :root {
    --bg-dark: #0d0f14; /* Deep Slate from app */
    --bg-card: rgba(20, 23, 33, 0.6); 
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary: #6366f1;
    --accent: #10b981;
    
    --r-red: #ef4444;
    
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(20, 23, 33, 0.4);
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
    100% { transform: translate(0, 0); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto; /* Tek dikey scroll kaynağı */
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow: visible; /* Body scroll yapmasın, HTML yapsın */
    position: relative;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px; /* İnce ve zarif */
}

::-webkit-scrollbar-track {
    background: transparent; /* Alt kısım tamamen görünmez */
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz */
    border-radius: 20px;
    border: 2px solid transparent; /* Padding gibi görünmesi için */
    background-clip: content-box;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2); /* Üzerine gelince biraz daha belirgin */
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

/* BACKGROUND GLOWS */
.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Parlamaları burada kesiyoruz */
    pointer-events: none;
    z-index: -1;
}

.bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(15,23,42,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 15s infinite ease-in-out;
}

.glow-1 { top: -300px; left: -200px; }
.glow-2 { top: 40%; right: -300px; background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, rgba(15,23,42,0) 70%); animation-delay: -5s; }
.glow-3 { bottom: -300px; left: 20%; background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, rgba(15,23,42,0) 70%); animation-delay: -10s; }


/* NAVBAR & LOGO */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(13, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: all 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    font-size: 2.2rem;
    color: #a78bfa; 
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6)); /* Intensified glow */
    opacity: 0.95;
    transition: all 0.3s ease;
}


.logo-svg {
    height: 42px; 
    width: 150px;
    filter: 
        drop-shadow(0 0 10px rgba(139, 92, 246, 0.7))
        drop-shadow(0 0 25px rgba(139, 92, 246, 0.4))
        brightness(1.25);
    animation: breathing 4s ease-in-out infinite;
    display: block;
    overflow: visible;
}

.racc-text-path {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

@keyframes breathing {
    0%   { opacity: 0.9; transform: scale(1); }
    50%  { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.9; transform: scale(1); }
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 16px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-main); }


/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent; /* Tüm butonlarda aynı kutu yapısını sağlamak için eklendi */
    box-sizing: border-box; /* Yükseklik farklarını engellemek için */
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-outline-premium {
    background: rgba(13, 15, 20, 0.4);
    color: #fff;
    border: 1px solid rgba(139, 92, 246, 0.3); /* Mor/Viyole tonu */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.btn-outline-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.8), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-outline-premium:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.3);
}

.btn-outline-accent {
    background: rgba(13, 15, 20, 0.4);
    color: #fff;
    border: 1px solid rgba(16, 185, 129, 0.3); /* Yeşil (Accent) tonu */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.btn-outline-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.8), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-outline-accent:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 30px rgba(16, 185, 129, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.w-100 { width: 100%; }


/* HERO SECTION */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50px;
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 100px;
}

/* MOCKUP GLASS - PREMIUM 3D UPDATE */
.mockup-container {
    width: 100%;
    margin: 50px auto 0;
    perspective: 1500px;
    height: 600px;
    display: flex;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
}

.mockup-glass {
    position: absolute;
    width: 800px;
    height: 450px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    /* Transition kaldırıldı, artık tamamen sabit */
}

.mockup-slide-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mockup-slide-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill; /* Boşluk kalmaması için görseli çerçeveye tam yay */
    filter: saturate(1.25) contrast(1.1) brightness(1.05);
    image-rendering: -webkit-optimize-contrast;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.img-out {
    transform: translateX(100%);
}

.img-in {
    transform: translateX(0);
}

.img-prev {
    transform: translateX(-100%);
    transition: none !important;
}

/* "Genişlemiş" (hover) halleri varsayılan sabit değerler yapıldı */
.mockup-left {
    transform: translateX(-450px) translateZ(-150px) rotateY(5deg);
    opacity: 0.9;
    z-index: 1;
    filter: blur(0px) brightness(0.9);
}

.mockup-right {
    transform: translateX(450px) translateZ(-150px) rotateY(-5deg);
    opacity: 0.9;
    z-index: 1;
    filter: blur(0px) brightness(0.9);
}

.mockup-center {
    transform: translateX(0) translateZ(100px) scale(1.02);
    z-index: 10;
    box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.9), 0 0 70px rgba(59, 130, 246, 0.3);
    width: 900px;
    height: 506px;
}

.mockup-header {
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.mockup-header .dots { display: flex; gap: 8px; }
.mockup-header .dots i { font-size: 10px; opacity: 0.3; }
.mockup-header .url-bar {
    width: 60%;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

.mockup-body {
    display: flex;
    height: 540px;
}

/* Simulated Content */
.sidebar-sim {
    width: 220px;
    border-right: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.01);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.s-logo-sim { 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}
.s-item-sim { height: 12px; background: rgba(255,255,255,0.05); border-radius: 4px; width: 80%; }
.s-item-sim.active { background: var(--primary); opacity: 0.3; width: 100%; }
.s-divider-sim { height: 1px; background: rgba(255,255,255,0.05); margin: 8px 0; }

.main-sim {
    flex: 1;
    padding: 32px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent);
}
.header-sim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.title-sim { font-size: 1.2rem; font-weight: 700; color: #fff; }
.search-sim { width: 150px; height: 32px; background: rgba(0,0,0,0.2); border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }

.stats-sim {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.stat-sim {
    height: 100px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.stat-sim.blue { border-left: 3px solid var(--primary); }
.stat-sim.green { border-left: 3px solid var(--accent); }
.stat-sim.purple { border-left: 3px solid var(--secondary); }
.stat-sim.orange { border-left: 3px solid #f97316; }

.chart-sim {
    height: 180px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.chart-line-sim {
    position: absolute;
    bottom: 20px; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(0deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    border-top: 2px solid var(--primary);
    clip-path: polygon(0 50%, 15% 30%, 30% 60%, 45% 40%, 60% 70%, 75% 20%, 90% 40%, 100% 30%, 100% 100%, 0 100%);
    animation: flowChart 10s infinite linear;
}

@keyframes flowChart {
    0% { transform: translateX(-10%); }
    50% { transform: translateX(5%); }
    100% { transform: translateX(-10%); }
}

.table-sim {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.table-row-sim { height: 12px; background: rgba(255,255,255,0.03); border-radius: 4px; width: 100%; }


/* SECTION HEADING */
.section-heading { margin-bottom: 72px; }
.section-heading .title { font-size: 3rem; margin-bottom: 16px; letter-spacing: -1px; }
.section-heading .subtitle { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; }


/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}
.feature-card:hover::before { opacity: 1; }

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 28px;
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.2);
}

.feature-card h3 { font-size: 1.4rem; margin-bottom: 16px; color: #fff; }
.feature-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }


/* MODERN COMPARISON GRID */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.comp-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.comp-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex-grow: 1;
}

.comp-side {
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.comp-side.old {
    background: rgba(239, 68, 68, 0.03);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.comp-side.old i { color: #ef4444; opacity: 0.5; }

.comp-side.racc {
    background: rgba(59, 130, 246, 0.05);
    color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.comp-side.racc i { color: var(--accent); filter: drop-shadow(0 0 5px var(--accent)); }

.comp-side span {
    font-weight: 500;
    line-height: 1.4;
}

.comp-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 4px;
}

/* PRICING */
#pricing .container {
    max-width: 1560px; /* Kartların ekranda daha geniş ve heybetli durması için maksimum genişlik artırıldı */
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* İçeriğe bakılmaksızın tüm kolonların yüzde 100 eşit genişlikte olmasını zorlar */
    gap: 32px; /* Boşluk az bir şey artırıldı */
    align-items: stretch; /* Tüm kartları eşit yükseklikte hizala */
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 24px;
    }
    
    .price-card, .price-card.popular, .price-card.premium-card {
        min-height: auto; /* Mobilde her şeyi aynı boy yapmaya çalışma, doğal aksın */
        transform: none !important; /* Scale mobilde taşma yapabilir */
    }
}


.price-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 24px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Stretch ile gelen yüksekliği tam kapla */
}

/* Tüm kartlardaki butonları %100 aynı boyuta zorla */
.price-card .btn {
    height: 50px;
}

.price-card.popular {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-color: var(--primary);
    padding: 48px 24px 36px 24px; /* Alt padding diğerleriyle eşlendi ki buton hizaları aynı kalsın */
    margin: -16px -12px; /* CSS scale yerine fiziksel marj ile kartın büyük görünmesi sağlandı */
    transform: none; /* Scale iptal edildi (butonların ekstra kalıp değişmesini engellemek için) */
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.7), 0 0 0 1px var(--primary);
    z-index: 10;
    overflow: hidden;
}

.price-card.popular::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite;
    pointer-events: none; /* Add this to allow clicks to pass through */
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: none; left: auto; /* override previous */
}

.price-card.premium-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
    z-index: 5;
    padding-top: 56px; /* Header ve badge alanı için biraz üst boşluk */
}

.premium-card:hover {
    border-color: rgba(245, 158, 11, 0.8);
    box-shadow: 0 50px 120px -20px rgba(0,0,0,0.9);
}

.btn-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    color: #000;
}

.preorder-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255,255,255,0.05); /* Arka plana daha uyumlu, sade bir badge */
    color: #f59e0b;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 20;
    letter-spacing: 1px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
}

.preorder-badge i { font-size: 0.8rem; }

.price {
    margin: 32px 0;
    display: flex;
    align-items: baseline;
}
.price .currency { font-size: 1.5rem; color: #fff; margin-right: 4px; font-weight: 400; }
.price .amount { font-size: 3.5rem; font-family: 'Outfit'; font-weight: 800; color: #fff; }
.price .period { color: var(--text-muted); font-size: 1rem; margin-left: 8px; }

.features-list {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
    flex-grow: 1; /* Boşluğu doldur ki butonlar aşağı hizalansın */
}
.features-list li {
    margin-bottom: 18px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FAQ SECTION */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
}
.faq-item h4 { margin-bottom: 12px; color: #fff; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; }


/* FOOTER */
footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px 0;
    margin-top: 150px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-links h4 { margin-bottom: 24px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* TRUST SECTION */
.trust-section {
    background: linear-gradient(180deg, rgba(13,15,20,0) 0%, rgba(59,130,246,0.03) 50%, rgba(13,15,20,0) 100%);
}

.stats-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit';
    color: #fff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-lbl {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-container { 
        height: auto;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .mockup-glass { 
        position: relative !important; 
        width: 90% !important; 
        max-width: 600px;
        height: auto !important; 
        transform: none !important; 
        left: auto !important;
        right: auto !important;
        top: auto !important;
        opacity: 1 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    }
    .mockup-left, .mockup-right {
        display: none !important; /* Mobilde yan ekranları gizle */
    }
}

.nav-toggle { display: none !important; } /* Desktopda kesinlikle gizle */

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
        z-index: 1100;
        margin-left: 15px;
    }
    .nav-actions .btn-primary {
        display: none !important; /* Mobilde butonu gizle */
    }
    .nav-links { 
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(13, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
    }
    .hero-title { font-size: 2.8rem !important; line-height: 1.1; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero { padding-top: 120px; }
    .hero-buttons { flex-direction: column; gap: 16px; }
    .btn-large { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .footer-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Ürün ve Destek yan yana */
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-info { width: 100%; margin-bottom: 20px; }
    .footer-links { width: 45%; }
    
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    /* Stats grid fix */
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    .stat-item .stat-num { font-size: 2.2rem; }
    .stat-item .stat-lbl { font-size: 0.8rem; }

    /* Comparison grid fix */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .comp-card {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }
    .comp-box {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


/* GUIDE SECTION */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.guide-step {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    text-align: center;
}
.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 24px auto;
    box-shadow: 0 10px 20px var(--primary-glow);
}
.guide-step h4 { margin-bottom: 16px; font-size: 1.3rem; }
.guide-step p { color: var(--text-muted); font-size: 0.95rem; }

/* CONTACT SECTION */
.contact-card {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 16px 32px;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.contact-item a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s;
}
.contact-item a:hover {
    color: var(--primary);
    border-bottom-color: transparent;
}

/* RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .guide-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem !important; }
}
/* DOWNLOAD SECTION */
.download-section {
    position: relative;
    z-index: 1;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.download-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.version-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.download-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.requirements-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
}

.requirements-box h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.req-list {
    list-style: none;
}

.req-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.req-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.setup-steps {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.step-small {
    font-size: 0.85rem;
}

.step-small i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    opacity: 0.7;
}

@media (max-width: 968px) {
    .download-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .download-info h2 { font-size: 2.2rem; }
    .setup-steps { grid-template-columns: 1fr; gap: 30px; }
}
