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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Variables - Voxa Calendar Blue/Purple Theme */
:root {
    /* Primary blue/purple gradient from onboarding */
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-blue-light: #60a5fa;
    --primary-purple-light: #a78bfa;
    
    /* Secondary colors */
    --accent-cyan: #06b6d4;
    --accent-violet: #7c3aed;
    
    /* Neutral colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 100%);
    
    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-backdrop: blur(20px);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-blue: 0 10px 30px -5px rgb(59 130 246 / 0.4);
    --shadow-purple: 0 10px 30px -5px rgb(139 92 246 / 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 50%, #faf5ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 0 0 0 100px;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-element:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 3s;
}

.float-element:nth-child(4) {
    top: 60%;
    right: 25%;
    animation-delay: 4.5s;
}

.float-element:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.float-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-purple);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg); 
        opacity: 0.15;
    }
}

/* Hero Content */
.hero-content {
    max-width: 550px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.brand-name {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    margin-bottom: 8px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-blue);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-purple);
}

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

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    overflow: hidden;
}

.app-demo {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    color: white;
}

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

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

.demo-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.demo-calendar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
}

.calendar-header {
    margin-bottom: 12px;
}

.calendar-month {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.calendar-event {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
}

.calendar-event.new-event {
    animation: slideIn 0.5s ease, pulse 2s ease-in-out infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.event-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

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

.event-title {
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.event-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
}

.demo-voice-indicator {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.voice-waves {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    height: 24px;
}

.voice-waves span {
    width: 4px;
    height: 24px;
    background: white;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
    transform-origin: center;
}

.voice-waves span:nth-child(1) { animation-delay: 0s; }
.voice-waves span:nth-child(2) { animation-delay: 0.1s; }
.voice-waves span:nth-child(3) { animation-delay: 0.2s; }
.voice-waves span:nth-child(4) { animation-delay: 0.3s; }
.voice-waves span:nth-child(5) { animation-delay: 0.4s; }

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

.voice-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-style: italic;
}

.phone-reflection {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gray-400);
    border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(10px); }
    60% { transform: rotate(45deg) translateY(5px); }
}

/* Problem Section */
.problem {
    padding: 100px 20px;
    background: white;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 60px;
}

.pain-timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(even) .pain-bubble {
    align-items: flex-end;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.timeline-marker i {
    width: 24px;
    height: 24px;
}

.timeline-content {
    flex: 1;
}

.pain-bubble {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pain-bubble h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.pain-bubble p {
    color: var(--gray-600);
    font-size: 15px;
}

.pain-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: 8px;
}

.problem-summary {
    max-width: 600px;
    margin: 0 auto;
}

.summary-content {
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.summary-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.summary-content p {
    color: var(--gray-700);
    font-size: 18px;
    margin-bottom: 8px;
}

.summary-highlight {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px !important;
}

/* Solution Section */
.solution {
    padding: 100px 20px;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: white;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-sub-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sub-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-50);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
}

.sub-icon {
    width: 14px;
    height: 14px;
    color: var(--primary-purple);
}

/* Demo Section */
.demo {
    padding: 100px 20px;
    background: white;
}

.demo-steps {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.demo-step {
    display: flex;
    gap: 40px;
    align-items: center;
}

.demo-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 24px;
}

.step-visual {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 24px;
}

/* Mic Demo */
.mic-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mic-button-demo {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite;
}

.mic-button-demo i {
    width: 28px;
    height: 28px;
    color: white;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
}

.mic-hint {
    font-size: 14px;
    color: var(--gray-500);
}

/* Speech Demo */
.speech-demo {
    text-align: center;
}

.speech-waves {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    height: 40px;
}

.speech-waves span {
    width: 6px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: waveDemo 1s ease-in-out infinite;
    transform-origin: center;
}

.speech-waves span:nth-child(1) { animation-delay: 0s; }
.speech-waves span:nth-child(2) { animation-delay: 0.1s; }
.speech-waves span:nth-child(3) { animation-delay: 0.2s; }
.speech-waves span:nth-child(4) { animation-delay: 0.3s; }
.speech-waves span:nth-child(5) { animation-delay: 0.4s; }

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

.speech-text {
    font-size: 16px;
    color: var(--gray-700);
    font-style: italic;
}

/* Confirmation Demo */
.confirmation-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 48px;
    height: 48px;
    color: #22c55e;
}

