:root {
    --primary: #FF9900;
    --secondary: #FFFFFF;
    --accent: #FF9900;
    --bg-dark: #0A0A0A;
    --bg-darker: #000000;
    --surface: #1a1a1a;
    --surface-light: #CF8500;
    --text: #ffffff;
    --text-dim: #ffffff;
    --border: rgba(255, 255, 255, 0.15);
    --glow: rgba(0, 0, 0, 0.5);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

[data-theme="light"] {
    --bg-dark: #f5f5f5;
    --bg-darker: #ff0000;
    --surface: #FFFFFF;
    --surface-light: #EBF2FF;
    --text: #050A15;
    --text-dim: #3A4A6A;
    --border: rgba(0, 0, 0, 0.2);
    --glow: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Advanced Animated Background */
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    inset: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 50%;
    right: -5%;
    animation-delay: -7s;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -15%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(100px, -50px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-50px, 100px) scale(0.9) rotate(240deg); }
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles with trails */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
    animation: particle-drift 15s infinite ease-in-out;
}

@keyframes particle-drift {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% { 
        transform: translate(var(--x), var(--y)) scale(1.5);
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
}

/* Animated Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    animation: header-slide-down 1s ease-out;
}

@keyframes header-slide-down {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 20px var(--glow);
    position: relative;
    overflow: hidden;
    animation: logo-pulse 3s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: logo-shine 3s linear infinite;
}

@keyframes logo-pulse {
    0%, 100% { box-shadow: 0 4px 20px var(--glow); }
    50% { box-shadow: 0 4px 40px var(--glow), 0 0 60px var(--glow); }
}

@keyframes logo-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, var(--text), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--surface);
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: status-wave 2s ease-in-out infinite;
}

@keyframes status-wave {
    0%, 100% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s infinite;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #00FF88;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.theme-toggle {
    width: 50px;
    height: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.theme-toggle:hover::before {
    opacity: 0.5;
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: scale(1.1) rotate(180deg);
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Hero Section with advanced animations */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(45, 45, 45, 0.15));
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    animation: badge-entrance 1s ease-out 0.5s both;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: badge-shimmer 3s linear infinite;
}

@keyframes badge-entrance {
    from { 
        transform: translateY(-50px) scale(0.5);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes badge-shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -4px;
    position: relative;
    animation: title-entrance 1s ease-out 0.7s both, gradient-shift 5s ease-in-out infinite;
}

.hero-title::after {
    content: 'KAPATYCH MANAGER';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes title-entrance {
    from { 
        transform: translateY(100px) scale(0.8);
        opacity: 0;
        filter: blur(10px);
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: subtitle-entrance 1s ease-out 0.9s both;
}

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

/* Stats Grid with 3D effect */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 650px;
    width: 100%;
    margin-top: 60px;
    perspective: 1000px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    animation: stat-pop 0.6s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 1.1s; }
.stat-card:nth-child(2) { animation-delay: 1.3s; }

@keyframes stat-pop {
    from { 
        transform: scale(0) rotateY(180deg);
        opacity: 0;
    }
    to { 
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

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

.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(45, 45, 45, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    border-radius: 50%;
}

.stat-card:hover::after {
    width: 300px;
    height: 300px;
}

.stat-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 25px 60px var(--glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Unique Feature Cards with different layouts */
.section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: line-grow 2s ease-in-out infinite;
}

@keyframes line-grow {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 200px; opacity: 1; }
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Asymmetric Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-1 {
    grid-column: span 7;
    grid-row: span 1;
}

.feature-card-2 {
    grid-column: span 5;
    grid-row: span 1;
}

.feature-card-3 {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(45, 45, 45, 0.08));
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    100% { transform: rotate(360deg); }
}

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

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 30px 70px var(--glow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    animation: icon-float 3s ease-in-out infinite;
}

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

.feature-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--text);
}

.feature-desc {
    color: var(--text-dim);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.feature-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: tag-shine 2s linear infinite;
}

@keyframes tag-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Commands Section with Accordion Animation */
.commands-container {
    max-width: 1000px;
    margin: 0 auto;
}

.command-category {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.command-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}

.command-category:hover::before,
.command-category[open]::before {
    transform: scaleY(1);
}

.command-category:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: -10px 10px 40px var(--glow);
}

