/* Import Google Fonts as fallback for Aspekta */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;550;600;700&display=swap');

/* CSS Variables for Colors */
:root {
    --primary-gradient: linear-gradient(91deg, #8c5cf5 -19.42%, #5c42b0 46.15%, #330e53 99.17%);
    --primary-color: #8c5cf5;
    --primary-dark: #5c42b0;
    --primary-darker: #330e53;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-dark: oklch(0.21 0.01 264.38);
    --text-light: oklch(1 0 0);
    --button-bg: oklch(0.52 0.28 284.9);
    --background-light: oklch(0.96 0 0);
}

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

body {
    font-family: 'Aspekta', 'Inter', ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-content i {
    font-size: 12px;
}

/* Header */
.main-header {
    background-color: var(--background-light);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.navbar-brand .logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

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

.navbar-actions .btn {
    font-size: 16px;
    font-weight: 550;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--button-bg);
    border-color: var(--button-bg);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

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

/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 72px;
    font-weight: 550;
    line-height: 90px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 550;
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}

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

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

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

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

.feature-card h3 {
    font-size: 24px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Process Flow */
.process-flow {
    margin-top: 80px;
    text-align: center;
}

.process-flow h3 {
    font-size: 36px;
    font-weight: 550;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.process-step {
    text-align: center;
}

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

.process-step h4 {
    font-size: 20px;
    font-weight: 550;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-header {
    padding: 32px 32px 0;
    text-align: center;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.service-content {
    padding: 32px;
}

.service-content p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-gradient);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-brand .logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

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

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

.contact-info p {
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 2px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 80px 0;
    text-align: center;
}

.pricing-header h1 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-cards {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.pricing-card {
    background: var(--dark-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--white);
    height: 100%;
}

.pricing-card .card-header h3 {
    font-size: 24px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--white);
}

.pricing-card .card-header p {
    color: #ccc;
    margin-bottom: 32px;
    line-height: 1.7;
}

.detailed-pricing {
    padding: 100px 0;
}

.detailed-pricing h2 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
}

.detailed-pricing > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-table-section {
    margin-bottom: 60px;
}

.pricing-table-section h3 {
    font-size: 36px;
    font-weight: 550;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-table th {
    font-weight: 550;
    padding: 20px;
    border: none;
}

.pricing-table td {
    padding: 16px 20px;
    border-color: #eee;
}

.table-note {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
    font-style: italic;
}

.pricing-features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.feature-highlight {
    text-align: center;
    padding: 40px 20px;
}

.feature-highlight .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-highlight .feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-highlight h4 {
    font-size: 24px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-highlight p {
    color: #666;
    line-height: 1.7;
}

.enterprise-section {
    padding: 100px 0;
}

.enterprise-content {
    text-align: center;
}

.enterprise-content h2 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.enterprise-content > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-feature {
    text-align: left;
    margin-bottom: 32px;
}

.enterprise-feature h4 {
    font-size: 20px;
    font-weight: 550;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.enterprise-feature p {
    color: #666;
    line-height: 1.7;
}

.enterprise-cta {
    margin-top: 40px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 550;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(140, 92, 245, 0.25);
}

.thank-you-message {
    text-align: center;
    padding: 60px 40px;
}

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

.success-icon i {
    font-size: 32px;
    color: var(--white);
}

.thank-you-message h3 {
    font-size: 32px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thank-you-message p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
}

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

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

.contact-info-card h4 {
    font-size: 24px;
    font-weight: 550;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.legal-document {
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-document h1 {
    font-size: 48px;
    font-weight: 550;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-document h2 {
    font-size: 28px;
    font-weight: 550;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 550;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-document p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-document ul {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-document li {
    margin-bottom: 8px;
}

.legal-document a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.navbar.scrolled {
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .pricing-header h1 {
        font-size: 36px;
    }
    
    .detailed-pricing h2 {
        font-size: 36px;
    }
    
    .enterprise-content h2 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .logo-item {
        font-size: 12px;
    }
    
    .navbar-actions {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 24px;
    }
    
    .process-flow .row {
        gap: 32px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}
