/* =====================================================
   YeniPara - Opal.so Inspired Design
   Premium Dark Theme with Animated Gradients
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors - Green & Red Finance Theme */
    --color-bg: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.6);
    --color-text-muted: rgba(255, 255, 255, 0.25);
    --color-border: rgba(255, 255, 255, 0.08);

    /* Profit Colors (Green) */
    --color-profit: #00C853;
    --color-profit-light: #4CAF50;
    --color-profit-dark: #00A844;

    /* Loss Colors (Red) */
    --color-loss: #D50000;
    --color-loss-light: #F44336;
    --color-loss-dark: #B71C1C;

    /* Primary gradient colors - Green to Red spectrum */
    --gradient-1: #00C853;
    --gradient-2: #4CAF50;
    --gradient-3: #69F0AE;
    --gradient-4: #F44336;
    --gradient-5: #D50000;
    --gradient-6: #FF5252;

    /* Accent colors */
    --color-success: #00C853;
    --color-error: #D50000;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--gradient-1);
    color: #000;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   ANIMATED GRADIENT SYSTEM - Opal Style
   ===================================================== */

.gradient-text {
    background: linear-gradient(
        90deg,
        var(--color-loss),
        var(--color-loss-light),
        var(--color-profit),
        var(--color-profit-light)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientRedToGreen 3s ease-out forwards;
}

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

/* =====================================================
   NAVIGATION - Opal Style
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-out-expo);
}

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

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo svg {
    width: 32px;
    height: 32px;
    color: var(--gradient-1);
}

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

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: linear-gradient(
        90deg,
        var(--color-loss),
        var(--color-loss-light),
        var(--color-profit),
        var(--color-profit-light)
    );
    background-size: 300% 100%;
    color: #fff;
    animation: btnRedToGreen 3s ease-out forwards;
}

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

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* =====================================================
   HERO SECTION - Opal Style
   ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 135px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Ambient Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-loss);
    top: -20%;
    left: -10%;
    animation: float1 20s ease-in-out infinite, glowToGreen1 3s ease-out 0.5s forwards;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-loss-light);
    top: 30%;
    right: -15%;
    animation: float2 25s ease-in-out infinite, glowToGreen2 3s ease-out 1s forwards;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: var(--color-loss);
    bottom: -10%;
    left: 30%;
    animation: float3 22s ease-in-out infinite, glowToGreen3 3s ease-out 1.5s forwards;
}

/* Red to Green transition - Loss to Profit */
@keyframes glowToGreen1 {
    0% { background: var(--color-loss); }
    100% { background: var(--color-profit); }
}

@keyframes glowToGreen2 {
    0% { background: var(--color-loss-light); }
    100% { background: var(--color-profit-light); }
}

@keyframes glowToGreen3 {
    0% { background: var(--color-loss); }
    100% { background: var(--color-profit); }
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 30px) scale(1.1); }
    66% { transform: translate(-30px, -20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 50px) scale(0.95); }
    66% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-50px, 20px) scale(0.9); }
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--color-loss);
    border-radius: 50%;
    animation: pulse 2s ease infinite, dotToGreen 3s ease-out 0.5s forwards;
}

@keyframes dotToGreen {
    0% { background: var(--color-loss); }
    100% { background: var(--color-profit); }
}

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

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

/* Word reveal effect */
.hero-subtitle .word {
    display: inline-block;
    opacity: 0.3;
    transition: opacity 0.4s ease, color 0.4s ease;
}

.hero-subtitle .word.active {
    opacity: 1;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

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

/* 3D Phone Container */
#phone3d-container {
    width: 100%;
    max-width: 450px;
    height: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

#phone3d-container canvas {
    display: block;
    margin: 0 auto;
}

/* Hero Phone Mockup - CSS Fallback */
.hero-phone {
    position: relative;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

.phone-mockup {
    position: relative;
    perspective: 1500px;
    perspective-origin: center center;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 20%, #1a1a1a 80%, #0f0f0f 100%);
    border-radius: 50px;
    padding: 8px;
    box-shadow:
        0 60px 120px -30px rgba(0, 0, 0, 0.9),
        0 30px 60px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 100px -30px rgba(213, 0, 0, 0.5);
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(3deg) rotateZ(5deg);
    transition: box-shadow 0.4s ease;
    animation: phoneGlowTransition 3s ease-out 1s forwards;
}

/* 3D Phone Edges - Kalınlık için */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 20%, #1a1a1a 80%, #0f0f0f 100%);
    transform: translateZ(-12px);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(0,0,0,0.5);
}

