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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #0d0e10;
    background-color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    display: none;
}

.cookie-banner.show {
    display: block;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.banner-icon {
    margin-right: 0.5rem;
}

.banner-link {
    color: white;
    text-decoration: underline;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.banner-link:hover {
    color: #e5e7eb;
}

.banner-arrow {
    margin-left: 0.5rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.logo-text {
    color: #0d0e10;
}

.nav-link {
    color: #6b7280 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #0d0e10 !important;
}

.nav-text {
    color: #6b7280;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.4)"/></svg>');
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-cta {
    background: #0d0e10;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Dashboard */
.hero-dashboard {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 3rem;
}

.dashboard-header {
    background: #f9fafb;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-tabs {
    display: flex;
    gap: 2rem;
}

.tab {
    padding: 0.5rem 0;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab.active {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
}

.dashboard-content {
    padding: 2rem;
}

/* Conversation Panel */
.conversation-panel h6,
.analytics-panel h6 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #374151;
}

.conversation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.conversation-avatar {
    margin-right: 1rem;
}

.conversation-avatar i {
    font-size: 2rem;
    color: #7c3aed;
}

.conversation-name {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.conversation-message {
    color: #6b7280;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* Analytics Panel */
.metric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.metric-label {
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.metric-bar {
    flex: 2;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 4px;
}

.metric-chart {
    flex: 2;
    margin: 0 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 40px;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 2px;
    min-height: 8px;
}

.metric-status,
.metric-value {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0d0e10;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.section-label {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #7c3aed;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0d0e10;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

/* Footer */
.footer {
    background: #f9fafb;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e5e7eb;
}

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

.footer-description {
    color: #6b7280;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 600;
    color: #0d0e10;
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: #7c3aed;
}

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

.contact-info a {
    color: #7c3aed;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: #e5e7eb;
    margin: 2rem 0 1rem;
}

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

.footer-legal {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #7c3aed;
}

/* Buttons */
.btn-primary {
    background: #7c3aed;
    border-color: #7c3aed;
    font-weight: 600;
}

.btn-primary:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    transform: translateY(-1px);
}

.btn-outline-dark {
    border-color: #d1d5db;
    color: #374151;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background: #374151;
    border-color: #374151;
}

.btn-dark {
    background: #0d0e10;
    border-color: #0d0e10;
    font-weight: 600;
}

.btn-dark:hover {
    background: #1f2937;
    border-color: #1f2937;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    padding: 4rem 0 2rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0d0e10;
}

.legal-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.legal-content {
    padding: 4rem 0;
}

.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    color: #0d0e10;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-document h3 {
    color: #374151;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-document p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-document ul {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

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

.contact-details a {
    color: #7c3aed;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Pricing Section Styles */
.pricing-hero {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d0e10;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.pricing-link {
    color: #7c3aed;
    text-decoration: underline;
}

.pricing-link:hover {
    color: #6d28d9;
}

.pricing-cards {
    padding: 4rem 0;
    background: #f9fafb;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card-featured {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.pricing-card-featured .pricing-plan,
.pricing-card-featured .pricing-description,
.pricing-card-featured .price-amount,
.pricing-card-featured .price-period,
.pricing-card-featured .pricing-note {
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0d0e10;
}

.pricing-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d0e10;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.pricing-features i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.pricing-card-featured .pricing-features i {
    color: #a7f3d0;
}

.pricing-faq {
    padding: 4rem 0;
}

.accordion-button {
    font-weight: 600;
    color: #0d0e10;
}

.accordion-button:not(.collapsed) {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.pricing-cta {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    padding: 4rem 0;
    color: white;
}

/* Contact Section Styles */
.contact-hero {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    padding: 4rem 0 2rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d0e10;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-form-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.contact-form-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    color: #0d0e10;
    margin-bottom: 1rem;
}

.success-message p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0d0e10;
}

.contact-info-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: #6d28d9;
    text-decoration: underline;
}

.contact-address {
    color: #6b7280;
    font-style: normal;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .conversation-item,
    .metric-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .metric-bar,
    .metric-chart {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}
