@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/inter-800.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/inter-900.ttf') format('truetype');
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --bg-dark: #000000;
    --bg-darker: #0d0d0d;
    --primary: #E53935;
    --primary-light: #EF5350;
    --secondary: #C62828;
    --text-main: #FFFFFF;
    --text-muted: #BDBDBD;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --font-main: 'Inter', sans-serif;
    
    --navbar-bg: rgba(13, 13, 13, 0.65);
    --navbar-border: rgba(255, 255, 255, 0.08);
    --navbar-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    
    --navbar-scrolled-bg: rgba(5, 5, 5, 0.95);
    --navbar-scrolled-border: rgba(229, 57, 53, 0.6);
    --navbar-scrolled-shadow: 0 15px 50px rgba(0, 0, 0, 1), 0 0 30px rgba(229, 57, 53, 0.25);
}

/* ─── LIGHT TEMA ─── */
[data-theme="light"] {
  --bg-dark:      #F5F5F5;
  --bg-darker:    #FFFFFF;
  --text-main:    #111111;
  --text-muted:   #555555;
  --glass-bg:     rgba(0, 0, 0, 0.04);
  --glass-border: rgba(0, 0, 0, 0.12);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.10);

  /* Kırmızı ana renk light modda aynı kalır — marka rengi değişmez */
  --primary:       #E53935;
  --primary-light: #EF5350;
  --secondary:     #C62828;

  --navbar-bg:     rgba(255, 255, 255, 0.85);
  --navbar-border: rgba(0, 0, 0, 0.1);
  --navbar-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  --navbar-scrolled-bg: rgba(255, 255, 255, 0.98);
  --navbar-scrolled-border: rgba(229, 57, 53, 0.3);
  --navbar-scrolled-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Light modda kırmızı üzerine yazılar her zaman beyaz */
[data-theme="light"] .btn-primary,
[data-theme="light"] button[style*="background: #E53935"],
[data-theme="light"] button[style*="background:#E53935"],
[data-theme="light"] [style*="background: var(--primary)"],
[data-theme="light"] [style*="background:var(--primary)"] {
  color: #FFFFFF !important;
}

/* Light modda ikincil butonun görünürlüğünü sağla */
[data-theme="light"] .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary);
}

[data-theme="light"] .btn-presentation {
    background: rgba(192, 57, 43, 0.08);
    color: var(--primary) !important;
    border-color: rgba(192, 57, 43, 0.32);
}

[data-theme="light"] .btn-presentation:hover {
    background: rgba(192, 57, 43, 0.14);
    border-color: rgba(192, 57, 43, 0.5);
}

/* Light modda border'lar için genel düzeltme */
[data-theme="light"] {
  color-scheme: light;
}

/* Premium Floating Theme Toggle */
.theme-toggle-floating {
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 2000;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sadece Mobilde Görünecek Tema Butonunu Masaüstünde Gizle */
.theme-menu-item {
    display: none !important;
}

/* Mobilde Yüzen Butonu Gizle - Menü İçindekini Kullan */
@media (max-width: 768px) {
    .theme-toggle-floating {
        display: none !important;
    }
}

.theme-toggle-floating:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
    color: var(--primary-light);
}

[data-theme="light"] .theme-toggle-floating {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0;
}
/* Glow orbs cause horizontal scroll on mobile, hide them */
@media (max-width: 768px) {
    .glow-orb {
        display: none !important;
    }
}

/* Background Glow Effects Restored for Premium Contrast */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
}
.orb-1 {
    top: -10%; left: -10%; width: 700px; height: 700px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.orb-2 { display: none; }

/* Utility Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.12;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 850px; /* Metnin tek satıra sığması için genişletildi */
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    width: calc(100% - 24px);
    max-width: 1480px;
    margin: 0 auto;
    border-radius: 16px; /* Daha akışkan ve premium geometri */
    z-index: 1000;
    padding: 10px 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--navbar-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--navbar-border);
    border-top: 1px solid var(--glass-border); /* Işık sızıntısı efekti */
    box-shadow: var(--navbar-shadow);
}

.navbar.scrolled {
    background: var(--navbar-scrolled-bg);
    border: 1px solid var(--navbar-scrolled-border);
    border-top: 1px solid var(--primary);
    box-shadow: var(--navbar-scrolled-shadow);
    padding: 12px 32px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001; /* Above mobile menu overlay */
    padding: 5px;
    margin-left: auto; /* Push to the right */
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0;
    color: var(--primary);
    white-space: nowrap; /* Yazının kırılmasını önler */
    min-width: max-content;
    margin-right: 0; /* Add space between logo and next element */
}

