/* ===== VARIABLES ===== */
:root {
    --deep-navy: #000926;
    --navy-light: #0a1628;
    --navy-medium: #152238;
    --sapphire: #0F52BA;
    --sapphire-light: #1a6beb;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --purple: #8B5CF6;
    --pink: #EC4899;
    --orange: #F97316;
    --teal: #14B8A6;
    
    --gradient-primary: linear-gradient(135deg, var(--sapphire) 0%, var(--purple) 100%);
    --gradient-navy: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-medium) 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--deep-navy);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 500px;
}

.btn:active {
    transform: translateZ(-10px) scale(0.95);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(15, 82, 186, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 82, 186, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--sapphire);
    color: var(--sapphire);
}

/* Hero içindeki outline buton beyaz olsun */
.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 9, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(15, 82, 186, 0.5);
    transition: var(--transition);
}

.logo:hover .logo-text {
    text-shadow: 0 0 30px rgba(15, 82, 186, 0.8);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-navy);
    padding: 140px 0 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 82, 186, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}


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


.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 82, 186, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

/* Developer Tag */
.developer-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.dev-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.dev-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dev-text strong {
    color: var(--white);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gradient Text Animation */
.gradient-text.animated {
    background: linear-gradient(90deg, #0F52BA, #8B5CF6, #EC4899, #0F52BA);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(15, 82, 186, 0.2);
    border: 1px solid rgba(15, 82, 186, 0.3);
    border-radius: 50px;
    color: var(--sapphire-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite, fadeInUp 0.8s ease-out;
    transform-style: preserve-3d;
}

.hero-badge:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 10px 40px rgba(15, 82, 186, 0.4);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 32px;
}

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

.hero-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px 32px;
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(15, 82, 186, 0.5);
    box-shadow: 0 20px 40px rgba(15, 82, 186, 0.3);
}

.stat-icon {
    display: block;
    font-size: 24px;
    color: var(--sapphire-light);
    margin-bottom: 12px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 30px rgba(15, 82, 186, 0.5);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--navy-medium);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: dashboardFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.dashboard-preview:hover {
    transform: scale(1.02) rotateY(-5deg);
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.preview-dots span:first-child { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:last-child { background: #10B981; }

.preview-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.preview-content {
    display: flex;
    min-height: 300px;
}

.preview-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.sidebar-item.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.preview-main {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.preview-card {
    padding: 20px;
    border-radius: var(--border-radius);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.preview-card i {
    font-size: 24px;
    opacity: 0.9;
}

.preview-card span {
    font-size: 1.75rem;
    font-weight: 700;
}

.preview-card small {
    font-size: 12px;
    opacity: 0.7;
}

.card-blue { 
    background: linear-gradient(135deg, #0F52BA, #1a6beb); 
    box-shadow: 0 8px 25px rgba(15, 82, 186, 0.4);
    animation: cardPulse 3s ease-in-out infinite;
}
.card-green { 
    background: linear-gradient(135deg, #10B981, #059669); 
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: cardPulse 3s ease-in-out infinite 0.5s;
}
.card-purple { 
    background: linear-gradient(135deg, #8B5CF6, #7C3AED); 
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    animation: cardPulse 3s ease-in-out infinite 1s;
}
.card-orange { 
    background: linear-gradient(135deg, #F97316, #EA580C); 
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    animation: cardPulse 3s ease-in-out infinite 1.5s;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(15, 82, 186, 0.1);
    color: var(--sapphire);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-top: 16px;
}

/* ===== FEATURES ===== */
.features {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(15, 82, 186, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.made-by-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--deep-navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.made-by-tag i {
    color: var(--sapphire-light);
}

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

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15, 82, 186, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    box-shadow: 0 25px 50px rgba(15, 82, 186, 0.15);
    border-color: var(--sapphire);
}

/* 3D Transform is handled by JS */

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 32px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: inherit;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.icon-blue { 
    background: linear-gradient(135deg, rgba(15, 82, 186, 0.2), rgba(15, 82, 186, 0.1)); 
    color: var(--sapphire); 
    box-shadow: 0 10px 30px rgba(15, 82, 186, 0.2);
}
.icon-green { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1)); 
    color: var(--success); 
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}
.icon-purple { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1)); 
    color: var(--purple); 
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}
.icon-orange { 
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1)); 
    color: var(--orange); 
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}
.icon-pink { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1)); 
    color: var(--pink); 
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}
.icon-teal { 
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1)); 
    color: var(--teal); 
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 15px;
}

/* ===== MODULES ===== */
.modules {
    background: var(--gray-100);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15, 82, 186, 0.05), transparent);
    transition: left 0.6s ease;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 82, 186, 0.15);
    border-color: var(--sapphire);
}

