/* ==========================================================================
   Akıllı İcra Premium CSS Design System
   ========================================================================== */

/* Renk Değişkenleri & Tasarım Tokenleri */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.1);
    --secondary: #0f172a; /* Çok koyu lacivert */
    --secondary-light: #1e293b;
    --accent: #8b5cf6; /* Canlı mor */
    --accent-light: rgba(139, 92, 246, 0.1);
    --success: #10b981; /* Canlı yeşil */
    --success-hover: #059669;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --text-dark-muted: #475569;
    --bg-dark: #090d16; /* Çok şık derin gece mavisi */
    --bg-light: #f8fafc;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(15, 23, 42, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlama ve Temel Kurallar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Izgara ve Taşıyıcı */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Badge (Etiket) */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.25);
    margin-bottom: 24px;
}

/* Header Tasarımı */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    padding: 16px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.logo span span {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(0,0,0,0) 100%);
    filter: blur(80px);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-trust i {
    color: var(--primary);
    margin-right: 4px;
}

.hero-trust .divider {
    margin: 0 16px;
    color: rgba(255, 255, 255, 0.1);
}

/* Glassmorphism App Mockup */
.hero-visual {
    perspective: 1000px;
}

.mockup-wrapper {
    transform: rotateY(-10deg) rotateX(10deg);
    transition: var(--transition);
}

.mockup-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.app-mockup {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
    width: 100%;
}

.mockup-header {
    background: rgba(15, 23, 42, 0.6);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ef4444;
}

.mockup-dots span:nth-child(2) { background-color: #f59e0b; }
.mockup-dots span:nth-child(3) { background-color: #10b981; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.mockup-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    height: 320px;
}

.mockup-sidebar {
    background: rgba(15, 23, 42, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
}

.sidebar-item {
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-item.active, .sidebar-item:hover {
    color: var(--primary);
}

.mockup-main {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.stat-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--success);
}

.mockup-chart-placeholder {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chart-legend .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}

.dot.azul { background-color: var(--primary); }
.dot.lila { background-color: var(--accent); }

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 90px;
    padding-top: 10px;
}

.bar {
    width: 12%;
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

/* Bölüm Başlıkları */
.section-header {
    margin-bottom: 60px;
}

.sub-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Özellikler Kartları */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.feature-icon.bg-blue { background-color: var(--primary-light); color: #3b82f6; }
.feature-icon.bg-purple { background-color: var(--accent-light); color: #a78bfa; }
.feature-icon.bg-green { background-color: rgba(16, 185, 129, 0.1); color: #34d399; }
.feature-icon.bg-orange { background-color: rgba(245, 158, 11, 0.1); color: #fbbf24; }
.feature-icon.bg-indigo { background-color: rgba(99, 102, 241, 0.1); color: #818cf8; }
.feature-icon.bg-red { background-color: rgba(239, 68, 68, 0.1); color: #f87171; }

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Nasıl Çalışır / Adımlar */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Fiyatlandırma Kartları */
.pricing {
    background-color: var(--secondary);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: scale(1.02);
}

.pricing-card.popular {
    background: #090d16;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    padding: 50px 40px;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    font-family: var(--font-heading);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

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

.pricing-features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--success);
}

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

.pricing-features li.disabled i {
    color: var(--danger);
}

/* Yorumlar (Testimonials) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stars {
    color: var(--warning);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-details h4 {
    font-size: 1rem;
}

.user-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* SSS Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Açık Durum Sınıfı (JS ile eklenecek) */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* İletişim Bölümü */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-detail-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    background-color: rgba(9, 13, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

/* Yüzen WhatsApp Düğmesi */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Footer */
.footer {
    background-color: #060910;
    border-top: 1px solid var(--border-dark);
    padding: 80px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

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

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

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

.nav-mobile-actions {
    display: none;
}

/* ==========================================================================
   Responsive Tasarım Medya Sorguları (Mobil Öncelikli Göz Önünde Tutularak)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .pricing-card.popular {
        padding: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: #090d16;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
        border-top: 1px solid var(--border-dark);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-mobile-actions {
        display: flex !important;
    }
}

/* ==========================================================================
   Login & Dashboard Centered Panel (Tam Ortalanmış Premium Panel) Stilleri
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 22, 0.65);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center; /* Tam ortala */
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 480px; /* Standart genişlik (Login) */
    max-height: 90vh;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    position: relative;
    transform: scale(0.9) translateY(20px); /* Büyüyerek gelme animasyonu */
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Dashboard için devasa geniş ve şık centered portal ekranı */
#dashboardModal .modal-content {
    max-width: 1200px;
    width: 95%;
    height: 90vh;
    border-radius: var(--radius-lg);
    overflow: hidden; /* İçerik taşmalarını önlemek için */
    padding: 30px;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 100;
}

.modal-close:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

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

.modal-logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.4));
}

.modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 800;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.modal-divider {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.modal-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.modal-divider span {
    background-color: #0f172a;
    padding: 0 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    font-weight: 700;
}

/* ==========================================================================
   Resmi T.C. İcra Müdürlüğü Evrak Taslağı Görünümü (Times New Roman) Stilleri
   ========================================================================== */
.legal-document-sheet {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Times New Roman', Times, serif;
    font-size: 13.5px;
    line-height: 1.5;
    padding: 30px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
    max-height: 380px;
    overflow-y: auto;
    text-align: left;
}

.legal-document-sheet h3 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 14.5px;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 0.5px;
}

.legal-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    margin-bottom: 8px;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 4px;
}

.legal-row-label {
    font-weight: bold;
    color: #111827;
}

.legal-row-content {
    white-space: pre-line;
    color: #374151;
}

.legal-signature-area {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.legal-seal {
    border: 2px double #2563eb;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50%;
    transform: rotate(-10deg);
    display: inline-block;
    opacity: 0.85;
}

.legal-esign {
    color: #10b981;
    font-size: 0.7rem;
    font-style: italic;
    border: 1px solid #10b981;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.05);
}

/* ==========================================================================
   Dashboard Inner Navigation Button Styles
   ========================================================================== */
.dash-nav-btn {
    transition: all 0.2s ease !important;
}
.dash-nav-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}
.dash-nav-btn.active {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ==========================================================================
   Dashboard Sidebar Expanding Styles (Hover Expand)
   ========================================================================== */
#dashSidebar:hover {
    width: 240px !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.25);
}

#dashSidebar:hover .logo-text,
#dashSidebar:hover .nav-label,
#dashSidebar:hover .profile-detail {
    opacity: 1 !important;
}

/* ==========================================================================
   Yapay Zeka Hukuk Asistanı Premium Stilleri
   ========================================================================== */

/* Switch Slider */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .3s;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}
.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .3s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--accent);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}
input:checked + .slider:before {
    transform: translateX(14px);
    background-color: #fff;
}