.logo i {
    color: var(--primary-light);
    font-size: 1.8rem;
}

.logo span {
    font-weight: 600;
    opacity: 0.85; /* Daha belirgin yapıldı */
    color: var(--text-main);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px; /* Butonlar arttığı için yatay mesafe daraltıldı */
    justify-content: flex-end;
    padding-left: 0; /* Logo alanını ezmeden esneklik sağlandı */
    flex: 1;
    min-width: 0;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap; /* Metnin içerde iki satıra bölünmesini/kırılmasını kesin olarak engeller */
}

.nav-links a:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 10px; /* Görseldeki geometrik köşe yapısı */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-sm {
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important; /* Küçük butonlarda da geometrik uyum */
    line-height: normal !important;
    height: fit-content !important;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 24px rgba(229, 57, 53, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(229, 57, 53, 0.32);
    transform: translateY(-1px);
    background: var(--secondary);
}

.btn-demo {
    background: linear-gradient(135deg, var(--bg-dark), #2a2a2a);
    border: 1px solid #FFD700;
    color: #FFD700 !important;
    font-weight: 700;
    white-space: nowrap;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-demo:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-blue {
    background: #2563eb;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
    background: #1d4ed8;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    transform: translateY(-1px);
}

.btn-presentation {
    background: rgba(255, 255, 255, 0.07);
    color: white !important;
    border: 1px solid rgba(229, 57, 53, 0.45);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.18);
}

.btn-presentation:hover {
    background: rgba(229, 57, 53, 0.18);
    border-color: rgba(229, 57, 53, 0.75);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 100px;
    gap: 50px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-action-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-bridge-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.04);
    max-width: 420px;
}

.download-bridge-qr {
    border-radius: 12px;
    width: 124px;
    height: 124px;
    background: white;
    padding: 12px;
    flex-shrink: 0;
}

.download-bridge-copy {
    text-align: left;
}

.download-bridge-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.download-bridge-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.download-bridge-url {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.22);
    color: #ffd7d6;
    font-size: 0.8rem;
    font-weight: 700;
}

[data-theme="light"] .download-bridge-url {
    background: rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.18);
    color: var(--primary);
}

/* Pure CSS Abstract Phone Mockup */
/* Premium Featured Slider */
.hero-slider-container {
    flex: 1.5;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    z-index: 5;
    cursor: pointer;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 40px; /* Görseller arası mesafe */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 220px; /* Daha derli toplu bir görünüm için küçültüldü */
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: high-quality;
}

/* Yanlardaki 'Yarım' Görünüm Efektleri */
.slide.prev, .slide.next {
    transform: scale(0.8);
    opacity: 0.3; /* Odak merkezde kalsın diye yanlar biraz daha soluk */
    filter: blur(2px) grayscale(0.2);
    z-index: 1;
}

.slide.active {
    width: 240px;
    height: 480px;
    transform: scale(1.05); /* Çok fazla büyüyüp göze batmaması için scale azaltıldı */
    opacity: 1;
    z-index: 10;
    border: 1px solid var(--primary);
    box-shadow: 0 25px 50px rgba(229, 57, 53, 0.25);
}

/* Orijinal Geçiş Efekti (Slider Geçiş Sırasında) */
.switching .slide.active {
    filter: blur(5px);
    opacity: 0.8;
}

/* Görseli kapatan alanlar (notch/çentik ve overlay) temizlendi */

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.mockup-greeting h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.mockup-greeting span {
    color: var(--primary-light);
}

.mockup-greeting p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mockup-stats {
    display: flex;
    gap: 15px;
}

.stat-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-item {
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 25px 20px; /* Kartlar küçültüldü */
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1.5px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon i {
    font-size: 1.6rem;
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.2rem; /* Başlıklar küçültüldü */
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kartı yan yana zorla */
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.pricing-card {
    padding: 40px 25px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1.5px solid var(--primary); /* Premium Red Highlight */
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
}

.pricing-card.premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.25);
}

.pricing-card.premium:hover {
    box-shadow: 0 0 50px rgba(229, 57, 53, 0.4);
    border: 1px solid var(--primary-light);
}

.premium-badge {
    display: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-header h4 {
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: #ef4444;
}

/* Verification Section */
.verification-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center; /* Butonun yukarıdan aşağıya uzamasını engeller */
    gap: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.verify-input {
    flex: 1;
    padding: 14px 20px; /* Buton yüksekliğiyle daha uyumlu */
    border-radius: 10px; /* Butonlarla aynı geometrik yapı */
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.verify-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.2);
}

.verify-input::placeholder {
    color: var(--text-muted);
}