.category-header {
    padding: 28px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.category-header:hover::before {
    left: 100%;
}

.category-header:hover {
    background: var(--surface);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 15px;
}

.priority-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.category-icon {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--secondary);
}

.command-category[open] .category-icon {
    transform: rotate(180deg);
}

.category-content {
    padding: 30px 35px;
    color: var(--text-dim);
    line-height: 1.9;
    border-top: 1px solid var(--border);
    font-size: 1.05rem;
    animation: content-expand 0.4s ease-out;
}

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

/* Rules Section with unique layout */
.rules-container {
    max-width: 1000px;
    margin: 0 auto;
}

.rules-list {
    list-style: none;
    display: grid;
    gap: 20px;
}

.rule-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 28px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent);
    transition: width 0.4s;
}

.rule-item:hover::before {
    width: 100%;
}

.rule-item:hover {
    border-color: var(--primary);
    transform: translateX(15px) scale(1.02);
    box-shadow: -15px 15px 50px var(--glow);
}

.rule-number {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    margin-right: 12px;
    font-size: 1.2rem;
    display: inline-block;
    min-width: 45px;
}

.punishment {
    display: inline-block;
    margin-left: 15px;
    padding: 6px 14px;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.4);
    border-radius: 10px;
    color: #FF0055;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: punishment-glow 2s ease-in-out infinite;
}

@keyframes punishment-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 0, 85, 0.2); }
    50% { box-shadow: 0 0 15px rgba(255, 0, 85, 0.5); }
}

/* FAQ with staggered animation */
.faq-grid {
    display: grid;
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transition: height 0.3s;
}

.faq-item:hover::after,
.faq-item[open]::after {
    height: 100%;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateX(-10px);
    box-shadow: 10px 10px 40px var(--glow);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    font-size: 1.05rem;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--text);
}

.faq-answer {
    padding: 0 28px 22px;
    color: var(--text-dim);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    animation: answer-slide 0.3s ease-out;
}

@keyframes answer-slide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price Section */
.price-section {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.price-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.price-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.price-meta {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.price-content {
    color: var(--text);
    line-height: 1.9;
    font-size: 1.05rem;
}

.price-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.price-content p {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.price-category {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.price-item:last-child {
    border-bottom: none;
}

.price-amount {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
}

/* Footer with columns */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 40px 40px;
    margin-top: 120px;
    position: relative;
    text-align: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Navigation Dock with morph effect */
.nav-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: var(--surface);
    backdrop-filter: blur(20px);
    padding: 15px;
    border-radius: 35px;
    border: 1px solid var(--border);
    gap: 10px;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
    animation: dock-entrance 1s ease-out 2s both;
}

@keyframes dock-entrance {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav-link {
    padding: 16px 26px;
    border-radius: 25px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: var(--text);
    transform: translateY(-3px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px var(--glow);
    transform: translateY(-5px);
}

.nav-link.active::before {
    opacity: 0;
}

.nav-icon {
    width: 20px;
    height: 20px;
}

/* Loader with animation */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease;
}

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

.loader-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 35px;
    position: relative;
    animation: loader-morph 2s ease-in-out infinite;
}

@keyframes loader-morph {
    0%, 100% { 
        border-radius: 28px;
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 40px var(--glow);
    }
    50% { 
        border-radius: 50%;
        transform: rotate(180deg) scale(1.1);
        box-shadow: 0 0 80px var(--glow);
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    animation: loader-text-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-text-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Utility */
section {
    display: none;
}

section.active {
    display: block;
    animation: section-fade-in 0.6s ease-out;
}

@keyframes section-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .feature-card-1,
    .feature-card-2 {
        grid-column: span 12;
    }

    .feature-card-3 {
        grid-template-columns: 1fr;
    }

    .price-section {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .status-badge {
        display: none;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .section {
        padding: 60px 20px;
    }

    .nav-link span {
        display: none;
    }

    .nav-link {
        padding: 16px;
        border-radius: 50%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}