/* ========================================
   AXON (axonai.kids) - Premium Design System
   Light Airy Theme + TRUE Liquid Glass
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Enhanced gradients */
    --primary: #FF6B35;
    --primary-light: #FF8C5A;
    --primary-dark: #E55A2B;
    --secondary: #7C3AED;
    --secondary-light: #9F67FF;
    --accent: #14B8A6;
    --accent-pink: #EC4899;
    
    /* Light Theme */
    --bg-light: #FAFBFE;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.5);
    --bg-glass-strong: rgba(255, 255, 255, 0.85);
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A68;
    --text-muted: #8A8AA3;
    --border-glass: rgba(255, 255, 255, 0.6);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-glow: rgba(255, 107, 53, 0.3);
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 30%, #EC4899 70%, #7C3AED 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(255,107,53,0.12) 0%, transparent 70%);
    --gradient-bg: linear-gradient(180deg, #FAFBFE 0%, #F0F4FF 50%, #FFF5F0 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.1) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.08) 0%, transparent 40%),
                     radial-gradient(ellipse at 20% 80%, rgba(236,72,153,0.06) 0%, transparent 40%);
    
    /* Shadows */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --section-padding: clamp(80px, 12vh, 140px);
    --container-width: 1200px;
    
    /* Typography */
    --font-main: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

/* ========================================
   TRUE LIQUID GLASS EFFECTS - Enhanced
   ======================================== */

.glass-panel {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.25) 100%
    );
    backdrop-filter: blur(50px) saturate(220%) brightness(1.1);
    -webkit-backdrop-filter: blur(50px) saturate(220%) brightness(1.1);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.7);
    border-left-color: rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 40px 80px -20px rgba(0, 0, 0, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.7) inset,
        0 -2px 20px rgba(0, 0, 0, 0.03) inset;
    position: relative;
    overflow: hidden;
}

/* Top edge highlight - bright refraction line */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.9) 10%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.9) 90%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Internal refraction/caustic + left edge highlight */
.glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 25%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 5%),
        radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

.glass-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.3) 100%
    );
    backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.6);
    border-left-color: rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 2px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(255, 255, 255, 0.2) inset,
        -1px 0 0 rgba(255, 255, 255, 0.4) inset;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

/* Top + left edge highlight */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        transparent 100%
    );
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

/* Right + bottom edge subtle glow */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, transparent 3%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 2%);
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    border-top-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(255, 107, 53, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.glass-card-mini {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.35) 100%
    );
    backdrop-filter: blur(30px) saturate(200%) brightness(1.1);
    -webkit-backdrop-filter: blur(30px) saturate(200%) brightness(1.1);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.65);
    border-left-color: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 2px 0 rgba(255, 255, 255, 0.85) inset,
        -1px 0 0 rgba(255, 255, 255, 0.35) inset;
    position: relative;
    overflow: hidden;
}

.glass-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

.glass-card-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    border-radius: inherit;
    pointer-events: none;
}

/* ========================================
   CONTENT CARDS - Liquid Glass with Glow
   ======================================== */

/* Problem cards, feature cards, step cards */
.problem-card,
.feature-card,
.step-card,
.specialist-card,
.faq-item,
.value-card,
.team-card,
.advisor-card,
.pricing-card-preview,
.feature-item {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.25) 30%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.35) 100%
    );
    backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-left-color: rgba(255, 255, 255, 0.65);
    border-bottom-color: rgba(255, 255, 255, 0.25);
    border-right-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 32px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 3px 0 rgba(255, 255, 255, 0.85) inset,
        0 -2px 8px rgba(0, 0, 0, 0.02) inset,
        -2px 0 0 rgba(255, 255, 255, 0.5) inset,
        2px 0 8px rgba(0, 0, 0, 0.01) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top refraction layer */
.problem-card::before,
.feature-card:not(.large)::before,
.step-card::before,
.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

/* Edge highlights - top and left */
.problem-card::after,
.feature-card:not(.large)::after,
.step-card::after,
.specialist-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, transparent 3px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, transparent 2px),
        linear-gradient(270deg, rgba(255, 255, 255, 0.2) 0%, transparent 2px);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Content z-index fix */
.problem-card > *,
.feature-card > *,
.step-card > *,
.specialist-card > * {
    position: relative;
    z-index: 2;
}

/* Hover state with GLOW */
.problem-card:hover,
.feature-card:hover,
.step-card:hover,
.specialist-card:hover {
    transform: translateY(-6px);
    border-top-color: rgba(255, 255, 255, 0.95);
    border-left-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 3px 0 rgba(255, 255, 255, 0.95) inset,
        /* Glow effect */
        0 0 40px rgba(255, 107, 53, 0.12),
        0 0 80px rgba(255, 107, 53, 0.08),
        0 0 120px rgba(124, 58, 237, 0.05);
}

