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

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #7cadc2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f3eee8 0%, #ffffff 100%);
    padding: 4rem 0 6rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #7cadc2;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #6a9bb8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 173, 194, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #7cadc2;
    border: 2px solid #7cadc2;
}

.cta-button.secondary:hover {
    background: #7cadc2;
    color: #ffffff;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.process-section .cta-button {
    display: block;
    margin: 0 auto 4rem;
    width: fit-content;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: #f3eee8;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.process-card p {
    color: #333333;
    margin-bottom: 1.5rem;
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #d3c3b3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: #f8f6f3;
}

.results-section .section-title {
    margin-bottom: 1.5rem;
}

.results-section .cta-button {
    display: block;
    margin: 0 auto 4rem;
    width: fit-content;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.result-card {
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 300px;
}

.result-card.dark {
    background: #1a1a1a;
    color: #ffffff;
}

.result-card.light {
    background: #e3c3b9;
    color: #1a1a1a;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.metric-display {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.metric-chart {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #7cadc2, #9bc5d4);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.3) 2px,
        transparent 2px,
        transparent 8px
    );
}

.metric-info {
    flex: 1;
}

.metric-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.conversion-display {
    width: 100%;
}

.conversion-mockup {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.mockup-header span {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.mockup-header .active {
    background: #7cadc2;
    color: #ffffff;
}

.conversion-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.conversion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.conversion-item .value {
    font-weight: 600;
    color: #28a745;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge {
    display: inline-block;
    background: #d3c3b3;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background: #f3eee8;
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: #d3c3b3;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #7cadc2 0%, #9bc5d4 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: #ffffff;
    color: #7cadc2;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-info a {
    color: #7cadc2;
    text-decoration: none;
}

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

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .process-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #f3eee8 0%, #e3d8cc 100%);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #f3eee8;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #7cadc2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 173, 194, 0.15);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #7cadc2;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7cadc2;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.check-icon {
    flex-shrink: 0;
}

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

.info-card {
    background: #f3eee8;
    padding: 30px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 0;
    background: #f3eee8;
}

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

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

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

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

.feature-highlight {
    text-align: center;
    padding: 30px;
}

.feature-highlight h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-details {
    padding: 80px 0;
    background: #f3eee8;
}

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

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

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

.feature-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.feature-benefits {
    margin-top: 30px;
}

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

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

.dashboard-mockup, .social-mockup, .ads-mockup {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3eee8;
}

.mockup-title {
    font-weight: 600;
    color: #1a1a1a;
}

.mockup-status {
    background: #7cadc2;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3eee8;
}

.metric-label {
    color: #666666;
}

.metric-value {
    font-weight: 600;
    color: #1a1a1a;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3eee8;
}

.platform-icon {
    font-size: 1.5rem;
}

.platform-name {
    flex: 1;
    font-weight: 500;
}

.platform-status.active {
    background: #7cadc2;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
}

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

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

.integration-card {
    background: #f3eee8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

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

.integration-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Product Page Styles */
.process-deep-dive {
    padding: 80px 0;
    background: #ffffff;
}

.process-step {
    margin-bottom: 80px;
    position: relative;
}

.step-number {
    position: absolute;
    left: -60px;
    top: 0;
    font-size: 4rem;
    font-weight: 700;
    color: #7cadc2;
    opacity: 0.3;
}

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

.step-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.step-features {
    margin-top: 30px;
}

.feature-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-point strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.technology-section {
    padding: 80px 0;
    background: #f3eee8;
}

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

.tech-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tech-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.comparison-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #1a1a1a;
    color: #ffffff;
}

.comparison-header > div {
    padding: 20px;
    font-weight: 600;
}

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

.comparison-row > div {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-category {
    font-weight: 600;
    background: #f3eee8;
}

.comparison-novavyr {
    background: #f8fcfd;
}

.comparison-icon {
    font-size: 1.25rem;
}

.results-showcase {
    padding: 80px 0;
    background: #f3eee8;
}

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

.stat-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #7cadc2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f3eee8 0%, #e3d8cc 100%);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 30px;
}

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

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

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

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

.success-message {
    background: #f0f9ff;
    border: 2px solid #7cadc2;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.response-time-card {
    background: #f3eee8;
    padding: 30px;
    border-radius: 12px;
}

.contact-info-card h3,
.response-time-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.expectation-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.expectation-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.expectation-item strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #f3eee8 0%, #e3d8cc 100%);
    padding: 60px 0;
}

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

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

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px 0;
}

.legal-document h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
}

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

.legal-document li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-section.reverse {
        direction: ltr;
    }
    
    .step-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-number {
        position: relative;
        left: 0;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-header,
    .comparison-row {
        min-width: 600px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technology-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
