/* Color Variables - Extracted from fal.ai */
:root {
    --primary-bg: linear-gradient(135deg, #99ecff 0%, #adff00 100%);
    --secondary-bg: #99ecff;
    --accent-yellow: #adff00;
    --accent-purple: #ab77ff;
    --accent-blue: #99edff;
    --text-dark: #262626;
    --text-muted: #454545;
    --text-light: #ededed;
    --button-dark: #262626;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --surface-light: #f6f6f6;
    --content-base: #454545;
    --content-strong: #262626;
    --content-light: #666666;
    --stroke-base: rgba(0,0,0,.14);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--accent-purple);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-purple);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50px;
}

.shape-1 {
    width: 200px;
    height: 80px;
    background: var(--accent-yellow);
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-purple);
    top: 20%;
    right: 15%;
    border-radius: 50%;
}

.shape-3 {
    width: 300px;
    height: 100px;
    background: var(--accent-yellow);
    bottom: 20%;
    right: 5%;
    transform: rotate(25deg);
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--accent-purple);
    bottom: 15%;
    left: 5%;
    border-radius: 50%;
}

.pixel-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--accent-purple) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--accent-yellow) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.pixel-pattern-1 {
    top: 10%;
    right: 30%;
}

.pixel-pattern-2 {
    bottom: 10%;
    left: 20%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    margin-left: 1rem;
}

.btn-primary {
    background: var(--button-dark);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.intro-section {
    background: var(--white);
}

/* Features Section */
.features-section {
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Preview Section */
.pricing-preview-section {
    background: var(--light-gray);
}

.pricing-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.price-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.price-unit {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-note {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-yellow));
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--text-dark);
}

.cta-section .btn-primary:hover {
    background: var(--light-gray);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
}

.footer-brand .logo-icon {
    color: var(--accent-yellow);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-info i {
    color: var(--accent-yellow);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-divider {
    border-color: #444;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: #999;
    margin: 0;
}

/* Contact and Legal Pages */
.contact-hero-section, .legal-hero-section {
    background: var(--primary-bg);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-form-section {
    background: var(--white);
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stroke-base);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--stroke-base);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.2rem rgba(171, 119, 255, 0.25);
}

.contact-info-section {
    background: var(--light-gray);
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--stroke-base);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.legal-content-section {
    background: var(--white);
}

.legal-content {
    max-width: none;
}

.legal-content h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--content-base);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--content-base);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Pricing Page Styles */
.pricing-hero-section {
    background: var(--primary-bg);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-plans-section {
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--stroke-base);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-display {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    display: block;
}

.price-unit {
    font-size: 1rem;
    color: var(--content-light);
}

.plan-description {
    color: var(--content-base);
    line-height: 1.6;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--content-base);
}

.pricing-features i {
    color: var(--accent-purple);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.pricing-footer {
    margin-top: 2rem;
}

.pricing-details-section {
    background: var(--light-gray);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.detail-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--content-base);
    line-height: 1.6;
    margin: 0;
}

.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--stroke-base);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--surface-light);
    color: var(--accent-purple);
}

.accordion-body {
    color: var(--content-base);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-note {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .shape-1, .shape-3 {
        width: 150px;
        height: 60px;
    }
    
    .shape-2, .shape-4 {
        width: 100px;
        height: 100px;
    }
    
    .pixel-pattern {
        width: 150px;
        height: 150px;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-highlight {
        padding: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-hero-section, .legal-hero-section, .pricing-hero-section {
        padding: 100px 0 60px;
    }
}
