/* 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: #ffffff;
    background-color: #0f172a;
}

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

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Header */
.header {
    background-color: #0f172a;
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

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

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

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

.nav-links a:hover {
    color: #10b981;
}

/* Buttons */
.btn-primary, .btn-primary-large {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover, .btn-primary-large:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary, .btn-secondary-large {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #374151;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary:hover, .btn-secondary-large:hover {
    border-color: #10b981;
    color: #10b981;
}

.btn-step {
    background: #1e293b;
    color: #10b981;
    border: 1px solid #10b981;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-step:hover {
    background: #10b981;
    color: white;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    position: relative;
}

.mockup-window {
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
    overflow: hidden;
    width: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: #0f172a;
    padding: 12px 16px;
    border-bottom: 1px solid #334155;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #475569;
}

.mockup-content {
    padding: 24px;
}

.chart-container {
    background: #0f172a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    height: 120px;
    position: relative;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 1px;
}

.chart-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: -20px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.stats-panel {
    display: flex;
    gap: 16px;
}

.stat-item {
    flex: 1;
    background: #0f172a;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

/* Trust Indicators */
.trust-indicators {
    text-align: center;
}

.trust-indicators p {
    color: #64748b;
    margin-bottom: 24px;
}

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

.trust-logo {
    color: #475569;
    font-weight: 600;
    font-size: 14px;
}

/* Process Section */
.process-section {
    background: #1e293b;
    padding: 100px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: center;
}

.step:nth-child(even) {
    grid-template-columns: 300px 1fr 80px;
}

.step:nth-child(even) .step-number {
    order: 3;
}

.step:nth-child(even) .step-content {
    order: 2;
}

.step:nth-child(even) .step-visual {
    order: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    opacity: 0.3;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.step-content p {
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}

.step-visual {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #334155;
    padding: 24px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-sources-mockup, .qualification-mockup, .optimization-mockup {
    width: 100%;
}

.source-item, .qual-item, .metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #1e293b;
    border-radius: 6px;
    margin-bottom: 8px;
}

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

.qual-header, .opt-header {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 16px;
    text-align: center;
}

.qual-score, .metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

.qual-label, .metric-label {
    font-size: 12px;
    color: #64748b;
}

.opt-metrics {
    display: flex;
    gap: 8px;
}

.metric {
    flex: 1;
    flex-direction: column;
    text-align: center;
}

/* Features Preview */
.features-preview {
    padding: 100px 20px;
}

.features-preview h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

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

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

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
}

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

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 60px 20px 20px;
}

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

.footer-brand p {
    color: #64748b;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.footer-column a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step:nth-child(even) .step-number,
    .step:nth-child(even) .step-content,
    .step:nth-child(even) .step-visual {
        order: initial;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Product Page Styles */
.product-hero, .features-hero, .contact-hero {
    padding: 80px 20px;
    text-align: center;
    background: #0f172a;
}

.product-hero h1, .features-hero h1, .contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 20px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-overview {
    padding: 100px 20px;
    background: #1e293b;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.overview-text p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tech-highlights {
    margin-top: 40px;
}

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

.highlight-icon {
    font-size: 24px;
    margin-top: 4px;
}

.highlight-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.highlight-item p {
    color: #94a3b8;
    margin: 0;
}

.tech-diagram {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #334155;
    padding: 32px;
    text-align: center;
}

.diagram-layer {
    background: #1e293b;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.layer-title {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 12px;
}

.layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.layer-items span {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.diagram-arrow {
    font-size: 24px;
    color: #10b981;
    margin: 8px 0;
}

.working-principles {
    padding: 100px 20px;
    background: #0f172a;
}

.working-principles h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.principle-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.principle-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
}

.principle-number {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    opacity: 0.3;
    margin-bottom: 16px;
}

.principle-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.principle-card p {
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.principle-features li {
    color: #cbd5e1;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.principle-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.competitive-advantage {
    padding: 100px 20px;
    background: #f9fafb;
    color: #1f2937;
}

.competitive-advantage h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-header {
    background: #f3f4f6;
    font-weight: 600;
}

.comparison-category, .comparison-traditional, .comparison-lunarpegasus {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-category {
    font-weight: 600;
    color: #1f2937;
}

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

.comparison-lunarpegasus {
    background: #f0fdf4;
}

.integration-section {
    padding: 100px 20px;
    background: #1e293b;
}

.integration-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.integration-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.integration-item {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: #cbd5e1;
    font-weight: 500;
    transition: all 0.2s;
}

.integration-item:hover {
    border-color: #10b981;
    color: #10b981;
}

.product-cta, .features-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 80px 20px;
    text-align: center;
}

.product-cta h2, .features-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.product-cta p, .features-cta p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
}

/* Features Page Styles */
.core-features {
    padding: 100px 20px;
    background: #0f172a;
}

.core-features h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-large {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s;
}

.feature-card-large:hover {
    border-color: #10b981;
    transform: translateY(-4px);
}

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

.feature-card-large h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card-large p {
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.feature-benefits li {
    color: #cbd5e1;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.advanced-features {
    padding: 100px 20px;
    background: #1e293b;
}

.advanced-features h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.advanced-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.advanced-feature:hover {
    border-color: #10b981;
}

.advanced-icon {
    font-size: 32px;
    margin-top: 4px;
}

.advanced-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.advanced-content p {
    color: #94a3b8;
    line-height: 1.6;
}

.workflow-automation {
    padding: 100px 20px;
    background: #0f172a;
}

.workflow-automation h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.workflow-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 60px;
    padding: 32px;
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
}

.workflow-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.workflow-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.workflow-content p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.workflow-tag {
    background: #0f172a;
    color: #10b981;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #10b981;
}

.integration-showcase {
    padding: 100px 20px;
    background: #1e293b;
}

.integration-showcase h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.integration-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.integration-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.integration-logo {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: #cbd5e1;
    font-weight: 500;
    transition: all 0.2s;
}

.integration-logo:hover {
    border-color: #10b981;
    color: #10b981;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info p {
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.benefit-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    margin: 0;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 16px;
    margin-top: 2px;
}

.contact-item strong {
    color: #1f2937;
}

.contact-item a {
    color: #10b981;
    text-decoration: none;
}

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

.contact-form-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    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;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}

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

.btn-form-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.form-success {
    text-align: center;
    padding: 40px;
}

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

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.form-success p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

/* Pricing Page Additional Styles */
.pricing-hero {
    padding: 80px 20px;
    background: #0f172a;
}

.pricing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.pricing-hero-text p {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
}

.pricing-hero-visual {
    display: flex;
    justify-content: center;
}

.pricing-plans {
    padding: 80px 20px;
    background: #ffffff;
    color: #1f2937;
}

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

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

.pricing-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

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

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: #10b981;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
}

.price-period {
    font-size: 14px;
    color: #6b7280;
}

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

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

.feature-check {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

.btn-pricing {
    width: 100%;
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
}

.btn-pricing:hover {
    background: #10b981;
    color: white;
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: transparent;
}

.btn-pricing.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.pricing-faq {
    padding: 80px 20px;
    background: #f9fafb;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.faq-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

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

.pricing-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 80px 20px;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.pricing-cta p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
}

/* Additional Responsive Design */
@media (max-width: 768px) {
    .pricing-hero-content, .overview-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pricing-hero-text h1, .product-hero h1, .features-hero h1, .contact-hero h1 {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-large {
        grid-template-columns: 1fr;
    }
    
    .principles-grid, .advanced-grid, .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .integration-categories {
        grid-template-columns: 1fr;
    }
}

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

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

.legal-subtitle {
    font-size: 16px;
    color: #94a3b8;
}

.legal-content {
    padding: 80px 20px;
    background: #ffffff;
    color: #1f2937;
}

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

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

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

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

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

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

.contact-info {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}
