/* ============================================
   SelfAware Tech — Stok Website Styles
   Ultra-modern, futuristic, investor-ready
   ============================================ */
/* x
/* CSS Variables */
:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-darker: #111111;
    --color-purple: #7C3AED;
    --color-purple-light: #A78BFA;  /* volt  --color-purple-light: #A78BFA; */
    --color-cyan: #17c05d;       /* volt --color-cyan: #00D4FF; */
    --color-cyan-dark: #98df27; /* volt --color-cyan-dark: #0891B2; */
    --color-white: #ffffff;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #716b80;
    --color-gray-600: #554b63;
    --color-gray-700: #453751;
    --color-gray-800: #1f2937;
    --color-gray-900: #5d23a8;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3), 0 0 80px rgba(0, 212, 255, 0.1);
    --shadow-glow-sm: 0 0 20px rgba(124, 58, 237, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--color-gray-300);
    font-size: 1.125rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-size: 3rem;
    color: var(--color-cyan);
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--color-gray-800);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-logo i {
    color: var(--color-cyan);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-300);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    color: var(--color-gray-300);
}

.dropdown-link i {
    font-size: 1rem;
    color: var(--color-cyan);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

/* Investor Page Specific Styles */
.investor-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 1.5rem 6rem;
    overflow: hidden;
}

.investor-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 212, 255, 0.08), transparent);
    z-index: 0;
}

.investor-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
}

.investor-hero .hero-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.investor-section {
    padding: 6rem 0;
    position: relative;
}

.investor-section-alt {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.investor-section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.investor-card-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.investor-card-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow-sm);
}

.investor-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.investor-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.investor-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
}

.investor-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.investor-metric-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.investor-metric-value.accent {
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investor-metric-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    border-radius: 4px;
    transition: width 1s ease;
}

.use-case-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
    flex-shrink: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-300);
    font-weight: 500;
    transition: all var(--transition-base);
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--color-white);
    gap: 0.75rem;
}

.back-link i {
    transition: transform var(--transition-base);
}

.back-link:hover i {
    transform: translateX(-3px);
}

/* Chart containers for investor pages */
.investor-chart-container {
    height: 300px;
    position: relative;
}

.investor-chart-small {
    height: 200px;
}

/* mobil 3 */
/* Responsive for investor pages */
@media (max-width: 1024px) {
    .investor-grid-2,
    .investor-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* mobil 4 */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .dropdown-link {
        padding: 0.5rem 0;
    }
}

.nav-toggle {
/* mobil 5 */
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--color-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    border-radius: 14px;
}

.btn-xl {
    padding: 1.375rem 3rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 1.5rem 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 212, 255, 0.08), transparent),
        radial-gradient(ellipse 50% 30% at 20% 60%, rgba(124, 58, 237, 0.08), transparent);
}

.hero-particles {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-cyan);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--color-warning);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--color-gray-600), transparent);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
}

/* Product Section */
.product {
    padding: 8rem 0;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-purple);
    top: -200px;
    right: -200px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--color-cyan);
    bottom: -100px;
    left: -100px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-card {
    position: relative;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--color-darker);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(124, 58, 237, 0.1);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(0, 212, 255, 0.3));
    z-index: -1;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--color-black);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111827 0%, #0a0a0a 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.app-logo i {
    color: var(--color-cyan);
}

.app-menu {
    color: var(--color-gray-400);
}

.app-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.card-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-bottom: 0.25rem;
}

.card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
}

.card-change {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

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

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.dash-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dash-item i {
    color: var(--color-cyan);
    font-size: 0.875rem;
}

.dash-item span {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.dash-item strong {
    font-size: 1.125rem;
    color: var(--color-white);
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    color: var(--color-gray-500);
    font-size: 1.25rem;
    transition: color var(--transition-base);
}

.nav-item.active {
    color: var(--color-cyan);
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-stack h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stack-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-200);
    backdrop-filter: blur(10px);
}

.stack-tag i {
    color: var(--color-cyan);
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.platform-icon.coming-soon {
    background: var(--color-gray-700);
}

.platform-text {
    display: flex;
    flex-direction: column;
}

.platform-status {
    font-size: 0.75rem;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 50%, var(--color-black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glow-sm);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 1rem;
    color: var(--color-gray-400);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Metrics Section */
.metrics {
    position: relative;
    padding: 8rem 0;
}

.metrics-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 50% at 50% 100%, rgba(124, 58, 237, 0.1), transparent),
        radial-gradient(ellipse 80% 40% at 0% 50%, rgba(0, 212, 255, 0.05), transparent);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.metric-card.wide {
    grid-column: span 2;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.chart-header h3 {
    font-size: 1.125rem;
    color: var(--color-white);
}

.chart-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-cyan);
}

.chart-badge.positive {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.chart-container {
    height: 250px;
    position: relative;
}

.chart-container.half {
    height: 200px;
}

.chart-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.market-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-label {
    flex: 1;
    font-size: 0.875rem;
    color: var(--color-gray-300);
}

.legend-value {
    font-weight: 600;
    color: var(--color-white);
}

.metrics-highlight {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Demo Section */
.demo {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-darker) 100%);
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-phone {
    display: flex;
    justify-content: center;
}

.demo-frame {
    transform: rotate(-5deg);
    transition: transform var(--transition-base);
}

.demo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.demo-screen {
    background: var(--color-darker);
}

.demo-slides {
    height: 100%;
    position: relative;
}

.demo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.demo-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.slide-header i {
    color: var(--color-cyan);
}

.slide-content {
    flex: 1;
    overflow-y: auto;
}

.inventory-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inv-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.inv-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.inv-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inv-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
}

.inv-stock {
    font-size: 0.75rem;
    color: var(--color-success);
}

.inv-stock.low {
    color: var(--color-error);
}

.inv-price {
    font-weight: 600;
    color: var(--color-cyan);
}

.analytics-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.analytic-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.analytic-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0.25rem 0;
}