/* Sol kenar - 3D kalınlık */
.phone-edge-left {
    position: absolute;
    top: 50px;
    left: -6px;
    width: 12px;
    height: calc(100% - 100px);
    background: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    transform: rotateY(-90deg);
    transform-origin: right center;
    border-radius: 2px;
}

/* Sağ kenar - 3D kalınlık */
.phone-edge-right {
    position: absolute;
    top: 50px;
    right: -6px;
    width: 12px;
    height: calc(100% - 100px);
    background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    transform: rotateY(90deg);
    transform-origin: left center;
    border-radius: 2px;
}

/* Üst kenar - 3D kalınlık */
.phone-edge-top {
    position: absolute;
    top: -6px;
    left: 50px;
    width: calc(100% - 100px);
    height: 12px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    transform: rotateX(90deg);
    transform-origin: center bottom;
    border-radius: 2px;
}

/* Alt kenar - 3D kalınlık */
.phone-edge-bottom {
    position: absolute;
    bottom: -6px;
    left: 50px;
    width: calc(100% - 100px);
    height: 12px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    transform: rotateX(-90deg);
    transform-origin: center top;
    border-radius: 2px;
}

/* Telefon kenar parlama efekti */
.phone-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 51px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255,255,255,0.05) 100%);
    pointer-events: none;
    z-index: 10;
}

@keyframes phoneGlowTransition {
    0% {
        box-shadow:
            0 60px 120px -30px rgba(0, 0, 0, 0.9),
            0 30px 60px -20px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3),
            0 0 100px -30px rgba(213, 0, 0, 0.5);
    }
    100% {
        box-shadow:
            0 60px 120px -30px rgba(0, 0, 0, 0.9),
            0 30px 60px -20px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3),
            0 0 100px -30px rgba(0, 200, 83, 0.5);
    }
}

/* Side buttons - sağ taraf (power + volume) */
.phone-side-buttons {
    position: absolute;
    right: -4px;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
    transform: translateZ(10px);
}

.side-btn {
    width: 4px;
    background: linear-gradient(90deg, #444 0%, #333 50%, #222 100%);
    border-radius: 0 3px 3px 0;
    box-shadow: 1px 0 2px rgba(0,0,0,0.3);
}

.side-btn.power {
    height: 70px;
}

.side-btn.volume-up,
.side-btn.volume-down {
    height: 45px;
}

/* Sol taraf (sessiz modu) */
.phone-side-left {
    position: absolute;
    left: -4px;
    top: 130px;
    z-index: 5;
    transform: translateZ(10px);
}

.side-btn.mute {
    width: 4px;
    height: 30px;
    background: linear-gradient(90deg, #222 0%, #333 50%, #444 100%);
    border-radius: 3px 0 0 3px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

/* Phone back side for 3D rotation */
.phone-back {
    position: absolute;
    inset: 8px;
    background: linear-gradient(165deg, #252525 0%, #1a1a1a 30%, #0f0f0f 70%, #0a0a0a 100%);
    border-radius: 42px;
    transform: rotateY(180deg) translateZ(4px);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

/* Arka yüz cam efekti */
.phone-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
        rgba(255,255,255,0.08) 0%,
        transparent 25%,
        transparent 75%,
        rgba(255,255,255,0.02) 100%);
    pointer-events: none;
}

/* Arka yüz alt parlama */
.phone-back::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,200,83,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.back-logo {
    position: absolute;
    bottom: 60px;
    opacity: 0.4;
}

.back-camera {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 85px;
    height: 85px;
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 4px;
    padding: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 2px 8px rgba(0,0,0,0.5);
}

.camera-lens {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 35%,
        #3a3a4a 0%,
        #1a1a2a 40%,
        #0a0a15 70%,
        #050508 100%);
    border-radius: 50%;
    border: 2.5px solid #1a1a1a;
    box-shadow:
        inset 0 2px 6px rgba(0,0,0,0.8),
        inset 0 -1px 2px rgba(255,255,255,0.05),
        0 1px 3px rgba(0,0,0,0.5);
    position: relative;
}

/* Lens iç yansıma */
.camera-lens::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(100,120,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.camera-lens.small {
    width: 20px;
    height: 20px;
}

.camera-flash {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #4a4a3a 0%, #3a3a2a 50%, #2a2a1a 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255,255,200,0.1);
}

/* Apple logosu yerine YeniPara logosu */
.back-text {
    position: absolute;
    bottom: 30px;
    font-size: 11px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Front face */
.phone-screen {
    backface-visibility: hidden;
}

.phone-dynamic-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
}

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

/* Ekran yansıma/glare efekti */
.phone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,0.03) 45%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0.03) 55%,
        transparent 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 50;
    border-radius: 44px;
}

/* Status Bar */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 24px 8px;
}

