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

:root {
    /* Brand Colors - Lavender Theme */
    --primary-color: #9b87f5;
    --primary-dark: #7c3aed;
    --primary-light: #c4b5fd;
    --secondary-color: #d8b4fe;
    --accent-color: #e9d5ff;
    
    /* Neutrals */
    --bg-color: #ffffff;
    --bg-secondary: #faf5ff;
    --bg-tertiary: #f3e8ff;
    --text-primary: #1e1b4b;
    --text-secondary: #6b21a8;
    --text-muted: #a78bfa;
    
    /* Borders & Shadows - Lavender accent */
    --border-color: #e9d5ff;
    --shadow-sm: 0 1px 2px 0 rgba(155, 135, 245, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(155, 135, 245, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(155, 135, 245, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(155, 135, 245, 0.25);
    
    /* Spacing */
    --spacing-unit: 8px;
    --container-width: 1200px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 48px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 24px;
}

p {
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(155, 135, 245, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 135, 245, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(155, 135, 245, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(155, 135, 245, 0.7);
    }
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

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

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #9b87f5 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-cta {
    margin-bottom: 48px;
}

.cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

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

/* Problem Section */
.problem-section {
    background: var(--bg-secondary);
}

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

.problem-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, #9b87f5 0%, #7c3aed 100%);
    color: white;
}

.solution-section .section-title,
.solution-section .section-subtitle {
    color: white;
}

.solution-video {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    font-size: 64px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-secondary);
}

.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.comparison-header {
    background: var(--bg-tertiary);
    font-weight: 600;
}

.comparison-cell {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.comparison-cell.highlight {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.comparison-cell.feature-name {
    text-align: left;
    justify-content: flex-start;
    font-weight: 500;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.competitor-name {
    color: var(--text-secondary);
    font-weight: 600;
}

.check {
    color: #9b87f5;
    font-size: 24px;
    font-weight: 700;
}

.cross {
    color: #ef4444;
    font-size: 24px;
    font-weight: 700;
}

.rating {
    font-size: 16px;
}

.total-row {
    background: var(--bg-tertiary);
    font-weight: 600;
}

.total-row .comparison-cell.highlight {
    background: linear-gradient(135deg, #9b87f5 0%, #7c3aed 100%);
    color: white;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.step-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b87f5 0%, #7c3aed 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
}

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

.demo-box {
    display: inline-block;
    padding: 40px;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-radius: var(--radius-lg);
    max-width: 600px;
}

.demo-box h3 {
    margin-bottom: 12px;
}

.demo-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b87f5 0%, #d8b4fe 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

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

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

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

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-badge.best-value {
    background: var(--accent-color);
    color: white;
}

.pricing-price {
    text-align: center;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-savings {
    text-align: center;
    font-size: 14px;
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-secondary);
}

.pricing-features .feature-icon {
    color: #9b87f5;
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
}

.pricing-guarantee {
    text-align: center;
}

.guarantee-box {
    display: inline-block;
    padding: 32px;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #9b87f5;
}

.guarantee-box h3 {
    margin-bottom: 12px;
    color: #7c3aed;
}

.guarantee-box p {
    color: #6b21a8;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-question {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #9b87f5 0%, #7c3aed 100%);
    color: white;
}

.final-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    color: white;
    margin-bottom: 16px;
}

.final-cta-box > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit {
    color: white;
    font-weight: 500;
}

.final-cta-box .cta-note {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .features-grid,
    .steps-grid,
    .testimonials-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell.highlight {
        border-left: none;
        border-right: none;
        border-top: 3px solid var(--primary-color);
        border-bottom: 3px solid var(--primary-color);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading placeholder for images */
.hero-image img {
    background: var(--bg-tertiary);
}
