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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    z-index: 1000;
}

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

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

.logo-icon {
    font-size: 24px;
    margin-right: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0ea5e9;
}

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

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

.nav-links a:hover {
    color: #0ea5e9;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0ea5e9;
    padding: 10px 20px;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #0ea5e9;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-announcement {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 32px;
    font-size: 14px;
}

.announcement-badge {
    background: #0ea5e9;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #f8fafc;
}

.gradient-text {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-demo {
    max-width: 800px;
    margin: 0 auto 48px;
}

.demo-input {
    margin-bottom: 24px;
}

.demo-input textarea {
    width: 100%;
    min-height: 120px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 20px;
    color: #e2e8f0;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.demo-input textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.demo-input textarea::placeholder {
    color: #64748b;
}

.demo-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.demo-btn {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    color: #cbd5e1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-btn:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.hero-trust {
    margin-top: 64px;
}

.trust-text {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 14px;
}

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

.trust-logo {
    color: #475569;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: #0f172a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #f8fafc;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f8fafc;
}

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

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f8fafc;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: #020617;
    padding: 64px 0 24px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-description {
    color: #64748b;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #0ea5e9;
}

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

.footer-bottom {
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
}

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

.pricing-header {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

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

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

.plan-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 8px;
}

.plan-price {
    margin-bottom: 16px;
}

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

.price-unit {
    font-size: 1rem;
    color: #64748b;
    margin-left: 4px;
}

.plan-description {
    color: #cbd5e1;
    font-size: 14px;
}

.plan-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.feature-check {
    color: #10b981;
    font-weight: 600;
    margin-right: 12px;
    font-size: 16px;
}

.plan-btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
}

.pricing-faq {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 24px;
}

.faq-item h3 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

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

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

.contact-form {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: #f8fafc;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 12px 16px;
    color: #e2e8f0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 24px;
    display: none;
}

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

/* Features Page Styles */
.feature-list {
    list-style: none;
    margin-top: 16px;
}

.feature-list li {
    color: #94a3b8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: #0ea5e9;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Product Page Styles */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.technology-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.tech-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.5);
}

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

.tech-card h3 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.tech-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.comparison-section {
    padding: 80px 0;
    background: #0f172a;
}

.comparison-table {
    max-width: 800px;
    margin: 48px auto 0;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(51, 65, 85, 0.3);
}

.comparison-header .comparison-item {
    padding: 24px;
    text-align: center;
}

.comparison-header .comparison-item.highlight {
    background: rgba(14, 165, 233, 0.1);
    border-left: 1px solid rgba(51, 65, 85, 0.3);
}

.comparison-header h4 {
    color: #f8fafc;
    font-weight: 600;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.comparison-item {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-item.highlight {
    background: rgba(14, 165, 233, 0.05);
    border-left: 1px solid rgba(51, 65, 85, 0.3);
}

.comparison-positive {
    color: #10b981;
    font-size: 18px;
}

.comparison-negative {
    color: #ef4444;
    font-size: 18px;
}

.comparison-item p {
    color: #cbd5e1;
    margin: 0;
}

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

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

.legal-content h2 {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.legal-content h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.legal-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-content ul {
    color: #cbd5e1;
    margin-bottom: 16px;
    padding-left: 24px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-item.highlight {
        border-left: none;
        border-top: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-logos {
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}