.status-time {
    font-size: 14px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 6px;
    opacity: 0.8;
}

/* App Header */
.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo svg {
    width: 20px;
    height: 20px;
}

.app-name {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.app-header-icons {
    display: flex;
    gap: 12px;
    opacity: 0.6;
}

/* Portfolio Section */
.app-portfolio {
    padding: 20px;
    text-align: center;
}

.portfolio-label {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.portfolio-value {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.portfolio-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.change-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 200, 83, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.change-badge.up {
    color: var(--color-profit);
}

.change-badge.down {
    color: var(--color-loss);
    background: rgba(213, 0, 0, 0.15);
}

.change-period {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* Chart */
.app-chart {
    padding: 0 16px;
}

.chart-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.chart-tab {
    flex: 1;
    padding: 6px 8px;
    font-size: 11px;
    text-align: center;
    color: var(--color-text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.chart-tab.active {
    background: rgba(0, 200, 83, 0.15);
    color: var(--color-profit);
}

.chart-svg {
    width: 100%;
    height: 80px;
}

.chart-line-animated {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawChartLine 2s ease-out 1s forwards;
}

@keyframes drawChartLine {
    to { stroke-dashoffset: 0; }
}

/* Stock List */
.app-stocks {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stocks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.see-all {
    font-size: 12px;
    color: var(--gradient-1);
    font-weight: 500;
}

.stock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: background 0.2s;
}

.stock-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.stock-logo.thyao { background: linear-gradient(135deg, #dc2626, #ef4444); }
.stock-logo.asels { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.stock-logo.sise { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }

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

.stock-symbol {
    font-size: 13px;
    font-weight: 600;
}

.stock-name {
    font-size: 10px;
    color: var(--color-text-muted);
}

.stock-data {
    text-align: right;
}

.stock-price {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.stock-change {
    font-size: 11px;
    font-weight: 500;
}

.stock-change.up { color: var(--color-profit); }
.stock-change.down { color: var(--color-loss); }

/* Bottom Navigation */
.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 8px 24px;
    background: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    font-size: 10px;
}

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

/* Floating Stats */
.floating-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.stat-pill .icon {
    width: 20px;
    height: 20px;
    color: var(--gradient-1);
}

.stat-pill .text {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .phone-frame {
        width: 260px;
        height: 540px;
        border-radius: 40px;
    }

    .phone-screen {
        border-radius: 36px;
    }

    .phone-dynamic-island {
        width: 80px;
        height: 26px;
        top: 14px;
    }

    .floating-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* =====================================================
   PROBLEM SECTION - Typewriter Effect
   ===================================================== */

.problem-section {
    padding: var(--section-padding) 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.typewriter-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}

.typewriter-text {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.typewriter-cursor {
    display: inline-block;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    color: var(--gradient-1);
    animation: cursorBlink 1s step-end infinite;
    margin-left: 2px;
}

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

/* Highlight certain words */
.typewriter-text .highlight {
    color: var(--gradient-1);
}

.typewriter-text .question-mark {
    color: var(--gradient-1);
}

/* =====================================================
   SOLUTION SECTION
   ===================================================== */

.solution-section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gradient-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Grid - Bento Style */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 200, 83, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.bento-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-4px);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(76, 175, 80, 0.1));
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--gradient-1);
}

.bento-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.bento-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* =====================================================
   ZIGZAG SECTION - Opal Style
   ===================================================== */

.zigzag-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.zigzag-item:last-child {
    margin-bottom: 0;
}

.zigzag-item.reverse {
    direction: rtl;
}

.zigzag-item.reverse > * {
    direction: ltr;
}

/* Zigzag Content */
.zigzag-content {
    max-width: 480px;
}

.zigzag-item.reverse .zigzag-content {
    margin-left: auto;
}

.zigzag-number {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(0, 200, 83, 0.3) 0%, rgba(0, 200, 83, 0.05) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}

.zigzag-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.zigzag-desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.zigzag-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zigzag-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
}

.zigzag-features li svg {
    width: 20px;
    height: 20px;
    color: var(--gradient-1);
    flex-shrink: 0;
}

/* Zigzag Phone */
.zigzag-phone {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-wrapper {
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
}

.phone-wrapper.phone-left {
    transform: rotateY(-15deg) rotateX(5deg) rotateZ(-2deg);
}

.phone-wrapper.phone-right {
    transform: rotateY(15deg) rotateX(5deg) rotateZ(2deg);
}

.zigzag-item:hover .phone-wrapper {
    transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.02);
}

.zigzag-mockup {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 60px -20px rgba(0, 200, 83, 0.3);
    position: relative;
}

.zigzag-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.zigzag-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

.screen-header {
    padding: 50px 20px 16px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.app-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gradient-1);
}

.screen-content {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Register Screen */
.register-screen {
    gap: 16px;
}

.register-icon {
    margin-bottom: 8px;
}

.register-title {
    font-size: 18px;
    font-weight: 600;
}

.register-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.register-btn {
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

/* Profile Screen */
.profile-screen {
    gap: 24px;
}

.profile-chart {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 120px;
}

.chart-bar {
    width: 50px;
    height: var(--height);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    transition: all 0.4s ease;
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--gradient-1), var(--gradient-2));
}

.chart-bar span {
    font-size: 10px;
    color: var(--color-text-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.chart-bar.active span {
    color: #000;
    font-weight: 600;
}

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

.result-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.result-text {
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* Strategy Screen */
.strategy-screen {
    gap: 12px;
    width: 100%;
}

.strategy-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 14px;
}

.strategy-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 10px;
}

.strategy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.strategy-name {
    font-size: 14px;
    font-weight: 600;
}

.strategy-match {
    font-size: 12px;
    color: var(--gradient-1);
}

/* Portfolio Screen */
.portfolio-screen {
    gap: 20px;
    width: 100%;
}

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

.portfolio-balance .balance-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.portfolio-balance .balance-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.portfolio-balance .balance-profit {
    display: block;
    font-size: 14px;
    color: var(--gradient-1);
    margin-top: 4px;
}

.portfolio-mini-chart {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
}

.portfolio-mini-chart svg {
    width: 100%;
    height: 50px;
}

/* No Risk Screen */
.norisk-screen {
    gap: 16px;
}

.norisk-icon {
    animation: pulse-scale 2s ease-in-out infinite;
}

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

.norisk-text {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.norisk-badge {
    padding: 8px 20px;
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: 100px;
    font-size: 13px;
    color: var(--gradient-1);
}

/* Educators Screen */
.educators-screen {
    gap: 12px;
    padding: 16px !important;
}

.educator-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
}

.educator-avatar {
    width: 44px;
    height: 44px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.educator-card:nth-child(2) .educator-avatar {
    background: rgba(139, 92, 246, 0.1);
}

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

.educator-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.educator-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.educator-badge {
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--color-profit), var(--color-profit-light));
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #000;
}

/* Q&A Screen */
.qa-screen {
    gap: 12px;
    padding: 16px !important;
}

.qa-bubble {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
}

.user-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    max-width: 85%;
}

.expert-bubble {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    max-width: 90%;
}

.expert-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--color-profit);
    margin-bottom: 6px;
    font-weight: 600;
}

.qa-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: auto;
}

.qa-input span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Community Screen */
.community-screen {
    gap: 12px;
    padding: 16px !important;
}

.community-post {
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

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

.post-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.post-meta {
    display: flex;
    flex-direction: column;
}

.post-author {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.post-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.post-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 10px;
}

.post-stats {
    display: flex;
    gap: 16px;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.community-topics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.topic-tag {
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 100px;
    font-size: 11px;
    color: #8B5CF6;
}

/* Responsive */
@media (max-width: 968px) {
    .zigzag-item {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .zigzag-item.reverse {
        direction: ltr;
    }

    .zigzag-content {
        max-width: 100%;
    }

    .zigzag-item.reverse .zigzag-content {
        margin-left: 0;
    }

    .zigzag-features {
        align-items: center;
    }

    .phone-wrapper.phone-left,
    .phone-wrapper.phone-right {
        transform: rotateY(0deg) rotateX(10deg);
    }

    .zigzag-mockup {
        width: 220px;
        height: 440px;
    }
}

/* =====================================================
   STATS SECTION
   ===================================================== */

.stats-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--color-text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
}

.author-title {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    transition: all 0.4s var(--ease-out-expo);
}

.pricing-card.featured {
    border-color: var(--color-profit);
    background: linear-gradient(145deg, rgba(0, 200, 83, 0.1), rgba(213, 0, 0, 0.02));
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(90deg, var(--color-profit), var(--color-loss));
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

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

.pricing-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.pricing-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--gradient-1);
}

.pricing-btn {
    width: 100%;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

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

/* App Store Button */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(255, 255, 255, 0.2);
}

.app-store-btn svg {
    width: 28px;
    height: 28px;
}

.app-store-btn .text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-store-btn .text-small {
    font-size: 11px;
    opacity: 0.7;
}

.app-store-btn .text-large {
    font-size: 16px;
    font-weight: 600;
}

/* =====================================================
   DEMO SECTION
   ===================================================== */

.demo-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.demo-video-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.demo-phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 200, 83, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #000;
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.contact-info-centered {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-profit);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-details a,
.contact-details p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-profit);
}

