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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(39, 39, 43, 1);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(39, 39, 43, 0.95);
}

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

.logo-icon {
    font-size: 1.5rem;
    color: #4f46e5;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #4f46e5 !important;
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary {
    background-color: #ffffff;
    color: #0000ee;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(39, 39, 43, 1) 0%, rgba(30, 30, 35, 1) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-intro {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.intro-text {
    color: #d0d0d0;
    line-height: 1.7;
}

.hero-buttons {
    margin: 2rem 0;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background-color: #ff5f57; }
.control.yellow { background-color: #ffbd2e; }
.control.green { background-color: #28ca42; }

.mockup-title {
    font-weight: 600;
    color: #ffffff;
}

.mockup-content {
    display: grid;
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.metric-card i {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.metric-card h4 {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Section */
.features-section {
    background: rgba(30, 30, 35, 1);
    padding: 80px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

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

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(30, 30, 35, 1);
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: #d0d0d0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #4f46e5;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* Footer */
.footer {
    background: rgba(20, 20, 25, 1);
    padding: 60px 0 30px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-links a:hover {
    color: #4f46e5;
}

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

.contact-info i {
    color: #4f46e5;
    margin-right: 0.5rem;
    width: 16px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .btn-outline,
    .btn-primary {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .dashboard-mockup {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Styles */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #4f46e5;
    transform: translateY(-2px);
}

/* Pricing Page Styles */
.pricing-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(39, 39, 43, 1) 0%, rgba(30, 30, 35, 1) 100%);
    text-align: center;
}

.pricing-calculator-section {
    background: rgba(30, 30, 35, 1);
}

.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-select,
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-select:focus,
.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    color: #ffffff;
}

.form-select option {
    background-color: #27272b;
    color: #ffffff;
}

.price-result {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.price-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #4f46e5;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.pricing-card.featured {
    border-color: #4f46e5;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.3);
}

.pricing-card.enterprise {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-header i {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4f46e5;
}

.price span {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: #d0d0d0;
}

.pricing-features i {
    color: #4f46e5;
    margin-right: 0.5rem;
    width: 16px;
}

.pricing-footer {
    margin-top: auto;
}

/* FAQ Section */
.faq-section {
    background: rgba(30, 30, 35, 1);
    padding: 80px 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
}

.accordion-button {
    background: transparent;
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    background: transparent;
    color: #d0d0d0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(39, 39, 43, 1) 0%, rgba(30, 30, 35, 1) 100%);
    text-align: center;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.contact-info-card h3 {
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

.contact-info-card .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.contact-info-card .contact-item i {
    color: #4f46e5;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Terms and Privacy Pages */
.legal-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(39, 39, 43, 1) 0%, rgba(30, 30, 35, 1) 100%);
    text-align: center;
}

.legal-content-section {
    padding: 60px 0;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    color: #4f46e5;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
}

.legal-content a {
    color: #4f46e5;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Contact Form Steps */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

/* Form validation styles */
.form-check-input:checked {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.form-check-label {
    color: #d0d0d0;
}

.form-check-label a {
    color: #4f46e5;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}
