﻿/* =============================================
   AppAllSys - Ultra Premium Theme CSS
   Tüm stil tanımlamaları bu dosyada
   ============================================= */

/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --light: #ffffff;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== ANIMATED BACKGROUND ========== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

    .bg-animation::before,
    .bg-animation::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(100px);
        animation: float 20s ease-in-out infinite;
    }

    .bg-animation::before {
        background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        animation-delay: 0s;
    }

    .bg-animation::after {
        background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
        bottom: -200px;
        right: -200px;
        animation-delay: 10s;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .navbar.scrolled {
        background: rgba(10, 10, 15, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 0;
    }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

    .logo-icon::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
        border-radius: 14px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.logo:hover .logo-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

    .nav-menu a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover {
            color: var(--text-primary);
        }

            .nav-menu a:hover::after {
                width: 100%;
            }

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    border: none;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    }

.btn span {
    position: relative;
    z-index: 1;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    position: relative;
    z-index: 1;
}

    .hero .container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 6rem;
        align-items: center;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

    .hero-badge i {
        color: #6366f1;
    }

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-accent {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.btn-hero {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========== 3D DASHBOARD PREVIEW ========== */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.dashboard-preview {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .dashboard-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .dashboard-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
        border-radius: 26px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .dashboard-card:hover::before {
        opacity: 0.5;
        animation: rotate 3s linear infinite;
    }

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

    .dashboard-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

        .dashboard-dots span:nth-child(1) {
            background: #ef4444;
        }

        .dashboard-dots span:nth-child(2) {
            background: #f59e0b;
        }

        .dashboard-dots span:nth-child(3) {
            background: #10b981;
        }

.dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .dashboard-metric:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
    }

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.metric-info {
    flex: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-trend {
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dashboard-chart {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    .dashboard-chart svg {
        width: 100%;
        height: auto;
    }

.dashboard-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-element {
    position: absolute;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 1rem;
    font-size: 1.5rem;
    color: #6366f1;
    animation: float-element 4s ease-in-out infinite;
}

    .floating-element i {
        display: block;
    }

.floating-element-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* ========== MODULES SHOWCASE ========== */
.modules {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: #8b5cf6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.module-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(26, 26, 46, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .module-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--card-color, #6366f1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .module-card:hover::before {
        transform: translateX(100%);
    }

    .module-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

.module-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--card-color, #6366f1) 0%, var(--card-color-dark, #4f46e5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(var(--card-color-rgb, 99, 102, 241), 0.4);
    transition: all 0.4s ease;
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(var(--card-color-rgb, 99, 102, 241), 0.6);
}

.module-icon i {
    font-size: 2rem;
    color: white;
}

.module-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.module-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.module-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.module-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Color variations */
.module-card[data-color="randevu"] {
    --card-color: #f59e0b;
    --card-color-dark: #d97706;
    --card-color-rgb: 245, 158, 11;
}

.module-card[data-color="menu"] {
    --card-color: #10b981;
    --card-color-dark: #059669;
    --card-color-rgb: 16, 185, 129;
}

.module-card[data-color="personel"] {
    --card-color: #6366f1;
    --card-color-dark: #4f46e5;
    --card-color-rgb: 99, 102, 241;
}

.module-card[data-color="musteri"] {
    --card-color: #8b5cf6;
    --card-color-dark: #7c3aed;
    --card-color-rgb: 139, 92, 246;
}

.module-card[data-color="blog"] {
    --card-color: #ec4899;
    --card-color-dark: #db2777;
    --card-color-rgb: 236, 72, 153;
}

.module-card[data-color="stok"] {
    --card-color: #14b8a6;
    --card-color-dark: #0d9488;
    --card-color-rgb: 20, 184, 166;
}

/* ========== PRICING SECTION ========== */
/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.3) 100%);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.pricing-tab {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pricing-tab:hover {
        background: rgba(26, 26, 46, 0.8);
        border-color: rgba(99, 102, 241, 0.3);
        transform: translateY(-2px);
    }

    .pricing-tab.active {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        border-color: transparent;
        color: white;
    }

    .pricing-tab i {
        font-size: 1.2rem;
    }

.pricing-content {
    position: relative;
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

    .pricing-grid.active {
        display: grid;
    }

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .pricing-card.featured {
        border-color: rgba(99, 102, 241, 0.3);
        transform: scale(1.05);
    }

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-price-group {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price-old {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

    .pricing-features li {
        padding: 0.75rem 0;
        color: var(--text-secondary);
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

        .pricing-features li.no-features {
            color: #6b7280;
            font-style: italic;
            justify-content: center;
        }

    .pricing-features i {
        color: #10b981;
        font-size: 1.1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .pricing-features li.no-features i {
        color: #6b7280;
    }

.pricing-gifts {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gifts-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

    .gifts-title i {
        color: #10b981;
        font-size: 1.1rem;
    }

.gifts-list {
    list-style: none;
}

    .gifts-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .gifts-list i {
        color: #10b981;
        font-size: 1rem;
    }

.pricing-footer {
    padding: 0 2rem 2rem;
}

.pricing-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

    .pricing-empty i {
        font-size: 4rem;
        color: rgba(255, 255, 255, 0.1);
        margin-bottom: 1.5rem;
    }

    .pricing-empty p {
        font-size: 1.1rem;
    }

/* ========== CTA SECTION ========== */
/* ========== CTA SECTION ========== */
.cta-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
        opacity: 0.3;
    }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legacy support - eski .cta classı */
.cta {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

    .cta h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .cta p {
        font-size: 1.35rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

.btn-cta {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-white {
    background: white;
    color: #6366f1;
}

    .btn-white:hover {
        background: #f8fafc;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    }

/* ========== FOOTER ========== */
.footer {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

    .footer-brand .logo {
        margin-bottom: 1.5rem;
    }

    .footer-brand p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-link:hover {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        color: white;
        transform: translateY(-3px);
    }

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--text-primary);
            transform: translateX(5px);
        }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    /* Mobil navbar buttonları */
    .nav-actions {
        flex-direction: row;
        gap: 0.5rem;
        width: auto;
    }

        .nav-actions .btn {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
        }

            .nav-actions .btn i {
                font-size: 0.9rem;
            }

            .nav-actions .btn span {
                display: inline;
            }

    .hero {
        padding: 8rem 0 4rem;
    }

        .hero h1 {
            font-size: 2.75rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .modules-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-title,
    .cta h2 {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.15rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-card {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
}

/* Ekstra küçük ekranlar için */
@media (max-width: 480px) {
    .nav-actions .btn span {
        display: none;
    }

    .nav-actions .btn {
        padding: 0.6rem;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

        .nav-actions .btn i {
            margin: 0;
        }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item-modern {
    background: white;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .accordion-item-modern:hover {
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    }

.accordion-header-modern {
    margin: 0;
}

.accordion-button-modern {
    width: 100%;
    padding: 28px 32px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f0f23;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .accordion-button-modern:not(.collapsed) {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        color: #6366f1;
    }

.accordion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-button-modern:not(.collapsed) .accordion-icon {
    transform: scale(1.1);
}

.accordion-button-modern span:not(.accordion-icon) {
    flex: 1;
}

.accordion-arrow {
    color: #6366f1;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-button-modern:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body-modern {
    padding: 0 32px 32px 100px;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.faq-cta {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 24px;
    text-align: center;
}

    .faq-cta p {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 24px;
    }

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: #6366f1;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

    .btn-faq-contact:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        color: #6366f1;
    }

/* ========== MODULE CARD COMING SOON ========== */
.module-coming-soon {
    position: relative;
    opacity: 0.9;
}

.module-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.module-coming-soon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.module-coming-soon .module-link {
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 100%);
    color: #4b5563;
}

.module-coming-soon:hover .module-link {
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 100%);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .accordion-button-modern {
        padding: 20px;
        font-size: 1rem;
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .accordion-body-modern {
        padding: 0 20px 24px 72px;
    }

    .faq-cta {
        padding: 32px 24px;
    }

        .faq-cta p {
            font-size: 1.25rem;
        }
}

@media (max-width: 576px) {
    .accordion-button-modern {
        flex-wrap: wrap;
        gap: 12px;
    }

    .accordion-body-modern {
        padding: 0 20px 24px 20px;
    }
}
/* ========================================== */
/* SSS SECTION STYLES */
/* Bu CSS kodlarını mevcut <style> tagının İÇİNE ekleyin */
/* ========================================== */

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

    .faq-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .faq-section .section-title {
        color: white;
    }

    .faq-section .section-subtitle {
        color: rgba(255, 255, 255, 0.8);
    }

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .faq-item:hover {
        border-color: rgba(99, 102, 241, 0.5);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
        transform: translateY(-2px);
    }

.faq-header {
    margin: 0;
}

.faq-button {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .faq-button:not(.collapsed) {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    }

    .faq-button:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    }

.faq-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.faq-button:not(.collapsed) .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.5);
}

.faq-text {
    flex: 1;
}

.faq-arrow {
    color: #6366f1;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-button:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.faq-body {
    padding: 0 28px 28px 96px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

    .faq-body strong {
        color: white;
    }

.faq-cta {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

    .faq-cta p {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 24px;
    }

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: #6366f1;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

    .btn-faq-contact:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.25);
        color: #6366f1;
    }

/* ========================================== */
/* GÜNCELLENMIŞ MODÜL KARTLARI */
/* ========================================== */

/* Module Coming Soon Badge */
.module-coming-soon {
    position: relative;
    opacity: 0.95;
}

.module-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 1;
}

.module-coming-soon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.6) 0%, rgba(15, 15, 35, 0.4) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.module-coming-soon .module-icon,
.module-coming-soon .module-title,
.module-coming-soon .module-description,
.module-coming-soon .module-features {
    position: relative;
    z-index: 1;
}

.module-coming-soon .module-link {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.module-coming-soon:hover .module-link {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
}

/* ========================================== */
/* RESPONSIVE */
/* ========================================== */

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-button {
        padding: 20px;
        font-size: 1rem;
        gap: 12px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-body {
        padding: 0 20px 24px 72px;
        font-size: 0.938rem;
    }

    .faq-cta {
        padding: 32px 24px;
    }

        .faq-cta p {
            font-size: 1.25rem;
        }

    .btn-faq-contact {
        font-size: 1rem;
        padding: 14px 32px;
    }
}

@media (max-width: 576px) {
    .faq-button {
        flex-wrap: wrap;
    }

    .faq-body {
        padding: 0 20px 20px 20px;
    }

    .faq-text {
        font-size: 0.938rem;
    }
}