/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Root variables matching Mighty Cursor design */
:root {
    --primary-bg: rgb(7, 6, 22);
    --text-white: rgb(255, 255, 255);
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --button-bg: rgb(255, 255, 255);
    --button-text: rgb(7, 6, 22);
    --accent-purple: #8B5CF6;
    --accent-teal: #14B8A6;
    --gradient-bg: linear-gradient(135deg, rgb(7, 6, 22) 0%, rgb(30, 27, 75) 50%, rgb(7, 6, 22) 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar-brand {
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.navbar-nav .nav-link:hover {
    color: var(--text-white) !important;
}

.cta-button {
    background: var(--button-bg) !important;
    color: var(--button-text) !important;
    border: none;
    border-radius: 42px;
    padding: 18px 34px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 61.6px;
    color: var(--text-white);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 3rem;
}

/* Video Container */
.video-container {
    max-width: 720px;
    margin: 0 auto 2rem;
    position: relative;
}

.video-placeholder {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--accent-purple);
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: #7C3AED;
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
}

.video-overlay h5 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-overlay p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

.feature-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #0D9488;
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* How it Works Section */
.how-it-works-section {
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

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

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-details strong {
    color: var(--text-white);
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.feature-details p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.pricing-range {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

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

.pricing-features .fas {
    color: var(--accent-teal);
    font-size: 14px;
}

.pricing-contact {
    color: var(--text-muted);
    font-size: 14px;
    margin: 2rem 0;
}

.pricing-cta {
    background: var(--accent-purple) !important;
    color: white !important;
    border: none;
    border-radius: 42px;
    padding: 18px 34px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #7C3AED !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: var(--text-white);
    border: none;
    font-weight: 500;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-purple);
}

.accordion-body {
    color: var(--text-gray);
    padding: 0 1.5rem 1.5rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-description {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    padding: 12px 16px;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--text-white);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-submit {
    background: var(--accent-purple) !important;
    color: white !important;
    border: none;
    border-radius: 42px;
    padding: 18px 34px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #7C3AED !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
}

.thank-you-content .fas {
    font-size: 4rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.thank-you-content h3 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-gray);
    font-size: 14px;
}

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

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

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.contact-info {
    color: var(--text-gray);
    font-size: 14px;
}

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

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

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Pricing Page Styles */
.pricing-plans-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-plan {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.pricing-plan.featured {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.05);
}

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

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

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.plan-period {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

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

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

.plan-features li {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features .fas {
    color: var(--accent-teal);
    font-size: 14px;
}

.plan-cta {
    width: 100%;
    margin-top: 2rem;
    border-radius: 42px;
    padding: 18px 34px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

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

.pricing-faq-section {
    padding: 80px 0;
}

.cta-section {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-button-large {
    background: var(--accent-purple) !important;
    color: white !important;
    border: none;
    border-radius: 42px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #7C3AED !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Legal Pages Styles */
.legal-section {
    padding: 120px 0 80px;
}

.legal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.legal-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 3rem;
}

.legal-section-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-section-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-section-content ul {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--accent-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .feature-card,
    .contact-card,
    .pricing-card,
    .pricing-plan {
        padding: 2rem;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-price {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .legal-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 24px;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7C3AED;
}
