/* ==========================================================================
   YONİX PREMIUM DESIGN SYSTEM & STYLES
   ========================================================================== */

/* --- CSS Reset & Variables --- */
:root {
    /* Colors (Cyberpunk Default) */
    --bg-dark: #07070d;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(124, 58, 237, 0.3);
    
    --color-primary: #7c3aed;      /* Electric Violet */
    --color-secondary: #00f0ff;    /* Neon Cyan */
    --color-accent: #ff007f;       /* Neon Pink/Magenta */
    --color-green: #10b981;        /* Emerald Green */
    
    --text-main: #f3f4f6;          /* Off-white */
    --text-muted: #9ca3af;         /* Muted grey */
    --text-dark: #1f2937;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), #4f46e5);
    --gradient-cyan-purple: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    --gradient-pink-orange: linear-gradient(135deg, var(--color-accent), #f97316);
    --gradient-dark: linear-gradient(180deg, rgba(7, 7, 13, 0.8) 0%, #07070d 100%);
    --gradient-text: linear-gradient(90deg, #00f0ff 0%, #7c3aed 50%, #ff007f 100%);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-width: 1240px;
    --header-height: 80px;
}

/* --- Theme Classes --- */

/* 1. Cyberpunk Theme */
body.theme-cyberpunk {
    --bg-dark: #07070d;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(124, 58, 237, 0.3);
    --color-primary: #7c3aed;
    --color-secondary: #00f0ff;
    --color-accent: #ff007f;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --gradient-primary: linear-gradient(135deg, #7c3aed, #4f46e5);
    --gradient-cyan-purple: linear-gradient(135deg, #00f0ff, #7c3aed);
    --gradient-pink-orange: linear-gradient(135deg, #ff007f, #f97316);
    --gradient-text: linear-gradient(90deg, #00f0ff 0%, #7c3aed 50%, #ff007f 100%);
}

/* 2. Obsidian Gold Theme */
body.theme-obsidian-gold {
    --bg-dark: #090807;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(212, 175, 55, 0.04);
    --border-light: rgba(212, 175, 55, 0.12);
    --border-glow: rgba(212, 175, 55, 0.3);
    --color-primary: #c5a059;
    --color-secondary: #d4af37;
    --color-accent: #f3e5ab;
    --color-green: #10b981;
    --text-main: #fcfaf2;
    --text-muted: #a39e93;
    --gradient-primary: linear-gradient(135deg, #c5a059, #8c6d31);
    --gradient-cyan-purple: linear-gradient(135deg, #d4af37, #c5a059);
    --gradient-pink-orange: linear-gradient(135deg, #f3e5ab, #8c6d31);
    --gradient-text: linear-gradient(90deg, #d4af37 0%, #f3e5ab 50%, #c5a059 100%);
}

/* 3. Future Light Theme */
body.theme-future-light {
    --bg-dark: #f0f2f5;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border-light: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(37, 99, 235, 0.2);
    --color-primary: #2563eb;
    --color-secondary: #0ea5e9;
    --color-accent: #0d9488;
    --color-green: #059669;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #2563eb, #3b82f6);
    --gradient-cyan-purple: linear-gradient(135deg, #0ea5e9, #2563eb);
    --gradient-pink-orange: linear-gradient(135deg, #0d9488, #0ea5e9);
    --gradient-text: linear-gradient(90deg, #2563eb 0%, #0ea5e9 50%, #0d9488 100%);
}

/* Future Light Overrides */
body.theme-future-light .bg-glow-1 { background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(255,255,255,0) 70%); }
body.theme-future-light .bg-glow-2 { background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, rgba(255,255,255,0) 70%); }
body.theme-future-light .bg-glow-3 { background: radial-gradient(circle, rgba(13,148,136,0.1) 0%, rgba(255,255,255,0) 70%); }
body.theme-future-light .logo-text { background: linear-gradient(135deg, #0f172a 40%, #475569); -webkit-background-clip: text; }
body.theme-future-light .header { background: rgba(240, 242, 245, 0.7); border-bottom: 1px solid rgba(15, 23, 42, 0.05); }
body.theme-future-light .header.scrolled { background: rgba(240, 242, 245, 0.85); }
body.theme-future-light .visual-card { border-color: rgba(15, 23, 42, 0.08); background: rgba(255,255,255,0.7); }
body.theme-future-light .card-header { background: rgba(15, 23, 42, 0.02); border-bottom: 1px solid rgba(15, 23, 42, 0.05); }
body.theme-future-light .code-editor { color: #1e293b; }
body.theme-future-light .code-comment { color: #94a3b8; }
body.theme-future-light .code-keyword { color: #d97706; }
body.theme-future-light .code-variable { color: #0284c7; }
body.theme-future-light .code-string { color: #16a34a; }
body.theme-future-light .code-class { color: #ea580c; }
body.theme-future-light .code-method { color: #7c3aed; }
body.theme-future-light .editor-header .tab.active { background: rgba(15,23,42,0.03); }
body.theme-future-light .hero-grid-pattern { opacity: 0.3; }
body.theme-future-light .footer { background: #e2e8f0; border-top: 1px solid rgba(15, 23, 42, 0.05); }
body.theme-future-light .footer-bottom { border-top: 1px solid rgba(15, 23, 42, 0.05); }
body.theme-future-light .footer-links h4 { color: #0f172a; }
body.theme-future-light .footer-links a { color: #475569; }
body.theme-future-light .footer-desc { color: #475569; }
body.theme-future-light .newsletter-form input { background: rgba(255,255,255,0.8); border: 1px solid rgba(15, 23, 42, 0.1); color: #1f2937; }
body.theme-future-light .custom-slider { background: rgba(15, 23, 42, 0.06); }
body.theme-future-light .custom-checkbox { background: rgba(255,255,255,0.8); border-color: rgba(15, 23, 42, 0.1); }
body.theme-future-light .option-card { background: rgba(255,255,255,0.4); }
body.theme-future-light .estimator-result-panel { background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(14, 165, 233, 0.01) 100%); border-color: rgba(15, 23, 42, 0.08); }
body.theme-future-light .price-display #calculated-price { color: #0f172a; }
body.theme-future-light .faq-question { color: #1e293b; }
body.theme-future-light .detail-value { color: #1e293b; }
body.theme-future-light .tech-badge { background: rgba(37, 99, 235, 0.05); border-color: rgba(37, 99, 235, 0.15); color: #2563eb; }
body.theme-future-light .mobile-menu { background: rgba(240, 242, 245, 0.95); border-left: 1px solid rgba(15, 23, 42, 0.05); }
body.theme-future-light .form-success-overlay { background: rgba(240, 242, 245, 0.95); }
body.theme-future-light .form-group label { color: #1e293b; }
body.theme-future-light .form-group input,
body.theme-future-light .form-group select,
body.theme-future-light .form-group textarea { background: rgba(255, 255, 255, 0.8); border-color: rgba(15, 23, 42, 0.1); color: #1f2937; }
body.theme-future-light .form-group input:focus,
body.theme-future-light .form-group select:focus,
body.theme-future-light .form-group textarea:focus { background: #fff; }
body.theme-future-light .social-btn { background: rgba(255,255,255,0.8); border-color: rgba(15,23,42,0.1); }
body.theme-future-light .social-btn:hover { background: #1e293b; color: #fff; }
body.theme-future-light .detail-text a, body.theme-future-light .detail-text p { color: #1e293b; }
body.theme-future-light .contact-info-panel h3 { color: #0f172a; }
body.theme-future-light .process-header h3 { color: #1e293b; }
body.theme-future-light .process-number { background: #fff; }
body.theme-future-light .portfolio-title { color: #1e293b; }
body.theme-future-light .service-card-title { color: #1e293b; }
body.theme-future-light .stat-number { color: #0f172a; }
body.theme-future-light .hero-title { color: #0f172a; }
body.theme-future-light .modal-project-title { color: #0f172a; }
body.theme-future-light .modal-close-btn { background: rgba(15, 23, 42, 0.03); border-color: rgba(15, 23, 42, 0.08); }
body.theme-future-light .modal-close-btn:hover { background: #1e293b; color: #fff; }
body.theme-future-light .modal-visual-side { background: rgba(15, 23, 42, 0.02); }
body.theme-future-light .milestone-card { background: rgba(255,255,255,0.7); }
body.theme-future-light .milestone-card h4 { color: #0f172a; }
body.theme-future-light .milestones-line-bg { background: rgba(15, 23, 42, 0.08); }
body.theme-future-light .user-meta h4 { color: #1e293b; }

/* Obsidian Gold Overrides */
body.theme-obsidian-gold .option-card { background: rgba(212, 175, 55, 0.01); }
body.theme-obsidian-gold .estimator-option input:checked + .option-card { background: rgba(212, 175, 55, 0.05); }
body.theme-obsidian-gold .checkbox-option input:checked + .custom-checkbox { background: var(--color-primary); border-color: var(--color-primary); }
body.theme-obsidian-gold .editor-header .tab.active { color: var(--color-secondary); }

/* --- Reset & Layout --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

body.no-scroll {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1b1a2e;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
    transition: var(--transition-fast);
}
body.theme-obsidian-gold ::-webkit-scrollbar-thumb {
    background: #25221b;
}
body.theme-future-light ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- Global Utilities & Base Styles --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary), var(--color-accent));
    z-index: 9999;
    box-shadow: 0 0 10px var(--color-secondary);
    transition: width 0.05s ease-out;
}

/* Dynamic Aurora Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -2;
    opacity: 0.3;
    pointer-events: none;
}
.bg-glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(124,58,237,0.5) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 12s infinite alternate;
}
.bg-glow-2 {
    top: 50%;
    left: -200px;
    background: radial-gradient(circle, rgba(0,240,255,0.4) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 18s infinite alternate-reverse;
}
.bg-glow-3 {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255,0,127,0.35) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 15s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    100% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.4;
    }
}

/* Glassmorphic Base Styling */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
body.theme-future-light .glass-card {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
body.theme-future-light .glass-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

/* Custom Premium Cursor */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
    display: none;
}
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor, .custom-cursor-dot {
        display: block;
    }
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-dot {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
body.theme-obsidian-gold .btn-primary {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    color: #000;
}
body.theme-future-light .btn-primary {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}
body.theme-obsidian-gold .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}
body.theme-future-light .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}
body.theme-future-light .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--color-secondary);
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

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

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}
.btn:hover .btn-icon {
    transform: translate(2px, -2px);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 6s linear infinite;
}

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

/* Badge Utility */
.badge-container {
    margin-bottom: 1.5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
body.theme-obsidian-gold .hero-badge {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
    color: #d4af37;
}
body.theme-future-light .hero-badge {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    color: #2563eb;
}
.badge-icon {
    width: 14px;
    height: 14px;
}

/* Section Common Headers */
.section-badge {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 4.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(7, 7, 13, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-normal);
}
.header.scrolled {
    height: 70px;
    background: rgba(7, 7, 13, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.theme-obsidian-gold .header { background: rgba(9, 8, 7, 0.7); }
body.theme-obsidian-gold .header.scrolled { background: rgba(9, 8, 7, 0.9); }

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-text {
    background: linear-gradient(135deg, #fff 40%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-secondary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.92rem;
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-cyan-purple);
    transition: var(--transition-normal);
}
.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher in Header */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-right: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}
.lang-btn {
    background: none;
    border: none;
    outline: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    transition: var(--transition-fast);
}
.lang-btn:hover, .lang-btn.active {
    color: var(--color-secondary);
}
body.theme-future-light .lang-btn:hover, body.theme-future-light .lang-btn.active {
    color: var(--color-primary);
}
.lang-divider {
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}
body.theme-future-light .lang-divider {
    color: rgba(15, 23, 42, 0.15);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1010;
}
.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Mobile Nav Menu styling */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    width: 300px;
    height: 100vh;
    background: rgba(7, 7, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light);
    z-index: 999;
    padding: 100px 2.5rem 2.5rem 2.5rem;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1), visibility 0.5s;
}
body.theme-obsidian-gold .mobile-menu { background: rgba(9, 8, 7, 0.95); }
.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    z-index: 2010;
}
.mobile-nav-toggle.open {
    z-index: 2020;
}
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-secondary);
}

/* Hamburger animation */
.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ==========================================================================
   Hero Section & Particle Canvas
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
    z-index: -1;
}
body.theme-future-light .hero-grid-pattern {
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border-top);
    padding-top: 2rem;
    max-width: 550px;
}
body.theme-cyberpunk .hero-stats { border-top: 1px solid var(--border-light); }
body.theme-obsidian-gold .hero-stats { border-top: 1px solid var(--border-light); }
body.theme-future-light .hero-stats { border-top: 1px solid var(--border-light); }

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-ring-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 0.8rem;
}
.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}
.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 4px;
}
body.theme-future-light .progress-ring-bg {
    stroke: rgba(15, 23, 42, 0.05);
}
.progress-ring-circle {
    fill: none;
    stroke: var(--color-secondary);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 188.5;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px var(--color-secondary));
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    z-index: 2;
    position: relative;
}
body.theme-future-light .stat-number {
    color: #0f172a;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Hero Visual & Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 380px;
}

.visual-card {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.12);
}

.card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-light);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.window-dots {
    display: flex;
    gap: 6px;
}
.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.window-dots .dot.red { background-color: #ef4444; }
.window-dots .dot.yellow { background-color: #f59e0b; }
.window-dots .dot.green { background-color: #10b981; }

.window-search {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 2px 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.card-body {
    padding: 1rem;
    height: calc(100% - 40px);
}
.editor-header {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 4px;
}
.editor-header .tab {
    font-size: 0.8rem;
    padding: 4px 10px;
    color: var(--text-muted);
    border-radius: 4px 4px 0 0;
    font-family: var(--font-heading);
}
.editor-header .tab.active {
    color: var(--color-secondary);
    background: rgba(255,255,255,0.03);
}

.code-editor {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #e5e7eb;
    white-space: pre-wrap;
    line-height: 1.5;
}
.code-keyword { color: #f43f5e; font-weight: 600; }
.code-variable { color: #38bdf8; }
.code-string { color: #10b981; }
.code-class { color: #fbbf24; }
.code-method { color: #a78bfa; }
.code-comment { color: #6b7280; font-style: italic; }

/* Floater cards */
.floater {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    pointer-events: none;
}
.floater-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floater-icon-box.cyan { background: rgba(0, 240, 255, 0.15); color: var(--color-secondary); }
.floater-icon-box.purple { background: rgba(124, 58, 237, 0.15); color: #c084fc; }
.floater-icon-box.pink { background: rgba(255, 0, 127, 0.15); color: var(--color-accent); }

.floater-icon-box i {
    width: 20px;
    height: 20px;
}
.floater-info {
    display: flex;
    flex-direction: column;
}
.floater-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}
body.theme-future-light .floater-title {
    color: #0f172a;
}
.floater-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.floater-1 {
    top: 40px;
    left: -60px;
    animation: floatAnim 6s ease-in-out infinite alternate;
}
.floater-2 {
    bottom: 20px;
    right: -40px;
    animation: floatAnim 8s ease-in-out infinite alternate-reverse;
}
.floater-3 {
    top: -20px;
    right: 20px;
    animation: floatAnim 5s ease-in-out infinite alternate;
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 8rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-color: rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}
.service-icon {
    width: 28px;
    height: 28px;
}

.service-icon-box.cyan { background: rgba(0, 240, 255, 0.1); color: var(--color-secondary); }
.service-icon-box.purple { background: rgba(124, 58, 237, 0.1); color: #a78bfa; }
.service-icon-box.pink { background: rgba(255, 0, 127, 0.1); color: var(--color-accent); }
.service-icon-box.green { background: rgba(16, 185, 129, 0.1); color: var(--color-green); }

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-icon-box.cyan { background: var(--color-secondary); color: #000; box-shadow: 0 0 25px rgba(0,240,255,0.4); }
.service-card:hover .service-icon-box.purple { background: var(--color-primary); color: #fff; box-shadow: 0 0 25px rgba(124,58,237,0.4); }
.service-card:hover .service-icon-box.pink { background: var(--color-accent); color: #fff; box-shadow: 0 0 25px rgba(255,0,127,0.4); }
.service-card:hover .service-icon-box.green { background: var(--color-green); color: #fff; box-shadow: 0 0 25px rgba(16,185,129,0.4); }

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.service-features {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-main);
}
.check-icon {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
}

/* ==========================================================================
   Tech Orbit Section Styling
   ========================================================================== */
.tech-orbit-section {
    padding: 8rem 0;
    position: relative;
}
.orbit-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.orbit-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
    position: relative;
}
.orbit-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit-ring-line {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    pointer-events: none;
}
body.theme-future-light .orbit-ring-line {
    border-color: rgba(15, 23, 42, 0.08);
}
.outer-ring {
    width: 100%;
    height: 100%;
    animation: rotateOrbitRing 45s linear infinite;
}
.inner-ring {
    width: 65%;
    height: 65%;
    border-style: solid;
    border-width: 1px;
    opacity: 0.5;
}

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

.orbit-center-core {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.25);
    z-index: 5;
    position: relative;
}
body.theme-future-light .orbit-center-core {
    color: #0f172a;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
}
.core-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.orbit-satellite {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    z-index: 4;
}
.orbit-satellite:hover {
    transform: scale(1.15) !important;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 20px var(--border-glow);
}
.sat-icon {
    width: 22px;
    height: 22px;
}

/* Satellites positions around center */
.orbit-satellite {
    animation: orbitAnimation 25s linear infinite;
}

.sat-1 { --angle: 0deg; }
.sat-2 { --angle: 60deg; }
.sat-3 { --angle: 120deg; }
.sat-4 { --angle: 180deg; }
.sat-5 { --angle: 240deg; }
.sat-6 { --angle: 300deg; }

@keyframes orbitAnimation {
    from {
        transform: rotate(var(--angle)) translate(175px) rotate(calc(-1 * var(--angle)));
    }
    to {
        transform: rotate(calc(var(--angle) + 360deg)) translate(175px) rotate(calc(-1 * (var(--angle) + 360deg)));
    }
}

/* Color classes for sat-icons */
.cyan-text { color: #00f0ff; }
.blue-text { color: #38bdf8; }
.green-text { color: #10b981; }
.purple-text { color: #c084fc; }
.pink-text { color: #ec4899; }
.orange-text { color: #f97316; }

/* ==========================================================================
   Portfolio Section & Case Studies Modals
   ========================================================================== */
.portfolio-section {
    padding: 8rem 0;
    position: relative;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-normal);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-color: rgba(255,255,255,0.05);
    height: 100%;
    cursor: pointer;
}
.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 5;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    background: #fff;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(255,255,255,0.25);
    transform: translateY(15px);
    transition: var(--transition-normal);
}
.portfolio-link i {
    width: 18px;
    height: 18px;
}
.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-info {
    padding: 1.5rem 1.5rem 1.8rem 1.5rem;
}
.portfolio-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.6rem;
}
.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

/* Project Modal Styling */
.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.portfolio-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 8, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    padding: 3rem;
    z-index: 10;
    border-color: rgba(255,255,255,0.12);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.portfolio-modal.open .modal-wrapper {
    transform: scale(1);
    opacity: 1;
}
.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}
.modal-close-btn:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
}
.modal-close-btn i {
    width: 18px;
    height: 18px;
}
.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.modal-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
}
.modal-visual-side .project-mockup {
    width: 100%;
    height: 100%;
}
.modal-info-side {
    display: flex;
    flex-direction: column;
}
.modal-project-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.25;
}
.modal-project-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}
.modal-project-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}
.detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.detail-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.detail-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}
.tech-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 4px;
}
.tech-badge {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #c084fc;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Custom CSS Project Mockups */
.project-mockup {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.web-mockup .mockup-header {
    background: rgba(255,255,255,0.04);
    height: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 4px;
}
.web-mockup .mockup-header .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
}

.mockup-screen-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
}
.mock-tag {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 8px;
}
.mockup-screen-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.mockup-screen-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Mockup background styles */
.web-1 { background: linear-gradient(135deg, #1e1b4b, #311042); }
.web-2 { background: linear-gradient(135deg, #064e3b, #0f172a); }
.mobile-1 { background: linear-gradient(135deg, #09333f, #1e1b4b); }
.mobile-2 { background: linear-gradient(135deg, #450a0a, #111827); }
.code-1 { background: linear-gradient(135deg, #311042, #0f172a); }
.code-2 { background: linear-gradient(135deg, #111827, #1e1b4b); }

/* Phone Mockup Wrapper adjustment */
.phone-mockup {
    width: 140px;
    height: 220px;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.15);
    margin: 0 auto;
}
.code-mockup {
    font-family: monospace;
}

/* ==========================================================================
   App Simulator Section Styling
   ========================================================================== */
.simulator-section {
    padding: 8rem 0;
    position: relative;
}
.simulator-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
}
.sim-control-btn {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    max-width: 420px;
    text-align: left;
}
body.theme-future-light .sim-control-btn {
    background: rgba(255, 255, 255, 0.5);
}
.sim-control-btn i {
    width: 26px;
    height: 26px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.sim-btn-info {
    display: flex;
    flex-direction: column;
}
.sim-btn-info span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.sim-btn-info small {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.sim-control-btn:hover, .sim-control-btn.active {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
body.theme-future-light .sim-control-btn:hover, body.theme-future-light .sim-control-btn.active {
    background: #fff;
    border-color: var(--color-primary);
}
.sim-control-btn.active i {
    color: var(--color-secondary);
    transform: scale(1.1);
}
.sim-control-btn.active span {
    color: #fff;
}
body.theme-future-light .sim-control-btn.active span {
    color: #0f172a;
}

.simulator-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

/* Smartphone Frame */
.phone-frame {
    width: 280px;
    height: 570px;
    border-radius: 40px;
    border: 12px solid #1e1e2f;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    background: #000;
    overflow: visible;
}
body.theme-future-light .phone-frame {
    border-color: #cbd5e1;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.phone-camera-notch {
    position: absolute;
    top: 0;
    left: 55%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    background: #1e1e2f;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
body.theme-future-light .phone-camera-notch {
    background: #cbd5e1;
}

.phone-side-button {
    position: absolute;
    background: #1e1e2f;
    width: 3px;
    border-radius: 2px;
}
body.theme-future-light .phone-side-button {
    background: #cbd5e1;
}
.phone-side-button.power {
    right: -15px;
    top: 100px;
    height: 50px;
}
.phone-side-button.volume-up {
    left: -15px;
    top: 80px;
    height: 35px;
}
.phone-side-button.volume-down {
    left: -15px;
    top: 125px;
    height: 35px;
}

.phone-screen-viewport {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #07070d;
    position: relative;
}

/* App Views Inside Viewport */
.app-viewport {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.app-inner-header {
    padding: 1.5rem 1.2rem 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.app-status-icons {
    display: flex;
    gap: 4px;
}
.app-user-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.user-avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-cyan-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
}
.app-user-bar h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.app-user-bar span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
}

.app-inner-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1.2rem;
    overflow-y: auto;
}

.app-inner-body::-webkit-scrollbar {
    display: none;
}

/* Aura Fit View Details */
.aura-app {
    background: linear-gradient(180deg, #160d25 0%, #0d0617 100%);
}
.aura-app .app-stat-dashboard {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1rem;
    border-radius: 16px;
}
.stat-ring-mini {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}
.mini-svg-ring {
    position: absolute;
    transform: rotate(-90deg);
}
.mini-svg-ring .ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.04);
    stroke-width: 5px;
}
.mini-svg-ring .ring-fill {
    fill: none;
    stroke: #ff007f;
    stroke-width: 5px;
    stroke-linecap: round;
    stroke-dasharray: 264;
    transition: stroke-dashoffset 1s ease-in-out;
}
.stat-inner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.stat-inner-text strong {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1;
}
.stat-inner-text span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
}
.app-dashboard-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.dash-detail-item {
    display: flex;
    flex-direction: column;
}
.dash-detail-item span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
}
.dash-detail-item strong {
    font-size: 0.8rem;
    color: #fff;
}

.app-workout-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.workout-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 0, 127, 0.15);
    color: #ff007f;
    display: flex;
    align-items: center;
    justify-content: center;
}
.workout-meta span {
    font-size: 0.6rem;
    color: #ff007f;
    font-weight: 700;
    text-transform: uppercase;
}
.workout-meta h4 {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 700;
}
.workout-meta small {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
}
.app-action-btn {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: linear-gradient(135deg, #ff007f, #7c3aed);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

/* Velo App View Details */
.velo-app {
    background: #080b11;
}
.velo-app .app-inner-body {
    padding: 0;
}
.app-map-bg {
    width: 100%;
    height: 100%;
    background-color: #0b0f19;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}
.map-marker {
    position: absolute;
    top: 45%;
    left: 55%;
    width: 24px;
    height: 24px;
    background: rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,240,255,0.5);
    animation: markerPulse 2s infinite alternate;
}
.map-marker::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #00f0ff;
    border-radius: 50%;
}
@keyframes markerPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}
.app-map-info-card {
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1rem;
    z-index: 2;
    margin-top: auto;
}
.eta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 0.6rem;
}
.eta-row span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
}
.eta-row strong {
    font-size: 0.75rem;
    color: #00f0ff;
}
.courier-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.courier-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00f0ff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}
.courier-meta h4 {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
}
.courier-meta span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
}

/* Zenith App View Details */
.zenith-app {
    background: #0b0a0a;
}
.zenith-app .app-inner-body {
    gap: 0.8rem;
}
.zenith-chart-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.8rem;
}
.zenith-chart-box h4 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    padding-top: 10px;
}
.mock-bar {
    width: 14px;
    background: linear-gradient(180deg, #d4af37, #8c6d31);
    border-radius: 3px;
    transition: height 0.8s ease;
}
.mock-bar-chart span {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    display: block;
    margin-top: 4px;
}
.zenith-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.zenith-action-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.zenith-action-card:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,0.04);
}
.zenith-action-card i {
    width: 18px;
    height: 18px;
    color: #d4af37;
    margin-bottom: 4px;
}
.zenith-action-card span {
    font-size: 0.7rem;
    color: #fff;
    display: block;
    font-weight: 600;
}

/* ==========================================================================
   Price Estimator (Bütçe Sihirbazı) Section
   ========================================================================== */
.estimator-section {
    padding: 8rem 0;
    position: relative;
}

.estimator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    padding: 3.5rem;
    border-color: rgba(255,255,255,0.05);
}

.estimator-inputs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.estimator-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.estimator-group h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.estimator-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.2rem;
}
.estimator-option {
    cursor: pointer;
}
.estimator-option input {
    display: none;
}
.option-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.8rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    transition: var(--transition-normal);
}
.option-card i {
    width: 26px;
    height: 26px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.option-card span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.estimator-option input:checked + .option-card {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}
.estimator-option input:checked + .option-card i {
    color: var(--color-secondary);
    transform: scale(1.1);
}
.estimator-option input:checked + .option-card span {
    color: #fff;
}

/* Custom sliders and checks */
.group-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    outline: none;
}
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-secondary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--color-secondary);
    transition: var(--transition-fast);
}
.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.features-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.checkbox-option input {
    display: none;
}
.checkbox-option:hover {
    color: #fff;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}
.checkbox-option input:checked + .custom-checkbox {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(124,58,237,0.3);
}
.checkbox-option input:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-option input:checked + span {
    color: #fff;
    font-weight: 500;
}

/* Result panel sidebar */
.estimator-result-panel {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(255, 0, 127, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.result-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    filter: blur(100px);
    opacity: 0.15;
    top: -50px;
    left: -50px;
    pointer-events: none;
}
.result-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.8rem;
}
.price-display .currency {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 0.5rem;
    margin-right: 4px;
}
.price-display #calculated-price {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
}
.price-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}
.estimator-features-summary {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}
.estimator-features-summary h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.estimator-features-summary ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.estimator-features-summary li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.estimator-features-summary li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
    padding: 8rem 0;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    z-index: 1;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: flex-start;
    z-index: 2;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
    transition: var(--transition-normal);
}
.process-step:nth-child(2n) .process-number {
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.process-step:nth-child(3n) .process-number {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.process-content {
    padding: 2.2rem;
    border-color: rgba(255,255,255,0.05);
}
.process-content:hover {
    border-color: var(--border-glow);
}

.process-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.process-icon {
    width: 24px;
    height: 24px;
}
.process-icon.cyan { color: var(--color-secondary); }
.process-icon.purple { color: #c084fc; }
.process-icon.pink { color: var(--color-accent); }
.process-icon.green { color: var(--color-green); }

.process-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.process-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   Milestones Section Styling
   ========================================================================== */
.milestones-section {
    padding: 8rem 0;
    position: relative;
}
.milestones-slider-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}
.milestones-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.milestones-scroll-indicator i {
    width: 16px;
    height: 16px;
}
.milestones-track-wrapper {
    position: relative;
    width: 100%;
    padding: 3rem 0;
    overflow: hidden;
}
.milestones-line-bg {
    position: absolute;
    top: calc(3rem + 70px);
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}
.milestones-scroll-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
    cursor: grab;
    user-select: none;
}
.milestones-scroll-track:active {
    cursor: grabbing;
}
.milestone-card {
    width: 280px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-color: rgba(255,255,255,0.04);
    position: relative;
}
.milestone-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}
.milestone-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 2rem;
}
.milestone-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--color-primary);
    position: absolute;
    top: 64px;
    left: calc(50% - 7px);
    box-shadow: 0 0 10px var(--color-primary);
    transition: var(--transition-fast);
    z-index: 3;
}
.milestone-card:hover .milestone-node {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary);
    transform: scale(1.2);
}
.milestone-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}
.milestone-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Team Section Styling (Kadro)
   ========================================================================== */
.team-section {
    padding: 8rem 0;
    position: relative;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.team-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-color: rgba(255,255,255,0.04);
}
.member-image-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    padding: 4px;
    margin-bottom: 1.8rem;
    transition: var(--transition-normal);
}
.member-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-avatar-placeholder i {
    width: 42px;
    height: 42px;
}
.member-avatar-placeholder.ai-avatar {
    background: rgba(0, 240, 255, 0.05);
    color: var(--color-secondary);
}
.team-card:hover .member-image-box {
    border-color: var(--color-secondary);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--border-glow);
}

.member-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
body.theme-future-light .member-info h3 {
    color: #0f172a;
}
.member-info span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1.2rem;
}
.member-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

/* Overlay for Stats on Hover */
.member-skills-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 13, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.2rem 2rem;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
    border-top: 1px solid var(--border-light);
}
body.theme-obsidian-gold .member-skills-overlay {
    background: rgba(9, 8, 7, 0.95);
}
body.theme-future-light .member-skills-overlay {
    background: rgba(240, 242, 245, 0.95);
}
.team-card:hover .member-skills-overlay {
    bottom: 0;
}

.member-skills-overlay h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}
body.theme-future-light .member-skills-overlay h4 {
    color: #0f172a;
}
.skill-bar-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0.8rem;
}
.skill-bar-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}
.skill-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}
body.theme-future-light .skill-track {
    background: rgba(15, 23, 42, 0.06);
}
.skill-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Testimonials (Müşteri Yorumları) Section
   ========================================================================== */
.testimonials-section {
    padding: 8rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 2.5rem 0;
}
.testimonials-slider-wrapper::before,
.testimonials-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}
.testimonials-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 20%, transparent);
}
.testimonials-slider-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 20%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollSlider 35s linear infinite;
}
.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}

.testimonial-card {
    width: 400px;
    padding: 2.5rem;
    border-color: rgba(255,255,255,0.04);
    flex-shrink: 0;
}
.testimonial-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}
.testimonial-user {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.95rem;
}
.avatar-1 { background: var(--gradient-cyan-purple); }
.avatar-2 { background: var(--gradient-pink-orange); }
.avatar-3 { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.user-meta h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}
.user-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating {
    display: flex;
    gap: 2px;
}
.rating i {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    fill: none;
}
.rating i.star-filled {
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-style: italic;
}

/* ==========================================================================
   FAQ (Sıkça Sorulan Sorular) Section
   ========================================================================== */
.faq-section {
    padding: 8rem 0;
    position: relative;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border-color: rgba(255,255,255,0.04);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.8rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    gap: 1.5rem;
    transition: var(--transition-fast);
}
.faq-question:hover {
    color: var(--color-secondary);
}

.faq-arrow {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    border-color: var(--border-glow);
    background: rgba(255,255,255,0.05);
}
.faq-item.active .faq-arrow {
    transform: rotate(45deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2.2rem;
}
.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info-panel {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    border-color: rgba(255, 255, 255, 0.05);
}
.contact-info-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.contact-panel-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}
.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.detail-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-icon-box.cyan { background: rgba(0, 240, 255, 0.1); color: var(--color-secondary); }
.detail-icon-box.purple { background: rgba(124, 58, 237, 0.1); color: #a78bfa; }
.detail-icon-box.pink { background: rgba(255, 0, 127, 0.1); color: var(--color-accent); }

.detail-icon-box i {
    width: 22px;
    height: 22px;
}
.detail-text {
    display: flex;
    flex-direction: column;
}
.detail-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.detail-text a, .detail-text p {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
}
.detail-text a:hover {
    color: var(--color-secondary);
}

.social-links-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
    position: relative;
    z-index: 10;
}
.social-btn i, .social-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}
.social-btn:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
    padding: 3rem;
    border-color: rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 1.2rem;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}
.textarea-icon {
    top: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-group textarea {
    padding-left: 2.8rem;
    resize: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.form-group select option {
    background-color: #0d0c1b;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--color-primary);
}

/* Form Validation States */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--color-accent);
    background: rgba(255, 0, 127, 0.02);
}
.form-group.invalid .input-icon {
    color: var(--color-accent);
}
.error-msg {
    font-size: 0.8rem;
    color: var(--color-accent);
    display: none;
}
.form-group.invalid .error-msg {
    display: block;
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 13, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 10;
}
.form-success-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.success-content {
    text-align: center;
    max-width: 400px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}
.form-success-overlay.show .success-content {
    transform: translateY(0);
}

.success-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}
.success-icon {
    width: 40px;
    height: 40px;
}
.success-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.success-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Theme Switcher Widget Stillendirmesi
   ========================================================================== */
.theme-switcher-widget {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    pointer-events: none;
}

.theme-trigger-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    pointer-events: auto;
}
body.theme-future-light .theme-trigger-btn {
    color: #1e293b;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.theme-trigger-btn:hover {
    transform: rotate(45deg) scale(1.05);
    border-color: var(--color-secondary);
}
.theme-trigger-btn i {
    width: 22px;
    height: 22px;
}

.theme-menu {
    width: 220px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
body.theme-future-light .theme-menu {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.theme-switcher-widget.open .theme-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.theme-menu h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
}
body.theme-future-light .theme-menu h4 {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.theme-opt-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    transition: var(--transition-fast);
}
body.theme-future-light .theme-opt-btn {
    background: rgba(255, 255, 255, 0.5);
}
.theme-opt-btn:hover, .theme-opt-btn.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: var(--color-primary);
}
body.theme-future-light .theme-opt-btn:hover, body.theme-future-light .theme-opt-btn.active {
    background: #fff;
    color: #0f172a;
}
.theme-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.theme-dot.cyberpunk { background: #7c3aed; box-shadow: 0 0 6px #7c3aed; }
.theme-dot.obsidian-gold { background: #d4af37; box-shadow: 0 0 6px #d4af37; }
.theme-dot.future-light { background: #2563eb; box-shadow: 0 0 6px #2563eb; }

/* ==========================================================================
   AI Chatbot Widget Styling
   ========================================================================== */
.ai-chatbot-widget {
    position: fixed;
    right: 2.2rem;
    bottom: 6.2rem;
    z-index: 1400;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.chatbot-trigger-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    pointer-events: auto;
}
body.theme-future-light .chatbot-trigger-btn {
    color: #1e293b;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}
.chatbot-trigger-btn:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
}
.chatbot-trigger-btn i {
    width: 22px;
    height: 22px;
}

.ai-chat-window {
    width: 320px;
    height: 430px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    margin-bottom: 0.8rem;
}
body.theme-future-light .ai-chat-window {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.ai-chatbot-widget.open .ai-chat-window {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    background: rgba(255,255,255,0.02);
}
.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-avatar i {
    width: 20px;
    height: 20px;
}
.chat-header-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
body.theme-future-light .chat-header-info h4 {
    color: #0f172a;
}
.chat-header-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.chat-body {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.chat-body::-webkit-scrollbar {
    width: 4px;
}
.chat-body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.45;
}
.message.incoming {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
body.theme-future-light .message.incoming {
    background: #f1f5f9;
    color: #1e293b;
}
.message.outgoing {
    background: var(--gradient-primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 10px;
    padding: 0 4px;
}
.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-muted);
    animation: typingDot 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingDot {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-quick-actions {
    padding: 0.8rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid var(--border-light);
}
.chat-pill {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}
body.theme-future-light .chat-pill {
    background: #fff;
}
.chat-pill:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: var(--color-secondary);
}
body.theme-future-light .chat-pill:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #040408;
    border-top: 1px solid var(--border-light);
    padding: 6rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.newsletter-box span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}
.newsletter-form {
    display: flex;
    position: relative;
}
.newsletter-form input {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 0.8rem 3rem 0.8rem 1.5rem;
    color: #fff;
    font-family: var(--font-body);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}
.newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.newsletter-form button:hover {
    transform: scale(1.05);
}
.newsletter-form button i {
    width: 16px;
    height: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.8rem;
}
body.theme-future-light .footer-links h4 {
    color: #0f172a;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.heart-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    fill: var(--color-accent);
    vertical-align: middle;
    margin: 0 2px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-container {
        gap: 2rem;
    }
    .orbit-layout-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .simulator-layout-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .simulator-controls {
        align-items: center;
    }
    .estimator-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .modal-wrapper {
        padding: 2rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-visual-side {
        height: 200px;
    }
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .floater {
        display: none !important;
    }
    
    .orbit-wrapper {
        transform: scale(0.75);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Navigation */
    .nav {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .btn-nav {
        display: none;
    }
    
    /* Hero */
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        padding-top: 2rem;
    }
    .hero-content {
        display: contents;
    }
    .badge-container {
        order: 1;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
        order: 2;
    }
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 2rem auto;
        order: 3;
    }
    .hero-actions {
        justify-content: center;
        order: 4;
        width: 100%;
    }
    .hero-visual {
        max-width: 400px;
        margin: 1.5rem auto;
        order: 5;
        width: 100%;
    }
    .hero-stats {
        justify-content: center;
        margin: 0 auto;
        flex-wrap: wrap;
        gap: 1.5rem;
        order: 6;
        width: 100%;
    }
    .floater-1 {
        left: -20px;
    }
    .floater-2 {
        right: -20px;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Estimator checkboxes */
    .features-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Process timeline adjustments */
    .process-timeline::before {
        left: 20px;
    }
    .process-step {
        grid-template-columns: 50px 1fr;
    }
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .process-content {
        padding: 1.5rem;
    }
    
    /* Milestones mobile */
    .milestones-line-bg {
        left: 3rem;
        width: 2px;
        height: 100%;
        top: 0;
    }
    .milestones-scroll-track {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0 0 3rem;
        width: 100%;
    }
    .milestone-card {
        width: 100%;
        align-items: flex-start;
        text-align: left;
        padding-left: 2.5rem;
    }
    .milestone-node {
        left: -27px;
        top: 24px;
    }
    
    /* Testimonials Card resizing */
    .testimonial-card {
        width: 300px;
        padding: 1.5rem;
    }
    .testimonials-slider-wrapper::before,
    .testimonials-slider-wrapper::after {
        width: 50px;
    }
    
    /* Contact */
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Switcher adjustments for mobile */
    .theme-switcher-widget {
        right: 1rem;
        bottom: 1rem;
    }
}

/* --- Interactive Element Highlight Animations --- */
@keyframes highlightGlow {
    0% {
        box-shadow: 0 0 0 rgba(0, 240, 255, 0);
        border-color: var(--border-light);
    }
    30% {
        box-shadow: 0 0 35px var(--color-secondary);
        border-color: var(--color-secondary);
        transform: translateY(-8px) scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 rgba(0, 240, 255, 0);
        border-color: var(--border-light);
    }
}
.highlight-glow {
    animation: highlightGlow 2.5s ease-in-out;
    z-index: 10;
}

@keyframes satHighlightGlow {
    0% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-color: rgba(255,255,255,0.06);
    }
    30% {
        box-shadow: 0 0 35px var(--color-secondary);
        border-color: var(--color-secondary);
        transform: scale(1.35) !important;
    }
    100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-color: rgba(255,255,255,0.06);
    }
}
.sat-highlight-glow {
    animation: satHighlightGlow 2.5s ease-in-out;
    z-index: 15;
}

/* ==========================================================================
   Preloader Style
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #08070b; /* Deep obsidian background */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.preloader-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.preloader-svg {
    width: 90px;
    height: 90px;
}

.preloader-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLogo 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards infinite;
}

@keyframes drawLogo {
    0% {
        stroke-dashoffset: 300;
        fill: rgba(0, 240, 255, 0);
    }
    50% {
        stroke-dashoffset: 0;
        fill: rgba(0, 240, 255, 0.05);
    }
    100% {
        stroke-dashoffset: -300;
        fill: rgba(0, 240, 255, 0);
    }
}

.preloader-brand-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #fff;
    display: flex;
    padding-left: 0.25em;
}

.preloader-brand-text .brand-char {
    opacity: 0;
    transform: translateY(15px);
    animation: revealChar 1.5s ease-out forwards;
}

.preloader-brand-text .brand-char:nth-child(1) { animation-delay: 0.1s; }
.preloader-brand-text .brand-char:nth-child(2) { animation-delay: 0.2s; }
.preloader-brand-text .brand-char:nth-child(3) { animation-delay: 0.3s; }
.preloader-brand-text .brand-char:nth-child(4) { animation-delay: 0.4s; }
.preloader-brand-text .brand-char:nth-child(5) { animation-delay: 0.5s; }

.preloader-brand-text .brand-dot {
    color: var(--color-secondary);
    text-shadow: 0 0 10px var(--color-secondary);
    opacity: 0;
    animation: revealChar 1.5s ease-out forwards;
    animation-delay: 0.7s;
}

@keyframes revealChar {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader-bar-bg {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 8px var(--color-secondary);
    animation: fillLoader 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fillLoader {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Page Wrapper crop to prevent mobile zoom-out/horizontal scroll bugs */
.page-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}