.analytic-change {
    font-size: 0.75rem;
}

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

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.mini-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-purple), var(--color-cyan));
    border-radius: 4px 4px 0 0;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.mini-bar.active {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.top-products {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
}

.tp-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-bottom: 0.75rem;
}

.tp-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tp-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.tp-item span:first-child {
    color: var(--color-white);
}

.tp-item span:last-child {
    color: var(--color-cyan);
}

.insight-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.insight-icon.info {
    background: rgba(0, 212, 255, 0.2);
    color: var(--color-cyan);
}

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

.insight-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.insight-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.insight-desc {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    line-height: 1.5;
}

.slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-600);
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--color-cyan);
    width: 24px;
    border-radius: 4px;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.demo-feature.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.demo-feature:hover {
    transform: translateX(5px);
}

.df-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
}

.demo-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.demo-feature p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

/* Founder Section */
.founder {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    display: flex;
    justify-content: center;
}

.founder-avatar {
    position: relative;
    width: 280px;
    height: 280px;
}

.avatar-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
}

.avatar-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.avatar-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.founder-info .section-badge {
    margin-bottom: 1rem;
}

.founder-info .section-title {
    margin-bottom: 0.5rem;
}

.founder-role {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-cyan);
    font-weight: 500;
}

.role-divider {
    color: var(--color-gray-600);
}

.founder-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder-stats {
    display: flex;
    gap: 3rem;
}

.fstat {
    display: flex;
    flex-direction: column;
}

.fstat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
}

.fstat-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Investor Section */
.investor {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.investor-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.investor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.investor-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.investor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
}

.card-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.investor-card:hover .card-glow {
    opacity: 1;
}

.investor-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ich-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
}

.investor-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
}

.traction-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.traction-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-gray-300);
}

.traction-list i {
    color: var(--color-success);
}

.vision-text {
    font-size: 1rem;
    color: var(--color-gray-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vision-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vstat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.vstat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.vstat-label {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roadmap-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--color-cyan);
}

.rm-quarter {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-cyan);
    text-transform: uppercase;
}

.rm-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.rm-desc {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow-sm);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    word-break: break-all;
}

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

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-gray-300);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.footer-credit i {
    color: var(--color-error);
}

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

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

.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* mobil 6 */
/* Responsive */
@media (max-width: 1024px) {
    .product-grid,
    .founder-content,
    .demo-showcase {
        grid-template-columns: 1fr;
    }
    
    .investor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-frame {
        transform: rotate(0);
    }
}

/* mobil 7 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card.wide {
        grid-column: span 1;
    }
    
    .chart-split {
        grid-template-columns: 1fr;
    }
    
    .investor-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-highlight {
        flex-direction: column;
        gap: 2rem;
    }
    
    .founder-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* mobil 8 */
@media (max-width: 480px) {
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .demo-features {
        gap: 1rem;
    }
    
    .demo-feature {
        padding: 1rem;
    }
}

/* Download Section Styles */
.download-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-cyan);
    padding: 2rem;
}

.download-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.download-version {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
}

.download-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-gray-light);
}

.download-features i {
    color: var(--color-accent-purple);
    flex-shrink: 0;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.download-note {
    font-size: 0.75rem;
    color: var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-note i {
    color: var(--color-accent-cyan);
}

.download-steps {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.download-steps h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--color-gray-light);
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--color-accent-purple) 0%, var(--color-accent-cyan) 100%);
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.steps-list li strong {
    color: var(--color-white);
}

/* mobil 9 */
@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-icon {
        justify-content: flex-start;
        padding: 0;
    }

    .download-actions {
        width: 100%;
    }

    .download-actions .btn {
        width: 100%;
        text-align: center;
    }
}

