/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #3d1943;
    --light-purple: #fcf1fe;
    --accent-purple: #8b5cf6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --white: #ffffff;
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #3d1943 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-purple);
}

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

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--light-purple);
}

nav {
    background: var(--primary-purple);
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.logo-icon {
    margin-right: 8px;
    font-size: 24px;
    color: var(--accent-purple);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
}

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

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: var(--light-purple);
    color: var(--accent-purple);
}

.login-btn {
    background: transparent;
    border: 1px solid var(--white);
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.login-btn:hover {
    background: var(--white);
    color: var(--primary-purple) !important;
}

.demo-btn {
    background: var(--white);
    color: var(--primary-purple) !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.demo-btn:hover {
    background: var(--accent-purple);
    color: var(--white) !important;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary-purple);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.announcement-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0 120px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-badge {
    margin-bottom: 32px;
}

.hero-badge a {
    background: var(--white);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.hero-badge a:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.hero-section h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-section h1 em {
    color: var(--accent-purple);
    font-style: normal;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.hero-image {
    margin-bottom: 80px;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Social Proof */
.social-proof {
    text-align: center;
}

.social-proof p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 32px;
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-gray);
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.logo-item:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-purple);
}

.features-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    color: var(--text-gray);
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.feature-content {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-content.active {
    display: grid;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.feature-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Capabilities Section */
.capabilities-section {
    padding: 80px 0;
    background: var(--white);
}

.capability-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.capability-item.reverse {
    direction: rtl;
}

.capability-item.reverse > * {
    direction: ltr;
}

.capability-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.capability-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.capability-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-purple);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    display: none;
    padding: 40px;
}

.testimonial.active {
    display: block;
}

.testimonial-logo {
    font-size: 48px;
    color: var(--accent-purple);
    margin-bottom: 24px;
}

.testimonial blockquote {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial cite {
    font-size: 16px;
    color: var(--text-gray);
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.case-study-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.case-study-link:hover {
    text-decoration: underline;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-btn.active,
.testimonial-btn:hover {
    background: var(--accent-purple);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.brands-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.brands-section h2 em {
    color: var(--accent-purple);
    font-style: normal;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--light-purple);
    text-align: center;
}

.final-cta .container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Pricing Styles */
.pricing-hero {
    padding: 80px 0;
    text-align: center;
    background: var(--light-purple);
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-description {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 80px 0;
    background: var(--white);
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 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(--gradient-purple);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

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

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 20px;
    color: var(--text-gray);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

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

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: block;
}

.pricing-note {
    text-align: center;
    margin-top: 60px;
    padding: 24px;
    background: var(--light-purple);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.pricing-faq {
    padding: 80px 0;
    background: var(--light-purple);
}

.pricing-faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-cta {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.pricing-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

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

/* Contact Form Styles */
.contact-hero {
    padding: 80px 0;
    text-align: center;
    background: var(--light-purple);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-description {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    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: var(--accent-purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
}

.success-message {
    display: none;
    background: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message.show {
    display: block;
}

/* Legal Pages Styles */
.legal-page {
    padding: 80px 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--white);
}

.compliance-badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
}

.badge i {
    font-size: 16px;
    color: var(--accent-purple);
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 48px;
    }
    
    .tab-content,
    .capability-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-section h2,
    .brands-section h2 {
        font-size: 36px;
    }
    
    .feature-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .company-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta .container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .company-logos {
        grid-template-columns: 1fr;
    }
}