.check-icon i {
    width: 48px;
    height: 48px;
}

.confirmation-text {
    font-size: 16px;
    color: var(--gray-700);
}

/* Themes Section */
.themes {
    padding: 100px 20px;
    background: var(--gray-50);
}

.themes-showcase {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.theme-card {
    width: 150px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.theme-preview {
    height: 200px;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
}

.theme-aurora .theme-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.theme-ocean .theme-preview {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

.theme-glass .theme-preview {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.theme-sunset .theme-preview {
    background: linear-gradient(135deg, #f97316 0%, #db2777 100%);
}

.theme-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
}

.theme-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-event {
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.theme-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 350px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-600);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.price-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.4;
}

.feature-item.no-feature {
    color: var(--gray-400);
}

.features-list .feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: transparent;
    overflow: visible;
}

.features-list .feature-check {
    background: #dcfce7;
    color: #22c55e;
}

.features-list .feature-cross {
    background: var(--gray-100);
    color: var(--gray-400);
}

.features-list .feature-icon i {
    width: 14px;
    height: 14px;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    color: var(--gray-500);
    font-size: 14px;
}

.note-icon {
    width: 18px;
    height: 18px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    text-align: center;
}

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

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

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

.app-store-note {
    font-size: 14px;
    color: var(--gray-500);
}

.final-trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.final-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.final-trust-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-purple);
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: var(--gray-900);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 14px;
}

.footer-bottom i {
    width: 14px;
    height: 14px;
    color: #ef4444;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 40px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    /* Scale down phone content to prevent mic overlap */
    .demo-content {
        padding: 15px;
        gap: 16px;
        padding-bottom: 80px;
    }
    
    .demo-calendar {
        padding: 12px;
    }
    
    .demo-voice-indicator {
        padding: 12px;
    }
    
    .phone-mic-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
    }
    
    .phone-mic-button i {
        width: 20px;
        height: 20px;
    }
    
    .demo-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item .pain-bubble {
        align-items: center !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
    
    .themes-showcase {
        gap: 16px;
    }
    
    .theme-card {
        width: 120px;
    }
    
    .theme-preview {
        height: 160px;
    }
}

/* Phone Mic Button */
.phone-mic-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

.phone-mic-button i {
    width: 22px;
    height: 22px;
    color: white;
}

.demo-content {
    position: relative;
}

/* Demo Example */
.demo-example {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.demo-quote {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.quote-marks {
    font-size: 48px;
    color: var(--primary-purple);
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--gray-800);
    font-style: italic;
    padding-top: 12px;
}

.demo-result {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 24px;
}

.demo-result p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.result-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.result-tag i {
    width: 16px;
    height: 16px;
    color: var(--primary-purple);
}

/* AI Section */
.ai-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
}

.optional-badge {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-500);
}

.ai-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ai-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.ai-card.free {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, #eff6ff 0%, white 100%);
}

.ai-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ai-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.ai-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.ai-card p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.ai-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
}

.ai-badge.free-badge {
    background: var(--gradient-primary);
    color: white;
}

.ai-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    color: var(--gray-500);
    font-size: 14px;
}

.ai-note i {
    width: 16px;
    height: 16px;
}

/* Languages Section */
.languages-section {
    padding: 80px 20px;
    background: white;
}

.language-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.language-item {
    background: var(--gray-50);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.language-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .demo-quote {
        flex-direction: column;
        gap: 0;
    }
    
    .quote-marks {
        font-size: 32px;
    }
    
    .quote-text {
        font-size: 18px;
        padding-top: 0;
    }
    
    .result-tags {
        gap: 8px;
    }
    
    .result-tag {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .ai-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .language-flags {
        gap: 10px;
    }
    
    .language-item {
        padding: 10px 16px;
        font-size: 13px;
    }
}
