/* 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: rgb(5, 5, 5);
    background-color: rgb(255, 255, 255);
}

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

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

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

.nav-logo {
    text-decoration: none;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
}

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

.nav-link {
    text-decoration: none;
    color: rgb(5, 5, 5);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
}

.product-hunt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4e6;
    border: 1px solid #fed7aa;
    border-radius: 476px;
    padding: 8px 16px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #ea580c;
}

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

.hero-title {
    font-size: 76px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

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

.hero-cta {
    margin-bottom: 60px;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 476px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    margin-top: 60px;
}

.tech-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flow-item {
    position: relative;
}

.flow-card {
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flow-card.purple {
    background: #8b5cf6;
}

.flow-card.blue {
    background: #2563eb;
}

.flow-card.orange {
    background: #ea580c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    text-align: center;
    background: #f9fafb;
}

.stats-text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.user-avatars {
    display: flex;
    justify-content: center;
    gap: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2563eb, #8b5cf6);
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Main Content Section */
.main-content-section {
    padding: 100px 0;
}

.content-left {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.highlight {
    color: #2563eb;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
}

.algorithm-link {
    color: #2563eb;
    text-decoration: none;
}

.algorithm-link:hover {
    text-decoration: underline;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    margin-bottom: 24px;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin: 0 auto;
}

.blue-bg {
    background: #2563eb;
}

.purple-bg {
    background: #8b5cf6;
}

.orange-bg {
    background: #ea580c;
}

.green-bg {
    background: #059669;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.feature-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Technology Showcase */
.technology-showcase {
    padding: 100px 0;
    background: #f9fafb;
}

.showcase-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(5, 5, 5);
}

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

.tech-item {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.tech-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(5, 5, 5);
}

.tech-metrics {
    display: flex;
    gap: 32px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #2563eb;
}

.metric-label {
    font-size: 14px;
    color: #6b7280;
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-node {
    padding: 12px 20px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

.step-node.decision {
    background: #8b5cf6;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    font-size: 20px;
    color: #6b7280;
}

/* Industry Trends */
.industry-trends {
    padding: 100px 0;
}

.trends-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(5, 5, 5);
}

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

.trend-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s ease;
}

.trend-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.trend-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.trend-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trend-meta {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.trend-date {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f9fafb;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

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

/* Footer */
.footer {
    background: rgb(5, 5, 5);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 16px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 8px;
    color: #9ca3af;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .showcase-title,
    .trends-title,
    .cta-title {
        font-size: 32px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .workflow-diagram {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* Additional styles for new components */

/* Active navigation link */
.nav-link.active {
    color: #2563eb;
    font-weight: 500;
}

/* Pricing page styles */
.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.pricing-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.pricing-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 60px 0;
}

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

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

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 8px 24px;
    border-radius: 476px;
    font-size: 14px;
    font-weight: 500;
}

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

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

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

.price {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
}

.price-unit {
    font-size: 16px;
    color: #6b7280;
    display: block;
    margin-top: 4px;
}

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

.features-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #374151;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #f8fafc;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.plan-button:hover {
    background: #e2e8f0;
}

.plan-button.primary {
    background: #2563eb;
    color: white;
}

.plan-button.primary:hover {
    background: #1d4ed8;
}

/* FAQ styles */
.pricing-faq {
    padding: 100px 0;
    background: #f9fafb;
}

.faq-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(5, 5, 5);
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.faq-answer {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.pricing-cta {
    padding: 100px 0;
    text-align: center;
}

/* Features page styles */
.features-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.features-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.features-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-overview {
    padding: 60px 0;
}

.features-grid-large {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.icon-text {
    font-size: 18px;
    font-weight: 700;
}

.feature-title-large {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.feature-description-large {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.feature-benefits li {
    padding: 8px 0;
    font-size: 16px;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

.features-detailed {
    padding: 100px 0;
    background: #f9fafb;
}

.feature-card.detailed {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.2s ease;
}

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

/* Comparison table */
.features-comparison {
    padding: 100px 0;
}

.comparison-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(5, 5, 5);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #f8fafc;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-cell {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.feature-name {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
}

.comparison-cell.check {
    color: #059669;
    font-size: 20px;
    font-weight: 600;
}

.comparison-cell.cross {
    color: #dc2626;
    font-size: 20px;
    font-weight: 600;
}

.comparison-cell.partial {
    color: #d97706;
    font-size: 14px;
    font-weight: 500;
}

.features-cta {
    padding: 100px 0;
    background: #f9fafb;
    text-align: center;
}

/* Product page styles */
.product-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.product-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.product-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.product-overview {
    padding: 60px 0;
}

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

.overview-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.overview-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.overview-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.product-diagram {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.diagram-step {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.diagram-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(5, 5, 5);
}

.diagram-step p {
    font-size: 14px;
    color: #6b7280;
}

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

.product-advantages {
    padding: 100px 0;
    background: #f9fafb;
}

.advantages-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(5, 5, 5);
}

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

.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    margin-bottom: 24px;
}

.advantage-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.advantage-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantage-features {
    list-style: none;
}

.advantage-features li {
    padding: 4px 0;
    font-size: 14px;
    color: #374151;
    position: relative;
    padding-left: 20px;
}

.advantage-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

.product-technology {
    padding: 100px 0;
}

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

.technology-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.technology-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(5, 5, 5);
}

.tech-item p {
    font-size: 14px;
    color: #6b7280;
}

.tech-visualization {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-layer {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.layer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(5, 5, 5);
}

.layer-components {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.layer-components span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.product-results {
    padding: 100px 0;
    background: #f9fafb;
}

.results-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: rgb(5, 5, 5);
}

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

.result-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.result-metric {
    margin-bottom: 16px;
}

.metric-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 16px;
    font-weight: 600;
    color: rgb(5, 5, 5);
}

.result-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.product-cta {
    padding: 100px 0;
    text-align: center;
}

/* Contact page styles */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.contact-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(5, 5, 5);
}

.contact-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 60px 0 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-panel {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px;
}

.info-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.info-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

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

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: rgb(5, 5, 5);
}

.benefit-text p {
    font-size: 14px;
    color: #6b7280;
}

.direct-contact h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
}

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

.contact-form-panel {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgb(5, 5, 5);
}

.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 ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

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

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

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

.submit-button {
    grid-column: 1 / -1;
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background: #1d4ed8;
}

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

.success-icon {
    width: 60px;
    height: 60px;
    background: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 24px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.success-message p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Legal pages styles */
.legal-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.legal-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(5, 5, 5);
}

.legal-subtitle {
    font-size: 16px;
    color: #6b7280;
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 16px 0;
    color: rgb(5, 5, 5);
}

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

.legal-document p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.legal-document li {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.legal-document .contact-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.legal-document .contact-details a {
    color: #2563eb;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title,
    .pricing-title,
    .features-title,
    .product-title,
    .contact-title,
    .legal-title {
        font-size: 48px;
    }
    
    .section-title,
    .showcase-title,
    .trends-title,
    .cta-title,
    .faq-title,
    .comparison-title,
    .advantages-title,
    .results-title {
        font-size: 32px;
    }
    
    .feature-showcase,
    .overview-content,
    .technology-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-showcase.reverse {
        direction: ltr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-cell {
        padding: 16px 12px;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .product-diagram {
        gap: 16px;
    }
    
    .diagram-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    
    .legal-document {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title,
    .pricing-title,
    .features-title,
    .product-title,
    .contact-title,
    .legal-title {
        font-size: 36px;
    }
    
    .hero-subtitle,
    .pricing-subtitle,
    .features-subtitle,
    .product-subtitle,
    .contact-subtitle {
        font-size: 18px;
    }
    
    .section-title,
    .showcase-title,
    .trends-title,
    .cta-title,
    .faq-title,
    .comparison-title,
    .advantages-title,
    .results-title {
        font-size: 28px;
    }
    
    .feature-title-large,
    .overview-title,
    .technology-title {
        font-size: 32px;
    }
    
    .pricing-card,
    .faq-item,
    .advantage-card,
    .result-card {
        padding: 24px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 24px;
    }
    
    .legal-document {
        padding: 24px 16px;
    }
}