.problem-card:hover::after,
.feature-card:hover::after,
.step-card:hover::after,
.specialist-card:hover::after {
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, transparent 4px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, transparent 4px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, transparent 2px),
        linear-gradient(270deg, rgba(255, 255, 255, 0.25) 0%, transparent 2px);
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.12) 0%,
        rgba(124, 58, 237, 0.08) 100%
    );
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    box-shadow: 
        0 2px 8px rgba(255, 107, 53, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.glass-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.5) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.04),
        0 2px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(0, 0, 0, 0.03) inset;
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.glass-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.glass-button-primary {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    box-shadow: 
        0 4px 20px rgba(255, 107, 53, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.3) inset,
        0 -2px 0 rgba(0, 0, 0, 0.15) inset;
}

.glass-button-primary::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}

.glass-button-primary:hover {
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.5),
        0 2px 0 rgba(255, 255, 255, 0.3) inset;
}

/* ========================================
   NEURAL NETWORK BACKGROUND
   ======================================== */

.neural-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.neural-network svg {
    width: 100%;
    height: 100%;
}

.neural-node {
    transition: opacity 0.5s ease;
    will-change: transform, cx, cy, opacity;
}

.neural-connection {
    stroke-width: 1.5;
    fill: none;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: linear-gradient(
        180deg,
        rgba(250, 251, 254, 0.7) 0%,
        rgba(250, 251, 254, 0.6) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-left: 1px;
}

.logo-dot {
    color: var(--text-muted);
    font-weight: 400;
}

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

.nav-link {
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.6);
}