.module-card:hover::before {
    left: 100%;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.module-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(15, 82, 186, 0.4);
    transition: all 0.4s ease;
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(15, 82, 186, 0.5);
}

.module-header h3 {
    font-size: 1.1rem;
}

.module-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.module-features li i {
    color: var(--success);
    font-size: 12px;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--white);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-text .section-badge {
    margin-bottom: 16px;
}

.why-us-text h2 {
    margin-bottom: 40px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 82, 186, 0.1);
    color: var(--sapphire);
    border-radius: 14px;
    font-size: 22px;
}

.why-content h4 {
    margin-bottom: 6px;
}

.why-content p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Image Card */
.image-card {
    position: relative;
    height: 500px;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-navy);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--success);
}

.badge-1 { top: 20px; left: 20px; animation-delay: 0s; }
.badge-2 { top: 50%; right: 0; animation-delay: 0.5s; }
.badge-3 { bottom: 80px; left: 40px; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: var(--shadow-2xl);
}

.main-visual i {
    font-size: 64px;
    color: var(--white);
    opacity: 0.9;
}

.visual-stats {
    display: flex;
    gap: 24px;
}

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

.v-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.v-number:last-child {
    color: var(--sapphire-light);
}

.v-stat:last-child .v-number {
    color: var(--sapphire-light);
}

.v-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== AI SUPPORT SECTION ===== */
.ai-support {
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
}

.ai-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 82, 186, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.ai-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-text .section-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
    margin-bottom: 20px;
}

.ai-text .section-badge i {
    margin-right: 6px;
}

.ai-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.ai-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-feature {
    display: flex;
    gap: 20px;
}

.ai-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
    border-radius: 14px;
    font-size: 22px;
}

.ai-feature-content h4 {
    color: var(--white);
    margin-bottom: 6px;
}

.ai-feature-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* AI Visual Card */
.ai-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ai-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    background: rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-card-header i {
    color: #A78BFA;
    font-size: 20px;
}

.ai-card-header span {
    color: var(--white);
    font-weight: 600;
}

.ai-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-insight {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.ai-insight:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.insight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.insight-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #FBBF24;
}

.insight-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.insight-icon.info {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.insight-text strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}

.insight-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* ===== COMPARISON SECTION ===== */
.comparison {
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--deep-navy);
}

.comparison-table th.competitor {
    color: var(--gray-500);
}

.comparison-table th.verocent {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table td {
    font-size: 15px;
}

.comparison-table td i {
    margin-right: 8px;
}

.comparison-table td.competitor {
    color: var(--gray-500);
}

.comparison-table td.competitor i.fa-times {
    color: var(--error);
}

.comparison-table td.competitor i.fa-minus {
    color: var(--warning);
}

.comparison-table td.verocent {
    background: rgba(15, 82, 186, 0.05);
    color: var(--deep-navy);
    font-weight: 500;
}

.comparison-table td.verocent i.fa-check {
    color: var(--success);
}

.comparison-table tr:hover td {
    background: var(--gray-100);
}

.comparison-table tr:hover td.verocent {
    background: rgba(15, 82, 186, 0.1);
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    background: var(--gray-100);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.support-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.support-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 28px;
    margin: 0 auto 20px;
}

.support-card h3 {
    margin-bottom: 12px;
}

.support-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 16px;
}