.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--color-text);
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-profit);
    background: rgba(0, 200, 83, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

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

/* Coming Soon Badge for App Store Buttons */
.app-store-btn.coming-soon {
    opacity: 0.7;
    cursor: default;
    position: relative;
}

.app-store-btn.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .demo-phone-frame {
        max-width: 280px;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

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

    .bento-card.large {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .bento-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .floating-stats {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-profit), var(--color-profit-light), var(--color-loss), var(--color-loss-light));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* =====================================================
   NOISE OVERLAY
   ===================================================== */

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =====================================================
   PRICING TABLE STYLES
   ===================================================== */

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 2px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    table-layout: fixed;
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        0 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.pricing-table thead {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-table th,
.pricing-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.pricing-table thead th {
    vertical-align: middle;
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table thead th.feature-col {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
    text-align: left !important;
    padding-left: 24px !important;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tfoot td {
    border-bottom: none;
    padding: 20px 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.feature-col {
    text-align: left !important;
    width: 34%;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding-left: 24px !important;
}

.plan-col {
    width: 22%;
    transition: all 0.3s ease;
}

.plan-col.free {
    position: relative;
}

.plan-col.free::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FBBF24, transparent);
    opacity: 0.5;
}

.plan-col.standard {
    position: relative;
}

.plan-col.standard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B5CF6, transparent);
    opacity: 0.5;
}

.plan-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.plan-icon svg {
    width: 20px;
    height: 20px;
}

.plan-col:hover .plan-icon {
    transform: scale(1.05);
}

.free-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
    box-shadow: 0 0 16px rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}

.standard-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
}

