/* 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: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

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

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

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

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

.nav-menu a {
    color: #a0a9c0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4f8ff7;
}

.cta-button {
    background: linear-gradient(135deg, #4f8ff7 0%, #6366f1 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 143, 247, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 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(79, 143, 247, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 143, 247, 0.1);
    border: 1px solid rgba(79, 143, 247, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #4f8ff7;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a9c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0a9c0;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: #a0a9c0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Platform Selection */
.platform-selection {
    padding: 80px 0;
    background: #0f1420;
}

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

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

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 143, 247, 0.5);
    box-shadow: 0 12px 40px rgba(79, 143, 247, 0.15);
}

.platform-card.active {
    background: rgba(79, 143, 247, 0.1);
    border-color: #4f8ff7;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.platform-card p {
    color: #a0a9c0;
    line-height: 1.6;
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.coming-soon {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 80px 0;
    background: #0a0e1a;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.mockup-content {
    padding: 32px;
}

.dashboard-header h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dashboard-card h4 {
    font-size: 0.9rem;
    color: #a0a9c0;
    margin-bottom: 8px;
}

.metric {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f8ff7;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: #a0a9c0;
}

.performance-section h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

.performance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-item:last-child {
    border-bottom: none;
}

.performance-label {
    color: #a0a9c0;
}

.performance-score {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.performance-score.excellent {
    background: rgba(40, 202, 66, 0.2);
    color: #28ca42;
}

.performance-score.good {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

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

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

.feature-card {
    text-align: center;
    padding: 32px 24px;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f8ff7 0%, #6366f1 100%);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #4f8ff7;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #4f8ff7;
}

/* Footer */
.footer {
    background: #0a0e1a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

.footer-section ul li a {
    color: #a0a9c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4f8ff7;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a9c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a9c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #a0a9c0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features page styles */
.features-detailed {
    padding: 80px 0;
    background: #0f1420;
}

.features-list {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    margin-bottom: 80px;
}

.feature-item.reverse .feature-content {
    flex-direction: row-reverse;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.feature-icon-large {
    font-size: 4rem;
    min-width: 120px;
    text-align: center;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-text p {
    font-size: 1.1rem;
    color: #a0a9c0;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.feature-benefits li {
    color: #a0a9c0;
    margin-bottom: 8px;
    font-size: 1rem;
}

.integration-showcase {
    padding: 80px 0;
    background: #0a0e1a;
}

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

.integration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 143, 247, 0.5);
}

.integration-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.integration-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.integration-card p {
    font-size: 0.9rem;
    color: #a0a9c0;
}

/* Product page styles */
.product-overview {
    padding: 80px 0;
    background: #0f1420;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.overview-text p {
    font-size: 1.1rem;
    color: #a0a9c0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.step-number {
    background: linear-gradient(135deg, #4f8ff7 0%, #6366f1 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.step-content p {
    font-size: 0.9rem;
    color: #a0a9c0;
}

.process-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #4f8ff7;
}

.competitive-advantages {
    padding: 80px 0;
    background: #0a0e1a;
}

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

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.comparison-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4f8ff7;
}

.stat.competitor .stat-number {
    color: #a0a9c0;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a9c0;
}

.vs {
    color: #a0a9c0;
    font-weight: 600;
}

.comparison-card p {
    color: #a0a9c0;
    line-height: 1.6;
}

.technology-stack {
    padding: 80px 0;
    background: #0f1420;
}

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

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.tech-category li {
    color: #a0a9c0;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}

.tech-category li::before {
    content: '•';
    color: #4f8ff7;
    position: absolute;
    left: 0;
}

.use-cases {
    padding: 80px 0;
    background: #0a0e1a;
}

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

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.use-case-results {
    padding: 12px;
    background: rgba(79, 143, 247, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(79, 143, 247, 0.3);
}

.result-metric {
    color: #4f8ff7;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Pricing page styles */
.pricing-model {
    padding: 80px 0;
    background: #0f1420;
}

.pricing-explanation {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.pricing-explanation h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.pricing-explanation p {
    font-size: 1.1rem;
    color: #a0a9c0;
    line-height: 1.7;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 143, 247, 0.5);
}

.pricing-card.featured {
    border-color: #4f8ff7;
    background: rgba(79, 143, 247, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f8ff7 0%, #6366f1 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.currency {
    font-size: 1.5rem;
    color: #4f8ff7;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #4f8ff7;
}

.period {
    font-size: 1rem;
    color: #a0a9c0;
}

.pricing-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
}

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

.pricing-features li {
    color: #a0a9c0;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4f8ff7 0%, #6366f1 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 143, 247, 0.3);
}

.pricing-note {
    font-size: 0.9rem;
    color: #a0a9c0;
}

.pricing-factors {
    padding: 80px 0;
    background: #0a0e1a;
}

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

.factor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.factor-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.factor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.factor-card p {
    color: #a0a9c0;
    line-height: 1.6;
}

.value-proposition {
    padding: 80px 0;
    background: #0f1420;
}

.value-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 48px;
    color: #ffffff;
}

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

.value-item {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.value-item p {
    color: #a0a9c0;
    line-height: 1.6;
}

.pricing-comparison {
    padding: 80px 0;
    background: #0a0e1a;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 16px;
    text-align: center;
    color: #a0a9c0;
}

.comparison-cell.feature {
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

.comparison-cell.astrionx {
    color: #4f8ff7;
    font-weight: 600;
}

.comparison-cell.competitor {
    color: #ff6b6b;
}

/* Contact page styles */
.contact-section {
    padding: 80px 0;
    background: #0f1420;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #a0a9c0;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.benefit-icon {
    font-size: 2rem;
    min-width: 40px;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.benefit-text p {
    color: #a0a9c0;
    line-height: 1.6;
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #a0a9c0;
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-form > p {
    color: #a0a9c0;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f8ff7;
    box-shadow: 0 0 0 3px rgba(79, 143, 247, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a9c0;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4f8ff7 0%, #6366f1 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 143, 247, 0.3);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #a0a9c0;
    line-height: 1.5;
}

.form-disclaimer a {
    color: #4f8ff7;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

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

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

.success-message h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.success-message p {
    color: #a0a9c0;
    line-height: 1.6;
}

/* Legal pages styles */
.legal-page {
    padding: 120px 0 80px;
    background: #0f1420;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.last-updated {
    font-size: 1rem;
    color: #a0a9c0;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.legal-section p {
    color: #a0a9c0;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    color: #a0a9c0;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

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

/* Navigation active state */
.nav-menu a.active {
    color: #4f8ff7;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-content {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item.reverse .feature-content {
        flex-direction: column;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-cell:nth-child(3),
    .comparison-cell:nth-child(4) {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .platform-card, .feature-card {
        padding: 24px 16px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
}
