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

body {
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
    background-color: #ffffff;
    color: #020a0f;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background-color: #f6f6f8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #020a0f;
    text-decoration: none;
}

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

.nav-link {
    color: #020a0f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0000ee;
}

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

/* Buttons */
.btn-primary {
    background-color: #020a0f;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0000ee;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #0000ee;
    padding: 12px 24px;
    border: 2px solid #0000ee;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #0000ee;
    color: #ffffff;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e3f2fd;
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 32px;
    font-size: 14px;
}

.badge-text {
    background-color: #2196f3;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #020a0f;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.section-badge {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #020a0f;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-icon.red {
    background-color: #dc3545;
}

.feature-icon.purple {
    background-color: #6f42c1;
}

.feature-icon.blue {
    background-color: #0d6efd;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-link {
    color: #0000ee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.feature-link:hover {
    color: #020a0f;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tech-showcase {
    margin-top: 48px;
}

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

.model-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

.model-card:hover {
    border-color: #0000ee;
}

.model-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.model-badge.best-reasoning {
    background-color: #e3f2fd;
    color: #1976d2;
}

.model-badge.best-writing {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.model-badge.best-coding {
    background-color: #e8f5e8;
    color: #388e3c;
}

.model-badge.best-research {
    background-color: #fff3e0;
    color: #f57c00;
}

.model-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #020a0f;
}

/* Consistency Section */
.consistency-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.consistency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.demo-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.demo-icon {
    font-size: 16px;
}

.instruction-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.instruction-box strong {
    color: #020a0f;
}

.instruction-box p {
    margin-top: 8px;
    color: #666;
}

.version-selector,
.output-format {
    margin-bottom: 12px;
}

.version-selector label,
.output-format label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #020a0f;
}

.version-selector select,
.output-format select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #020a0f;
    color: #ffffff;
    text-align: center;
}

.cta-section .section-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

.cta-buttons .btn-primary {
    background-color: #ffffff;
    color: #020a0f;
}

.cta-buttons .btn-primary:hover {
    background-color: #f0f0f0;
}

.cta-buttons .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: #020a0f;
}

/* Footer */
.footer {
    background-color: #020a0f;
    color: #ffffff;
    padding: 64px 0 32px;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .consistency-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 16px;
    }
}

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

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-tab {
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.pricing-tab.active {
    color: #020a0f;
    border-bottom-color: #0000ee;
}

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

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #0000ee;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0000ee;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 8px;
}

.pricing-card .description {
    color: #666;
    margin-bottom: 24px;
    font-size: 14px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #020a0f;
}

.pricing-price .period {
    color: #666;
    font-size: 16px;
}

.pricing-billing {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #020a0f;
}

.pricing-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
}

.pricing-cta {
    width: 100%;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0000ee;
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 64px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 24px;
}

.contact-info p {
    color: #666;
    margin-bottom: 32px;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.contact-details p {
    color: #666;
    margin-bottom: 8px;
}

.contact-benefits {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 12px;
}

.contact-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 0;
}

.contact-form {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: none;
}

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

.success-message h4 {
    margin-bottom: 8px;
    color: #155724;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: auto;
}

/* Contact FAQ Section */
.contact-faq {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 12px;
}

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

/* Legal Pages Styles */
.legal-hero {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #020a0f;
    margin-bottom: 16px;
}

.legal-hero p {
    color: #666;
    font-size: 16px;
}

.legal-content {
    padding: 40px 0 80px;
    background-color: #ffffff;
}

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

.legal-document h2 {
    font-size: 28px;
    font-weight: 600;
    color: #020a0f;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    color: #020a0f;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-document h4 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-top: 24px;
    margin-bottom: 8px;
}

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

.legal-document ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.legal-document .contact-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.legal-document .contact-info p {
    margin-bottom: 0;
    color: #020a0f;
}

/* Product Page Additional Styles */
.workflow-steps {
    margin-top: 48px;
}

.workflow-step {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    background-color: #0000ee;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 12px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 24px;
    text-align: center;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comparison-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.comparison-item.zephyr {
    background-color: #e3f2fd;
    border: 2px solid #0000ee;
}

.comparison-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.comparison-item.traditional li::before {
    content: "×";
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-item.zephyr li::before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tech-details {
    margin-top: 48px;
}

.tech-detail {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.tech-detail h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.tech-detail p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

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

.use-case-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.use-case-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.use-case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric {
    text-align: center;
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0000ee;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.implementation-timeline {
    margin-top: 48px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.timeline-marker {
    background-color: #f8f9fa;
    border: 2px solid #0000ee;
    color: #0000ee;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Features Page Additional Styles */
.tech-features {
    margin-top: 48px;
}

.tech-feature {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.tech-feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 12px;
}

.tech-feature p {
    color: #666;
    line-height: 1.6;
}

.integration-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.integration-category {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.integration-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 16px;
}

.integration-category ul {
    list-style: none;
    padding: 0;
}

.integration-category li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.integration-category li::before {
    content: "→";
    color: #0000ee;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.benefit-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-stat {
    font-size: 48px;
    font-weight: 700;
    color: #0000ee;
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #020a0f;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}