.support-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(15, 82, 186, 0.1);
    color: var(--sapphire);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--white);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.toggle-label {
    font-weight: 500;
    color: var(--gray-500);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--deep-navy);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: 50px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.discount-badge {
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 82, 186, 0.2);
}

.pricing-card.featured {
    background: var(--gradient-navy);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .currency,
.pricing-card.featured .amount,
.pricing-card.featured .period {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

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

.pricing-card.featured .pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

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

.pricing-features li.disabled {
    color: var(--gray-400);
}

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

/* Coming Soon Button */
.coming-soon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gray-100);
    color: var(--gray-500);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
}

.coming-soon-btn i {
    font-size: 16px;
}

.coming-soon-btn.featured-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.plan-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 16px;
}

.pricing-card.featured .plan-desc {
    color: rgba(255, 255, 255, 0.7);
}

.yearly-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
}

.pricing-card.featured .yearly-note {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-notes {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(15, 82, 186, 0.1);
    border-radius: var(--border-radius);
    color: var(--sapphire);
}

.pricing-note.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.pricing-note.coming {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.pricing-note i {
    font-size: 20px;
}

.pricing-note p {
    font-size: 14px;
    margin: 0;
}

/* Feature Comparison Table */
.feature-comparison {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.feature-comparison h3 {
    text-align: center;
    margin-bottom: 40px;
}

.plan-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.plan-comparison-table th,
.plan-comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.plan-comparison-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--deep-navy);
}

.plan-comparison-table th:first-child {
    text-align: left;
}

.plan-comparison-table th.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.plan-comparison-table td:first-child {
    text-align: left;
    color: var(--gray-600);
}

.plan-comparison-table td.highlight {
    background: rgba(15, 82, 186, 0.05);
}

.plan-comparison-table tr.category td {
    background: var(--deep-navy);
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 12px 20px;
}

.plan-comparison-table tr.category td i {
    margin-right: 10px;
}

.plan-comparison-table .fa-check {
    color: var(--success);
}

.plan-comparison-table .fa-times {
    color: var(--gray-400);
}

.plan-comparison-table tr:hover td:not(:first-child) {
    background: var(--gray-100);
}

.plan-comparison-table tr:hover td.highlight {
    background: rgba(15, 82, 186, 0.1);
}

/* ===== CTA ===== */
.cta {
    background: var(--gradient-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 82, 186, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 40%);
    animation: ctaBgRotate 20s linear infinite;
}

@keyframes ctaBgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.launch-countdown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    animation: pulse 2s infinite;
}

.launch-countdown i {
    color: #FBBF24;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 82, 186, 0.1);
    color: var(--sapphire);
    border-radius: 14px;
    font-size: 20px;
}

.contact-text h4 {
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--gray-500);
}

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

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 12px;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-form {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--border-radius-xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sapphire);
    box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep-navy);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0;
    font-size: 14px;
}

.developer-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-badge span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.developer-badge strong {
    color: var(--white);
    font-size: 16px;
    margin-top: 4px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.developer-credit i {
    color: var(--sapphire-light);
}

.developer-credit strong {
    color: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-visual {
        order: -1;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-us-image {
        order: -1;
    }
    
    .image-card {
        height: 400px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-navy);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
    }
    
    .pricing-notes {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pricing-note {
        justify-content: center;
    }
    
    .plan-comparison-table {
        font-size: 12px;
    }
    
    .plan-comparison-table th,
    .plan-comparison-table td {
        padding: 10px 8px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature-card,
    .module-card,
    .pricing-card {
        padding: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .image-card {
        height: 300px;
    }
    
    .main-visual {
        width: 200px;
        height: 200px;
    }
    
    .main-visual i {
        font-size: 40px;
    }
    
    .floating-badge {
        padding: 8px 14px;
        font-size: 12px;
    }
}