/* Chat bubble styling */
.ai-msg {
    animation: fadeIn 0.3s ease-out;
}
.ai-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.ai-msg.user > div:last-child {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary)) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px 12px 0 12px !important;
    color: #fff;
}

.ai-template-btn:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    color: #fff !important;
}

/* Precedent Result Styling */
.precedent-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 12px;
    transition: var(--transition);
}
.precedent-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   İnteraktif Fiyatlandırma Hesaplayıcısı Tasarımı
   ========================================================================== */

.pricing-calculator-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
    text-align: left;
}

@media (max-width: 992px) {
    .pricing-calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.calculator-options {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.calculator-group {
    width: 100%;
}

.calculator-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.calculator-subtitle i {
    color: var(--primary);
}

.calculator-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.calculator-default-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 20px;
}

@media (max-width: 600px) {
    .calculator-default-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.calculator-default-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-default-list li i {
    color: var(--success);
    font-size: 1rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.addon-card {
    position: relative;
    display: flex;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.addon-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.addon-checkbox {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.addon-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.addon-icon {
    color: var(--text-muted);
    font-size: 1.15rem;
    transition: var(--transition);
}

.addon-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    padding-right: 25px; /* Checkbox'ın altına gelmesin */
}

.addon-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.addon-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
}

/* Seçili Kart Efektleri */
.addon-card-active,
.addon-card:has(.addon-checkbox:checked) {
    background: rgba(37, 99, 235, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.addon-card-active .addon-icon,
.addon-card:has(.addon-checkbox:checked) .addon-icon {
    color: var(--primary);
}

/* AI Eklentisi Özel Stilleri */
.ai-addon-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px dashed rgba(139, 92, 246, 0.3);
}

.ai-addon-card:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.ai-addon-card .addon-checkbox {
    accent-color: var(--accent);
}

.ai-addon-card:has(.addon-checkbox:checked) {
    background: rgba(139, 92, 246, 0.12) !important;
    border: 1px solid var(--accent) !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.25) !important;
}

.ai-addon-card:has(.addon-checkbox:checked) .addon-icon {
    color: var(--accent);
}

.ai-glowing-icon {
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.ai-badge {
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-left: auto;
    margin-right: 28px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.5px;
}

/* Fiyat & Özet Paneli Stilleri */
.calculator-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #090d16;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-glow);
}

.summary-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 15px 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-main);
}

.summary-item .item-name {
    color: var(--text-muted);
}

.summary-item .item-price {
    font-weight: 600;
    color: var(--white);
}

.selected-addons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.selected-addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px 12px;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.selected-addon-item i {
    margin-right: 6px;
}

.selected-addon-item .addon-item-price {
    font-weight: 700;
    color: var(--success);
}

.total-price-section {
    text-align: center;
    margin: 25px 0;
}

.total-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.total-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    margin-top: 5px;
}

.total-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px;
}

.demo-action-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-helper-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-helper-text i {
    font-size: 0.85rem;
}

/* Fiyatlandırma Paket Sekmeleri */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-tabs-container {
        flex-direction: column;
        gap: 10px;
    }
}

.pricing-tab-btn {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-tab-btn:hover {
    background: rgba(30, 41, 59, 0.7);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

#tabOnlyAiBtn.active {
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Sadece AI Özellik Listesi Stilleri */
.ai-feature-row {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 16px;
    transition: var(--transition);
    text-align: left;
}

.ai-feature-row:hover {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.15);
}

.ai-feature-icon {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.ai-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-feature-text strong {
    font-size: 0.9rem;
    color: #fff;
}

.ai-feature-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Kilitli Menü Butonları */
.locked-btn {
    pointer-events: auto !important; /* Click handler yakalanabilmesi için */
    cursor: not-allowed !important;
}

.locked-btn:hover {
    background: transparent !important;
    color: var(--text-muted) !important;
}

/* Sidebar Logout Hover kuralları */
#dashSidebar:hover #sidebarLogoutBtn {
    opacity: 0.7 !important;
}

#dashSidebar:hover #sidebarLogoutBtn:hover {
    opacity: 1 !important;
    color: var(--danger) !important;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}