.premium-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.08) 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
    color: #3B82F6;
}

.plan-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(90deg, var(--color-profit), var(--color-profit-light));
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    margin-bottom: 8px;
    box-shadow: 0 2px 10px rgba(0, 200, 83, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-col.premium {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    position: relative;
}

.plan-col.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
}

.plan-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.plan-price {
    display: inline;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.plan-period {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.plan-desc {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 6px;
    opacity: 0.6;
}

.category-row td {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    text-align: left !important;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text);
    padding: 12px 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    margin-right: 10px;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--color-profit);
    font-size: 12px;
    font-weight: 500;
}

.feature-check svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 200, 83, 0.4));
}

.feature-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.feature-limit {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 11px;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

.pricing-table tbody tr {
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.pricing-table tbody tr.category-row:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.btn-sm {
    padding: 10px 16px;
    font-size: 13px;
}

/* Pricing Table Responsive */
@media (max-width: 900px) {
    .pricing-table-wrapper {
        margin: 0 -12px;
        padding: 0 12px;
    }

    .pricing-table {
        min-width: 580px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .feature-col {
        padding-left: 12px !important;
        font-size: 12px;
    }

    .plan-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .plan-icon svg {
        width: 18px;
        height: 18px;
    }

    .plan-name {
        font-size: 13px;
    }

    .plan-price {
        font-size: 22px;
    }

    .plan-period {
        font-size: 11px;
    }

    .plan-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .feature-limit {
        font-size: 10px;
        padding: 3px 6px;
    }

    .feature-check {
        font-size: 10px;
    }

    .feature-check svg,
    .feature-x svg {
        width: 16px;
        height: 16px;
    }

    .btn-sm {
        padding: 8px 12px;
        font-size: 11px;
    }

    .category-row td {
        font-size: 11px;
        padding: 8px 12px !important;
    }

    .category-icon {
        width: 22px;
        height: 22px;
        margin-right: 6px;
    }

    .category-icon svg {
        width: 14px;
        height: 14px;
    }
}
