/* ===================================
   AutoFCP Landing Page Styles
   Modern Dark Theme with Purple/Blue
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Cool colors */
    --accent-primary: #8b5cf6;
    --accent-secondary: #6366f1;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    
    /* Warm colors - NEW */
    --accent-pink: #ec4899;
    --accent-rose: #f43f5e;
    --accent-magenta: #d946ef;
    --accent-coral: #fb7185;
    --accent-orange: #f97316;
    
    /* Updated gradients with warm tones */
    --gradient-primary: linear-gradient(135deg, #f43f5e 0%, #ec4899 30%, #8b5cf6 70%, #6366f1 100%);
    --gradient-warm: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #d946ef 100%);
    --gradient-mixed: linear-gradient(135deg, #fb7185 0%, #ec4899 25%, #d946ef 50%, #8b5cf6 75%, #6366f1 100%);
    --gradient-glow: linear-gradient(135deg, rgba(244, 63, 94, 0.4) 0%, rgba(236, 72, 153, 0.4) 50%, rgba(139, 92, 246, 0.4) 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-rose);
    margin-bottom: 24px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

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

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
}

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

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    font-size: 28px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.btn-login {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 16px;
}

.btn-login:hover {
    color: var(--text-primary);
}

.btn-register {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links li:last-child a {
    border-bottom: none;
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(244, 63, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 30%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content.hero-centered {
    text-align: center;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

.hero-centered .hero-stats {
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-coral);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-rose);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

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

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

/* Hero Features Grid - NEW */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
    max-width: 800px;
}

.hero-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-rose);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-card-icon svg {
    color: var(--accent-coral);
}

.feature-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.feature-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    aspect-ratio: 16/10;
}

.video-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.15) 0%, rgba(236, 72, 153, 0.1) 30%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

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

.hero-video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.8) 0%, transparent 50%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.overlay-ui {
    display: flex;
    gap: 12px;
}

.ui-camera {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.ui-camera.active {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
}

/* Hero Scroll Indicator */
.hero-scroll {
    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: 13px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent-rose);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===================================
   Logos Section
   =================================== */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.logos-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.logo-item {
    opacity: 0.5;
    transition: var(--transition-base);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 40px;
    width: auto;
}

.logo-item span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: var(--section-padding) 0;
}

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

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    overflow: hidden;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.feature-card.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0;
}

.feature-video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card.feature-large .feature-content {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--accent-coral);
}

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

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

/* ===================================
   How It Works Section
   =================================== */
.how-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* Old steps grid - kept for reference */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.4) 0%, rgba(236, 72, 153, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 24px;
}

.step-video-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.step-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    color: var(--accent-primary);
    opacity: 0.5;
}

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

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compact Steps Grid - NEW */
.steps-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.step-card-compact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.step-card-compact:hover {
    border-color: var(--accent-rose);
    transform: translateY(-4px);
}

.step-number-compact {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Demo Video */
.demo-section {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    aspect-ratio: 16/9;
}

.demo-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.12) 0%, rgba(236, 72, 153, 0.08) 30%, transparent 50%);
    z-index: 0;
}

.demo-video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.placeholder-content svg {
    opacity: 0.3;
}

/* ===================================
   Pricing Section - New Design
   =================================== */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card-new {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.pricing-card-new:hover {
    border-color: var(--accent-rose);
    transform: translateY(-4px);
}

.pricing-card-new.featured {
    border-color: var(--accent-rose);
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.08) 0%, var(--bg-card) 100%);
}

.pricing-card-new.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 0 0 4px 4px;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-duration {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plan-bonus {
    font-size: 15px;
    color: var(--text-secondary);
}

.plan-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 28px;
}

