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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #6D28D9;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background: #F3F4F6;
    color: #6D28D9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: #6D28D9;
    color: #FFFFFF;
}

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

.btn-secondary {
    background: #F9FAFB;
    color: #6D28D9;
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
    background: #F3F4F6;
    border-color: #6D28D9;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #FAFBFF 0%, #F3E8FF 100%);
}

.hero-badge {
    display: inline-block;
    background: rgba(109, 40, 217, 0.1);
    color: #6D28D9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(109, 40, 217, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #6D28D9;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.platform-badge {
    background: #F3E8FF;
    color: #6D28D9;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

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

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.demo-image {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-image:hover .demo-overlay {
    opacity: 1;
}

.play-button {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Features Overview */
.features-overview {
    padding: 80px 0;
    background: #F9FAFB;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F2937;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: #F9FAFB;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #E5E7EB;
}

.testimonial-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text blockquote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1F2937;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

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

.testimonial-stats {
    margin-top: 16px;
    color: #6D28D9;
    font-weight: 500;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
    color: #FFFFFF;
    text-align: center;
}

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

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

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

.cta-section .btn-primary {
    background: #FFFFFF;
    color: #6D28D9;
}

.cta-section .btn-primary:hover {
    background: #F9FAFB;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #1F2937;
    color: #D1D5DB;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-description {
    margin-bottom: 32px;
    line-height: 1.6;
    color: #9CA3AF;
}

.footer-contact {
    margin-bottom: 32px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #D1D5DB;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #6D28D9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        gap: 32px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
}

/* Additional Page Styles */

/* Pricing Page Styles */
.pricing-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #FAFBFF 0%, #F3E8FF 100%);
}

.pricing-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1F2937;
}

.pricing-header p {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
}

.billing-toggle {
    display: flex;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 4px;
    max-width: 300px;
    margin: 0 auto;
}

.billing-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6B7280;
}

.billing-btn.active {
    background: #FFFFFF;
    color: #6D28D9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discount {
    background: #10B981;
    color: #FFFFFF;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.pricing-plans {
    padding: 80px 0;
    background: #FFFFFF;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #6D28D9;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #6D28D9;
    transform: scale(1.05);
}

.pricing-card.custom {
    background: linear-gradient(135deg, #6D28D9 0%, #5B21B6 100%);
    color: #FFFFFF;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6D28D9;
    color: #FFFFFF;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

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

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-header p {
    color: #6B7280;
}

.plan-price {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #1F2937;
}

.pricing-card.custom .price {
    color: #FFFFFF;
}

.price-unit {
    display: block;
    color: #6B7280;
    font-size: 16px;
    margin-top: 8px;
}

.price-note {
    color: #10B981;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.btn-full {
    width: 100%;
    margin-bottom: 32px;
}

.plan-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F2937;
}

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

.plan-features li {
    padding: 8px 0;
    color: #4B5563;
    font-size: 14px;
}

.pricing-faq {
    padding: 80px 0;
    background: #F9FAFB;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1F2937;
}

.faq-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #FAFBFF 0%, #F3E8FF 100%);
}

.features-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1F2937;
}

.features-hero p {
    font-size: 20px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

.core-features {
    padding: 80px 0;
    background: #FFFFFF;
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: rgba(109, 40, 217, 0.1);
    color: #6D28D9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.feature-showcase h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1F2937;
}

.feature-showcase p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.feature-benefits li {
    padding: 8px 0;
    color: #4B5563;
    font-size: 16px;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.additional-features {
    padding: 80px 0;
    background: #F9FAFB;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #FAFBFF 0%, #F3E8FF 100%);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1F2937;
}

.contact-hero p {
    font-size: 20px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1F2937;
}

.contact-info > p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1F2937;
}

.benefit-item p {
    color: #6B7280;
    font-size: 14px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F2937;
}

.contact-item {
    margin-bottom: 12px;
    color: #4B5563;
}

.contact-form-container {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1F2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6D28D9;
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #4B5563;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
}

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

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #166534;
}

.success-message p {
    color: #15803D;
    line-height: 1.6;
}

/* FAQ Page Styles */
.faq-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #FAFBFF 0%, #F3E8FF 100%);
}

.faq-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1F2937;
}

.faq-header p {
    font-size: 20px;
    color: #6B7280;
}

.faq-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #6D28D9;
}

.faq-icon {
    transition: transform 0.2s ease;
    color: #6B7280;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 24px;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 16px;
}

/* Legal Pages Styles */
.legal-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #FAFBFF 0%, #F3E8FF 100%);
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1F2937;
}

.legal-header p {
    font-size: 18px;
    color: #6B7280;
}

.legal-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 16px 0;
    color: #1F2937;
}

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

.legal-document p {
    color: #4B5563;
    margin-bottom: 16px;
}

.contact-info {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #1F2937;
}

/* Active Navigation States */
.nav-menu a.active {
    color: #6D28D9;
    font-weight: 600;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-showcase.reverse {
        direction: ltr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-header h1,
    .features-hero h1,
    .contact-hero h1,
    .faq-header h1,
    .legal-header h1 {
        font-size: 32px;
    }
}
