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

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

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

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ef5c10;
}

.btn-primary {
    background-color: transparent;
    color: #111;
    border: 2px solid #111;
    padding: 15px 18px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #111;
    color: #fff;
}

.btn-primary-large {
    background-color: #111;
    color: #fff;
    border: 2px solid #111;
    padding: 18px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-large:hover {
    background-color: #333;
    border-color: #333;
}

.btn-secondary {
    background-color: transparent;
    color: #111;
    border: 2px solid #e5e5e5;
    padding: 18px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #111;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.hero-title {
    font-size: 52.8px;
    font-weight: 700;
    line-height: 59.4px;
    margin-bottom: 20px;
    color: #000;
}

.accent-text {
    color: #ef5c10;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 40px;
    border: 1px solid #e5e5e5;
}

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

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 20px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Companies Section */
.companies {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.company-logo {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #999;
    opacity: 0.7;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: transparent;
    border: 2px solid #e5e5e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #ef5c10;
    color: #ef5c10;
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.testimonial-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

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

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.step-number {
    background-color: #ef5c10;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background-color: #fff;
}

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

.use-case {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.use-case-list {
    list-style: none;
    text-align: left;
}

.use-case-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.use-case-list li:before {
    content: "✓";
    color: #ef5c10;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

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

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-brand .logo-text {
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.footer-description {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

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

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

.footer-list a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ef5c10;
}

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

.footer-address p,
.footer-copyright p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for new pages */

/* Features page styles */
.features-grid {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

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

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.feature-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    text-align: left;
}

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

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

.feature-comparison {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    display: contents;
}

.comparison-header > div {
    font-weight: 700;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.comparison-row {
    display: contents;
}

.comparison-row > div {
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
}

.comparison-feature {
    text-align: left !important;
    font-weight: 600;
}

.comparison-cosmovyr {
    background-color: #f0f9ff;
    border-color: #ef5c10;
    color: #ef5c10;
    font-weight: 600;
}

/* Pricing page styles */
.pricing-plans {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
    background-color: #ef5c10;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

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

.pricing-grid.hidden {
    display: none;
}

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.featured-badge {
    background-color: #ef5c10;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.pricing-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    padding-top: 60px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

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

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

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

.pricing-body {
    padding: 0 30px 40px;
}

.plan-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.plan-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.plan-features li:before {
    content: "✓";
    color: #ef5c10;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-btn {
    width: 100%;
    text-align: center;
    display: block;
}

.pricing-faq {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

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

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

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ef5c10;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

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

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

.tech-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

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

.tech-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.tech-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.tech-features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tech-features li:before {
    content: "✓";
    color: #ef5c10;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.competitive-advantage {
    padding: 80px 0;
    background-color: #fff;
}

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

.advantage-item {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.advantage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.advantage-badge {
    background-color: #ef5c10;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.advantage-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.product-demo {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.demo-steps {
    margin-bottom: 60px;
}

.demo-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.demo-cta {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.demo-cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.demo-cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.integration-ecosystem {
    padding: 80px 0;
    background-color: #fff;
}

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

.integration-category {
    text-align: center;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.integration-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.integration-item {
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e5e5e5;
}

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

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

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.contact-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.benefit-icon {
    background-color: #ef5c10;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 16px;
    color: #333;
}

.contact-details {
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.details-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.detail-item {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.detail-item a {
    color: #ef5c10;
    text-decoration: none;
}

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

.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

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

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ef5c10;
}

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

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: #ef5c10;
}

.checkbox-text {
    font-size: 14px;
    color: #666;
}

.form-submit {
    margin-top: 20px;
}

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

.form-success.hidden {
    display: none;
}

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

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.success-message {
    font-size: 16px;
    color: #666;
}

.contact-support {
    padding: 80px 0;
    background-color: #fff;
}

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

.support-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.support-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.support-link {
    color: #ef5c10;
    text-decoration: none;
    font-weight: 600;
}

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

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

.legal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

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

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

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

.legal-document h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #000;
}

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

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 10px;
    }
    
    .overview-stats {
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-categories {
        grid-template-columns: 1fr;
    }
}