.plan-pricing {
    margin-bottom: 32px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.discount-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: var(--gradient-warm);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-value {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-total {
    font-size: 15px;
    color: var(--text-secondary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Features List Below Cards */
.pricing-features-list {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-item svg {
    color: var(--accent-coral);
    flex-shrink: 0;
}

/* Old pricing styles kept for backwards compatibility */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.toggle-label.active {
    color: var(--text-primary);
}

.discount-badge {
    padding: 4px 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: var(--transition-base);
}

.toggle-switch.active .toggle-slider {
    left: 27px;
}

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

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--border-color-hover);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-card) 50%);
    border-color: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--accent-primary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-card .btn {
    width: 100%;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--accent-coral);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

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

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

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

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 60% at 50% 120%, rgba(244, 63, 94, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 30% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 20%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.cta-buttons {
    margin-bottom: 24px;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

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

.footer-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-links a:hover {
    color: var(--text-primary);
    border-color: var(--accent-rose);
    background: rgba(244, 63, 94, 0.1);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-links a {
    font-size: 15px;
    color: var(--text-secondary);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* ===================================
   Products Page
   =================================== */
.products-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.products-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.products-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.products-description {
    font-size: 20px;
    color: var(--text-secondary);
}

.products-section {
    padding: 40px 0 var(--section-padding);
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
}

.product-card:hover {
    border-color: var(--border-color-hover);
}

.product-card.featured {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.08) 0%, var(--bg-card) 50%);
    border-color: rgba(244, 63, 94, 0.2);
}

.product-card.coming-soon {
    grid-template-columns: 1fr;
    max-width: 600px;
    opacity: 0.7;
}

.product-card:nth-child(even):not(.coming-soon) {
    direction: rtl;
}

.product-card:nth-child(even):not(.coming-soon) > * {
    direction: ltr;
}

.product-badge,
.coming-soon-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 14px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.coming-soon-badge {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.product-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-glow.purple {
    background: radial-gradient(circle, rgba(217, 70, 239, 0.3) 0%, transparent 70%);
}

.icon-glow.cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
}

.icon-glow.pink {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
}

.product-icon svg {
    position: relative;
    z-index: 1;
    color: var(--accent-coral);
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 18px;
    color: var(--accent-coral);
    margin-bottom: 20px;
}

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

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

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

.product-features li svg {
    color: var(--accent-coral);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 16px;
}

.product-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-tertiary);
    aspect-ratio: 4/3;
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, var(--bg-tertiary) 100%);
}

.product-video-placeholder.purple {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, var(--bg-tertiary) 100%);
}

.placeholder-ui {
    padding: 32px;
    width: 100%;
}

.ui-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-track {
    height: 24px;
    background: linear-gradient(90deg, 
        var(--accent-rose) 0%, 
        var(--accent-rose) 30%, 
        var(--accent-pink) 30%, 
        var(--accent-pink) 60%, 
        var(--accent-primary) 60%, 
        var(--accent-primary) 100%
    );
    border-radius: var(--radius-sm);
    opacity: 0.3;
}

.timeline-track:nth-child(2) {
    background: linear-gradient(90deg, 
        var(--accent-pink) 0%, 
        var(--accent-pink) 45%, 
        var(--accent-rose) 45%, 
        var(--accent-rose) 80%, 
        var(--accent-magenta) 80%, 
        var(--accent-magenta) 100%
    );
}

.timeline-track:nth-child(3) {
    background: linear-gradient(90deg, 
        var(--accent-coral) 0%, 
        var(--accent-coral) 20%, 
        var(--accent-rose) 20%, 
        var(--accent-rose) 70%, 
        var(--accent-pink) 70%, 
        var(--accent-pink) 100%
    );
}

.ui-waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 100px;
}

.wave-bar {
    width: 20px;
    background: linear-gradient(180deg, var(--accent-rose) 0%, var(--accent-pink) 100%);
    border-radius: var(--radius-sm);
    opacity: 0.5;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }

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

/* Bundle Section */
.bundle-section {
    padding: 0 0 var(--section-padding);
}

.bundle-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.12) 0%, rgba(236, 72, 153, 0.08) 50%, var(--bg-card) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.bundle-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.2) 0%, transparent 70%);
}

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

.bundle-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bundle-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.bundle-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.bundle-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.bundle-features li svg {
    color: var(--accent-coral);
    flex-shrink: 0;
}

.bundle-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.price-old {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bundle-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-icons {
    position: relative;
    width: 200px;
    height: 200px;
}

.bundle-icon {
    position: absolute;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--accent-primary);
    animation: float 4s ease-in-out infinite;
}

.bundle-icon.icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bundle-icon.icon-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.bundle-icon.icon-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.bundle-icon.icon-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

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

.bundle-icon.icon-2,
.bundle-icon.icon-4 {
    animation-name: floatX;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-card.feature-large {
        grid-column: span 2;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps-grid-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-grid-new {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .features-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-card:nth-child(even):not(.coming-soon) {
        direction: ltr;
    }
    
    .bundle-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bundle-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-auth {
        display: flex;
        gap: 8px;
    }
    
    .nav-auth .btn-login {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .nav-auth .btn-register {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-feature-card {
        padding: 16px;
    }
    
    .logos-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .feature-video-wrapper {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .feature-card.feature-large .feature-content {
        padding: 32px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .pricing-card-new {
        padding: 32px 24px;
    }
    
    .price-value {
        font-size: 44px;
    }
    
    .pricing-features-list {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .product-card {
        padding: 32px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .bundle-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        height: 60px;
    }
    
    .nav-left {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 20px;
    }
    
    .nav-auth .btn-login {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .nav-auth .btn-register {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .mobile-menu {
        top: 60px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .pricing-card {
        padding: 28px 24px;
    }
    
    .price-amount {
        font-size: 40px;
    }
}

