/* ===================================
   MyToonStory - Modern Landing Page
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Warm, inviting palette */
    --primary: #FF6B4A;
    --primary-dark: #E85A3A;
    --primary-light: #FF8A70;
    --secondary: #6C5CE7;
    --secondary-light: #A29BFE;
    --accent: #00D9A5;
    --accent-light: #55EFC4;
    
    /* Neutrals */
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --gray-900: #16213E;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hero: linear-gradient(180deg, #0F0F1A 0%, #1A1A2E 50%, #16213E 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(255,107,74,0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-100);
    background: var(--dark);
    overflow-x: hidden;
}

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

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-300);
    position: relative;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(255,107,74,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,74,0.4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9375rem;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-base);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition-base);
}

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

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 100px;
    left: -100px;
    opacity: 0.2;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -100px;
    right: 30%;
    opacity: 0.1;
}

.hero-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(255,107,74,0.1);
    border: 1px solid rgba(255,107,74,0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: var(--space-lg);
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

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

.book-showcase {
    position: relative;
    width: 100%;
    height: 500px;
}

.floating-book {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.floating-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-main {
    width: 280px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.book-1 {
    width: 200px;
    height: 270px;
    left: 0;
    top: 20%;
    z-index: 2;
    animation: float 6s ease-in-out infinite 1s;
    opacity: 0.8;
}

.book-2 {
    width: 180px;
    height: 250px;
    right: 0;
    bottom: 15%;
    z-index: 1;
    animation: float 6s ease-in-out infinite 2s;
    opacity: 0.7;
}

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

.book-1 { animation-name: float-side; }
.book-2 { animation-name: float-side-2; }

@keyframes float-side {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes float-side-2 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(7deg); }
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 { top: 10%; left: 20%; animation-delay: 0s; }
.star-2 { top: 30%; right: 10%; animation-delay: 1s; color: var(--secondary); }
.star-3 { bottom: 20%; left: 10%; animation-delay: 2s; color: var(--accent); }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-500), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===================================
   Trusted Section
   =================================== */
.trusted-section {
    padding: var(--space-3xl) 0;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-item {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255,107,74,0.1);
    border: 1px solid rgba(255,107,74,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--space-md);
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(255,107,74,0.3);
    transform: translateY(-4px);
}

.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,74,0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

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

.feature-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-xl);
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
}

.feature-visual img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

/* ===================================
   How It Works Section
   =================================== */
.how-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.step-content {
    padding: 0 var(--space-md);
}

.step-visual {
    width: 160px;
    height: 160px;
    margin: 0 auto var(--space-lg);
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
}

.step-visual img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.step p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    color: var(--gray-600);
    margin-top: 80px;
}

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

/* ===================================
   Showcase Section
   =================================== */
.showcase-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-900);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.showcase-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: var(--transition-base);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-style {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.showcase-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--gray-500);
    transition: var(--transition-base);
}

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

.save-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-left: var(--space-xs);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    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: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(255,107,74,0.1) 0%, rgba(108,92,231,0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

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

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: var(--space-xl) 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-400);
}

.price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.pricing-features li.disabled {
    color: var(--gray-600);
}

.pricing-features .check {
    font-size: 1rem;
    color: var(--accent);
}

.pricing-features li.disabled .check {
    color: var(--gray-600);
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

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

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

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

.cta-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -200px;
    left: -100px;
    opacity: 0.5;
}

.cta-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -150px;
    right: -50px;
    opacity: 0.4;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content > p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: var(--space-md) 0 var(--space-lg);
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-500);
    padding: var(--space-sm) 0;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .waitlist-form .form-group {
        flex-direction: column;
    }
    
    .waitlist-form input {
        width: 100%;
        text-align: center;
    }
    
    .waitlist-benefits {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ===================================
   Hero Launch Note
   =================================== */
.hero-launch-note {
    margin-top: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--gray-400);
}

/* ===================================
   Pricing Coming Soon Overlay
   =================================== */
.pricing-wrapper {
    position: relative;
}

.pricing-coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
}

.coming-soon-content {
    text-align: center;
    padding: var(--space-3xl);
    max-width: 400px;
}

.coming-soon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-lg);
}

.coming-soon-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.coming-soon-content p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.pricing-muted {
    opacity: 0.4;
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
}

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

/* ===================================
   Waitlist Section
   =================================== */
.waitlist-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.waitlist-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

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

.waitlist-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -200px;
    left: -100px;
    opacity: 0.5;
}

.waitlist-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -150px;
    right: -50px;
    opacity: 0.4;
}

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

.waitlist-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.waitlist-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.waitlist-content > p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.waitlist-form {
    margin-bottom: var(--space-2xl);
}

.waitlist-form .form-group {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    outline: none;
    transition: var(--transition-base);
}

.waitlist-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.waitlist-form input:focus {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.waitlist-form button {
    flex-shrink: 0;
    background: var(--white);
    color: var(--dark);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.form-message {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    min-height: 24px;
}

.form-message.success {
    color: var(--accent-light);
}

.form-message.error {
    color: #FF6B6B;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
}

.benefit-icon {
    font-size: 1.25rem;
}

.waitlist-privacy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

/* Form loading state */
.waitlist-form button.loading {
    position: relative;
    color: transparent;
}

.waitlist-form button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===================================
   Legal Pages (Privacy & Terms)
   =================================== */
.legal-page {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--dark);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.legal-updated {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: var(--space-2xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-200);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    list-style: none;
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.legal-content ul li {
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-400);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.legal-content ul li strong {
    color: var(--gray-200);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary-light);
}

.legal-footer {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.footer-legal-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

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

.footer-legal-links span {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }
    
    .legal-content {
        padding: 0 var(--space-md);
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
}