.nav-cta {
    padding: 10px 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(250, 251, 254, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 24px;
    padding: 24px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
}

/* ========================================
   CONTAINER & SECTIONS
   ======================================== */

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

.section {
    position: relative;
    padding: var(--section-padding) 0;
    z-index: 1;
}

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

.section-label {
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: var(--container-width);
    width: 100%;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.primary-button {
    font-size: 1rem;
    padding: 16px 32px;
}

.primary-button.large {
    font-size: 1.0625rem;
    padding: 18px 36px;
}

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

.secondary-button .btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 560px;
}

.hero-mockup {
    width: 100%;
    max-width: 360px;
    padding: 24px;
    z-index: 2;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF6B6B; }
.mockup-dots span:nth-child(2) { background: #FFE66D; }
.mockup-dots span:nth-child(3) { background: #4ECDC4; }

.mockup-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Child Profile Visualization */
.profile-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

.profile-avatar svg {
    width: 32px;
    height: 32px;
    color: white;
}

.profile-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-age {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -4px;
}

/* Skills Chart */
.skills-chart {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}

.skill-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.skill-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.skill-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.skill-icon.speech { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
.skill-icon.logic { background: rgba(124, 58, 237, 0.1); color: var(--secondary); }
.skill-icon.motor { background: rgba(20, 184, 166, 0.1); color: var(--accent); }
.skill-icon.attention { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }

.skill-info {
    flex: 1;
}

.skill-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.skill-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease;
}

.skill-fill.speech { background: var(--gradient-primary); width: 75%; }
.skill-fill.logic { background: linear-gradient(90deg, var(--secondary), var(--accent-pink)); width: 60%; }
.skill-fill.motor { background: linear-gradient(90deg, var(--accent), #34D399); width: 85%; }
.skill-fill.attention { background: linear-gradient(90deg, var(--accent-pink), var(--primary)); width: 70%; }

.skill-percent {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 36px;
    text-align: right;
}

/* AI Recommendation */
.ai-recommendation {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    width: 100%;
}

.ai-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

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

.ai-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.ai-message {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Floating Elements - Further from center */
.floating-elements {
    position: absolute;
    inset: -120px;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    pointer-events: auto;
    cursor: default;
    will-change: transform;
}

.floating-card .card-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    width: 16px;
    height: 16px;
}

.card-icon.success { background: rgba(20, 184, 166, 0.15); color: var(--accent); }
.card-icon.star { background: rgba(255, 193, 7, 0.15); color: #F59E0B; }
.card-icon.book { background: rgba(124, 58, 237, 0.15); color: var(--secondary); }
.card-icon.trophy { background: rgba(255, 107, 53, 0.15); color: var(--primary); }
.card-icon.chart { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.card-icon.brain { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }

.card-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-subtext {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8125rem;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

@keyframes fadeInUp {
    to { opacity: 1; }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 245, 240, 0.5) 50%, transparent 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
}

.problem-icon.confused { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
.problem-icon.money { background: rgba(124, 58, 237, 0.1); color: var(--secondary); }
.problem-icon.time { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }
.problem-icon.chart { background: rgba(20, 184, 166, 0.1); color: var(--accent); }

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

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

.solution-showcase {
    display: grid;
    gap: 32px;
}

.solution-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    padding: 48px;
    align-items: center;
}

.solution-visual {
    display: flex;
    justify-content: center;
}

/* Radar Chart */
.radar-chart {
    position: relative;
    width: 300px;
    height: 300px;
}

.radar-svg {
    width: 100%;
    height: 100%;
}

.radar-polygon {
    animation: radarPulse 3s ease-in-out infinite;
}

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

.radar-point {
    filter: drop-shadow(0 0 6px currentColor);
    animation: pointPulse 2s ease-in-out infinite;
}

.radar-point:nth-child(1) { animation-delay: 0s; }
.radar-point:nth-child(2) { animation-delay: 0.3s; }
.radar-point:nth-child(3) { animation-delay: 0.6s; }
.radar-point:nth-child(4) { animation-delay: 0.9s; }
.radar-point:nth-child(5) { animation-delay: 1.2s; }
.radar-point:nth-child(6) { animation-delay: 1.5s; }

@keyframes pointPulse {
    0%, 100% { r: 6; }
    50% { r: 8; }
}

.radar-labels {
    position: absolute;
    inset: 0;
}

.radar-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.solution-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
}

.solution-features li svg {
    flex-shrink: 0;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background: linear-gradient(180deg, transparent 0%, rgba(240, 244, 255, 0.5) 50%, transparent 100%);
}

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

.feature-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.feature-card.large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.feature-card.large::before,
.feature-card.large::after {
    display: none;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-icon.ai { background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(124, 58, 237, 0.15)); color: var(--primary); }
.feature-icon.profile { background: rgba(124, 58, 237, 0.1); color: var(--secondary); }
.feature-icon.games { background: rgba(20, 184, 166, 0.1); color: var(--accent); }
.feature-icon.calendar { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }
.feature-icon.trophy { background: rgba(255, 193, 7, 0.1); color: #F59E0B; }

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-preview {
    margin-top: 24px;
}

/* AI Chat Mockup */
.ai-chat-mockup {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar svg {
    width: 18px;
    height: 18px;
    color: white;
}

.message-bubble {
    padding: 12px 16px;
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 85%;
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: height 0.5s ease;
}

/* Mini Calendar */
.mini-calendar {
    display: flex;
    gap: 8px;
}

.cal-day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
}

.cal-day.done {
    background: rgba(20, 184, 166, 0.15);
    color: var(--accent);
}

.cal-day.active {
    background: var(--gradient-primary);
    color: white;
}

/* Badges Preview */
.badges-preview {
    display: flex;
    gap: 10px;
}

.badge-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.25);
}

.badge-item svg {
    width: 22px;
    height: 22px;
    color: #F59E0B;
}

/* Game Icons */
.game-icons {
    display: flex;
    gap: 12px;
}

.game-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon svg {
    width: 22px;
    height: 22px;
}

.game-icon:nth-child(1) { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
.game-icon:nth-child(2) { background: rgba(124, 58, 237, 0.1); color: var(--secondary); }
.game-icon:nth-child(3) { background: rgba(20, 184, 166, 0.1); color: var(--accent); }
.game-icon:nth-child(4) { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.steps-container {
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.step-card {
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-icon.register { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
.step-icon.diagnose { background: rgba(124, 58, 237, 0.1); color: var(--secondary); }
.step-icon.trajectory { background: rgba(20, 184, 166, 0.1); color: var(--accent); }
.step-icon.progress { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }

.step-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ========================================
   SPECIALISTS SECTION
   ======================================== */

.specialists-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 245, 240, 0.3) 50%, transparent 100%);
}

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

.specialist-card {
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.specialist-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.specialist-avatar svg {
    width: 36px;
    height: 36px;
}

.specialist-avatar.speech { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
.specialist-avatar.neuro { background: rgba(124, 58, 237, 0.1); color: var(--secondary); }
.specialist-avatar.teacher { background: rgba(20, 184, 166, 0.1); color: var(--accent); }
.specialist-avatar.psycho { background: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }

.avatar-glow {
    position: absolute;
    inset: -10px;
    background: var(--gradient-glow);
    border-radius: 50%;
    opacity: 0.5;
}

.specialist-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.specialist-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.specialist-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.specialist-tags .tag {
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 20px;
    color: var(--primary-dark);
}

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

.cta-section {
    padding-bottom: 120px;
}

.cta-card {
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: 2px solid white;
    border-radius: 50%;
    margin-left: -8px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar svg {
    width: 18px;
    height: 18px;
    color: white;
}

.cta-trust span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.footer {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.6) 100%
    );
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 520px;
    }
    
    .solution-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .solution-features {
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-card.large {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 24px 64px;
    }
    
    .hero-visual {
        min-height: 460px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.large {
        grid-column: span 1;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PAGE SPECIFIC - About & Pricing
   ======================================== */

.page-hero {
    padding: 160px 24px 80px;
    text-align: center;
    background: var(--gradient-hero);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   MISSION SECTION - Enhanced
   ======================================== */

.mission-section {
    overflow: visible;
}

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

.mission-content {
    max-width: 540px;
}

.mission-content .section-label {
    margin-bottom: 24px;
    display: inline-block;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-point {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.5) 0%, 
        rgba(255,255,255,0.25) 100%
    );
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-top-color: rgba(255,255,255,0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.mission-point:hover {
    transform: translateX(8px);
    border-top-color: rgba(255,255,255,0.9);
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.06),
        0 0 30px rgba(255, 107, 53, 0.08);
}

.mission-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-point-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.mission-point-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.mission-point-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Mission Visual - Animated Orbs */
.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-orbs-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.mission-central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.7) 0%, 
        rgba(255,255,255,0.4) 100%
    );
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255,255,255,0.6);
    border-top-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.08),
        0 0 60px rgba(255,107,53,0.15),
        0 0 0 1px rgba(255,255,255,0.4) inset,
        0 2px 0 rgba(255,255,255,0.8) inset;
    animation: centralPulse 4s ease-in-out infinite;
    z-index: 10;
}

.mission-central-orb svg {
    width: 44px;
    height: 44px;
    color: var(--primary);
}

@keyframes centralPulse {
    0%, 100% { 
        box-shadow: 
            0 20px 60px rgba(0,0,0,0.08),
            0 0 60px rgba(255,107,53,0.15),
            0 0 0 1px rgba(255,255,255,0.4) inset,
            0 2px 0 rgba(255,255,255,0.8) inset;
    }
    50% { 
        box-shadow: 
            0 20px 60px rgba(0,0,0,0.08),
            0 0 80px rgba(255,107,53,0.25),
            0 0 120px rgba(124,58,237,0.1),
            0 0 0 1px rgba(255,255,255,0.5) inset,
            0 2px 0 rgba(255,255,255,0.9) inset;
    }
}

/* Orbits */
.mission-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(255,107,53,0.15);
}

.mission-orbit.orbit-1 {
    width: 240px;
    height: 240px;
    animation: orbitRotate 25s linear infinite;
}

.mission-orbit.orbit-2 {
    width: 340px;
    height: 340px;
    animation: orbitRotate 35s linear infinite reverse;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(calc(50% + 50px)) rotate(calc(-1 * var(--angle)));
}

.orbit-1 .orbit-item {
    transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle)));
}

.orbit-2 .orbit-item {
    transform: rotate(var(--angle)) translateX(170px) rotate(calc(-1 * var(--angle)));
}

.orbit-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbitItemFloat 3s ease-in-out infinite;
}

.orbit-dot.small {
    width: 44px;
    height: 44px;
}

.orbit-dot svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.orbit-dot.small svg {
    width: 20px;
    height: 20px;
}

@keyframes orbitItemFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Floating particles */
.mission-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mission-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.5;
    animation: particleFloat 6s ease-in-out infinite;
}

.mission-particles .particle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.mission-particles .particle:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.mission-particles .particle:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 2s; }
.mission-particles .particle:nth-child(4) { bottom: 20%; right: 25%; animation-delay: 3s; }
.mission-particles .particle:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.mission-particles .particle:nth-child(6) { top: 40%; right: 8%; animation-delay: 5s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-15px) scale(1.3);
        opacity: 0.8;
    }
}

/* Values Section - Enhanced */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(124,58,237,0.1));
}

.team-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.team-avatar--product {
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,140,90,0.1));
}
.team-avatar--product svg { color: #FF6B35; }

.team-avatar--science {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(159,103,255,0.1));
}
.team-avatar--science svg { color: #7C3AED; }

.team-avatar--tech {
    background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(52,211,153,0.1));
}
.team-avatar--tech svg { color: #14B8A6; }

.team-avatar--design {
    background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(244,114,182,0.1));
}
.team-avatar--design svg { color: #EC4899; }

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card .role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-content {
        max-width: 100%;
        order: 2;
    }
    
    .mission-visual {
        order: 1;
    }
    
    .mission-orbs-container {
        width: 320px;
        height: 320px;
    }
    
    .mission-orbit.orbit-1 { width: 200px; height: 200px; }
    .mission-orbit.orbit-2 { width: 280px; height: 280px; }
    .orbit-1 .orbit-item { transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle))); }
    .orbit-2 .orbit-item { transform: rotate(var(--angle)) translateX(140px) rotate(calc(-1 * var(--angle))); }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
