/* Page-specific styles */
.compare-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

.compare-hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.compare-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.update-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Summary Cards */
.quick-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.summary-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.summary-card.recommended {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.summary-card .badge {
    display: inline-block;
    background: #22C55E;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.summary-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summary-card .tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.summary-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.summary-card .price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.summary-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.summary-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.summary-card li .check { color: #22C55E; }
.summary-card li .cross { color: #EF4444; }

.summary-card .cta-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.summary-card .cta-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.summary-card.recommended .cta-btn {
    background: #fff;
    color: #000;
}

.summary-card.recommended .cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Full Comparison Table */
.comparison-table-full {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow-x: auto;
}

.comparison-table-full table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table-full th,
.comparison-table-full td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table-full th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table-full th:first-child {
    width: 30%;
}

.comparison-table-full td {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table-full tr:last-child td {
    border-bottom: none;
}

.comparison-table-full .check { color: #22C55E; font-weight: bold; }
.comparison-table-full .cross { color: #EF4444; }
.comparison-table-full .partial { color: #F59E0B; }

.comparison-table-full .highlight-col {
    background: rgba(34, 197, 94, 0.05);
}

.comparison-table-full .category-row {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table-full .category-row td {
    font-weight: 600;
    color: #fff;
    padding-top: 1.25rem;
}

/* Problem/Solution Section */
.problems-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.problem-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
}

.problem-card .icon {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #EF4444;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Pricing Comparison */
.pricing-compare {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
}

.pricing-compare-row:first-child {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px 12px 0 0;
}

.pricing-compare-row:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.pricing-compare-row .label {
    font-weight: 600;
}

.pricing-compare-row .manychat {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-compare-row .chatgenius {
    color: #22C55E;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-large:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.25rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.faq-question:hover { color: #fff; }

.faq-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 400px; }

/* Hero animations */
.compare-hero .update-badge,
.compare-hero h1,
.compare-hero > .container > p {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease-out forwards;
}
.compare-hero .update-badge { animation-delay: 0.1s; }
.compare-hero h1 { animation-delay: 0.2s; }
.compare-hero > .container > p { animation-delay: 0.3s; }

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .compare-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }

    .compare-hero h1 {
        font-size: 1.75rem;
    }

    .compare-hero p {
        font-size: 1rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .quick-summary {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .summary-card {
        padding: 1.5rem;
    }

    .comparison-table-full {
        border-radius: 12px;
    }

    .pricing-compare-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .pricing-compare-row .label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .btn-large {
        width: 100%;
        display: block;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Login button */