.verify-btn {
    border-radius: 100px;
    /* Redundant styles removed to ensure .btn-sm takes priority */
}

.verification-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verification-note i {
    color: var(--primary);
}

/* Guide Section */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-step {
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.guide-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.1);
}

.step-num {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.4);
}

.guide-step h4 {
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.guide-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.vt-container {
    margin-top: 20px;
    display: flex;
}

.vt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ade80; /* Safe green */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vt-link:hover {
    background: rgba(74, 222, 128, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.15);
}

.vt-link i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    margin-top: 100px;
    padding: 60px 5% 30px;
    border-radius: 40px 40px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.footer-logo span {
    font-weight: 300;
    opacity: 0.8;
    color: var(--text-main);
}

.footer-logo i { color: var(--primary-light); }

.footer-content p {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-main);
    font-size: 1.8rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
        padding-left: 0;
        padding-right: 0;
        gap: 30px;
    }
    
    .hero-content {
        padding: 0 5%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-slider-container {
        margin-top: 30px;
        height: auto;
        transform: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
        overflow: visible;
    }

    .slide {
        width: 30vw;
        height: 60vw;
        opacity: 0.3;
        margin: 0 -5vw;
        z-index: 1;
        transition: all 0.5s ease;
    }

    .slide.active {
        width: 50vw;
        height: 100vw;
        opacity: 1;
        z-index: 10;
        margin: 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .slider-track {
        gap: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none !important; 
        position: fixed;
        top: 80px; 
        right: 15px; 
        width: 250px !important; 
        height: auto !important; 
        min-height: 520px !important; 
        background: color-mix(in srgb, var(--bg-darker) 94%, transparent) !important; 
        color: var(--text-main) !important;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px); 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px !important; 
        padding: 25px 20px !important;
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1200;
        border-radius: 25px !important; 
    }

    /* MENÜ İÇİ TEMA BUTONU */
    .theme-menu-item {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
        margin-bottom: 5px;
        border-bottom: 1px solid var(--border);
    }

    .theme-menu-item .btn,
    .theme-menu-item button {
        width: 100% !important;
        max-width: 200px !important;
        min-height: 40px;
        color: var(--text-main) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid var(--border) !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
    }

    [data-theme="light"] .theme-menu-item .btn,
    [data-theme="light"] .theme-menu-item button {
        color: var(--primary) !important;
        background: rgba(229, 57, 53, 0.08) !important;
        border-color: rgba(229, 57, 53, 0.18) !important;
    }

    .nav-links.active {
        display: flex !important; /* SADECE AÇIKKEN VAR ET */
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links a.btn {
        width: 100% !important;
        max-width: 200px !important; /* BUTONLAR KÜÇÜLTÜLDÜ */
        text-align: center;
        padding: 10px 0 !important;
        font-size: 0.85rem !important; /* YAZILAR KÜÇÜLTÜLDÜ */
        border-radius: 10px !important;
    }

    [data-theme="light"] .nav-links {
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .theme-toggle-floating {
        top: 22px !important;
        bottom: auto !important;
        right: 80px !important;
        width: 34px;
        height: 34px;
        box-shadow: none;
        border: 1px solid var(--border);
        background: var(--surface);
        z-index: 1000;
    }

    .logo {
        font-size: 1.1rem !important;
        margin-right: 0 !important;
    }
    
    .logo span {
        display: none !important;
    }
    
    .navbar {
        height: 45px !important; 
        padding: 0 15px !important; 
        width: 330px !important; 
        max-width: 90vw !important; /* TAŞMAYI KESİNLİKLE ÖNLER */
        left: 20px !important; 
        right: auto !important; 
        margin: 0 !important; 
        top: 15px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important; 
        z-index: 1100 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .navbar-container {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mobile-menu-btn {
        font-size: 1.3rem !important; /* İKONLAR DAHA DA KÜÇÜLTÜLDÜ */
        padding: 5px;
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 330px !important; 
        max-width: 90vw !important; /* TAŞMAYI ÖNLER */
        padding: 12px 18px !important;
        font-size: 0.95rem !important;
    }

    .hero-action-row {
        width: 100%;
    }

    .download-bridge-card {
        width: 330px;
        max-width: 90vw;
        flex-direction: column;
        align-items: flex-start;
    }

    .download-bridge-qr {
        width: 112px;
        height: 112px;
    }

    .hero-slider-container {
        margin-top: 30px;
        height: auto;
        width: 100%;
        padding: 20px 0;
        overflow: visible !important;
        display: block !important; /* SLIDER GERİ GELDİ */
    }

    .slide {
        width: 45vw;
        height: 90vw;
        margin: 0 -15vw !important;
    }

    .slide.active {
        width: 65vw;
        height: 130vw;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 8% !important; 
    }

    .footer {
        width: 330px !important; 
        max-width: 90vw !important; /* TAŞMAYI ÖNLER */
        margin: 100px auto 40px !important; 
        padding: 40px 20px !important; 
        border-radius: 25px !important; 
    }

    .footer-logo {
        font-size: 1.5rem !important; /* LOGOYU KİBARLAŞTIR */
    }


    /* LİSANS SORGULAMA MOBİL DÜZENLEME */
    .verification-box {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 20px !important;
    }

    .verify-input {
        width: 100% !important;
        text-align: center;
        font-size: 0.8rem !important; /* YAZI KÜÇÜLTÜLDÜ ORAYA SIĞACAK */
        padding: 12px 10px !important;
    }

    .verify-btn {
        width: auto !important;
        min-width: 140px;
        padding: 8px 20px !important; /* BUTON KÜÇÜLTÜLDÜ */
        font-size: 0.8rem !important; /* YAZI KÜÇÜLTÜLDÜ */
        margin: 0 auto;
    }

    /* MENÜ İÇİ TEMA BUTONU - SADECE MOBİLDE GÖRÜNÜR */
    .theme-menu-item {
        width: 100%;
        display: flex !important;
        justify-content: center;
        padding-bottom: 20px;
        margin-bottom: 5px;
        border-bottom: 1px solid var(--border);
    }
}

/* Firebase Verification Result Alert */
.verification-result { margin: 25px auto 0; max-width: 700px; padding: 20px; border-radius: 16px; text-align: left; display: flex; align-items: flex-start; gap: 15px; animation: slideDown 0.4s ease; }
.verification-result.error { background: rgba(229, 57, 53, 0.1); border: 1px solid rgba(229, 57, 53, 0.3); }
.verification-result.success { background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.3); }
.verification-result i { font-size: 2rem; }
.verification-result.error i { color: #E53935; }
.verification-result.success i { color: #4ade80; }
.result-content h4 { font-size: 1.1rem; margin-bottom: 5px; }
.result-content p { color: var(--text-muted); font-size: 0.95rem; }
.device-info { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #aaa; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Modal (Kurumsal Teklif Formu) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--primary);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 1), 0 0 30px rgba(229, 57, 53, 0.15);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px 15px;
        border-radius: 20px;
        max-height: 85vh;
        overflow-y: auto !important;
        width: 95%;
        margin: 0 auto;
    }
    .form-group input, .form-group select, .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    .demo-content {
        padding: 20px;
    }
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-left: 5px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.1);
}

textarea.form-input {
    resize: none;
    height: 100px;
}

.modal-footer {
    margin-top: 10px;
    text-align: center;
}

.btn-block {
    width: 100%;
    padding: 16px;
    justify-content: center;
}

.btn-corporate {
    background: var(--primary);
    color: white !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.demo-modal-content {
    border: 2px solid #2563eb !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 1), 0 0 30px rgba(37, 99, 235, 0.2) !important;
}

.demo-icon-wrapper {
    background: rgba(37, 99, 235, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.demo-icon-wrapper i {
    font-size: 24px;
    color: #2563eb;
}

/* Light Tema Modal Uyarlaması */
[data-theme="light"] .modal-overlay {
    background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .modal-content {
    background: var(--bg-darker);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(229, 57, 53, 0.1);
}

[data-theme="light"] .demo-modal-content {
    border: 2px solid #2563eb !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.15) !important;
}

[data-theme="light"] .form-input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

[data-theme="light"] .form-input:focus {
    background: rgba(0, 0, 0, 0.01);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.15);
}

/* Dark Mode Select Options Fix */
[data-theme="dark"] select.form-input option {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* --- SIKÇA SORULAN SORULAR (FAQ) --- */
.faq-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.faq-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-filter-btn.active {
    background: var(--primary);
    color: #FFFFFF !important;
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 14px;
    overflow: hidden;
}

/* Kategori js animasyon gösterimi için */
.faq-item.filter-hide {
    display: none !important;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    background: rgba(13, 13, 13, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    border-top: none;
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 0 0 14px 14px;
    border: 1px solid var(--glass-border);
    border-top: none;
}

/* ACTIVE STATE ANIMATION */
.faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(229, 57, 53, 0.05);
    border-color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Light Tema Extra Uyumları */
[data-theme="light"] .faq-question {
    background: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .faq-answer-inner {
    background: rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .faq-filter-btn {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    color: #333;
}
[data-theme="light"] .faq-filter-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .faq-filter-btn.active {
    background: var(--primary);
    color: #FFFFFF !important;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.25);
}
