/* Comparison Page Styles - P2 Programmatic SEO */

/* Verdict Box */
.verdict-box {
    background: linear-gradient(135deg, var(--navy) 0%, #0a4a8a 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(4, 47, 89, 0.2);
}
.verdict-box p { margin: 0; }

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 900px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.comparison-table thead {
    background: var(--navy);
    color: white;
}
.comparison-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}
.comparison-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #eef0f4;
    color: var(--text-secondary);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #f8f9fc; }
.comparison-table .feature-name {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
    min-width: 160px;
}
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
    min-width: 200px;
}

/* Deep Dive Sections */
.deep-dive-content {
    max-width: 900px;
    margin: 0 auto;
}
.deep-dive-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.deep-dive-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.deep-dive-card.strengths {
    border-left: 4px solid var(--teal);
}
.deep-dive-card.weaknesses {
    border-left: 4px solid #e74c3c;
}
.deep-dive-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.deep-dive-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.deep-dive-card .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.deep-dive-card .pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 2px;
}
.weakness-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.weakness-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.weakness-list li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}
.best-for-box {
    background: #f0faf8;
    border: 1px solid var(--teal);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.best-for-box strong { color: var(--navy); }

/* Head to Head */
.h2h-content {
    max-width: 800px;
    margin: 0 auto;
}
.h2h-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eef0f4;
}
.h2h-block:last-child { border-bottom: none; }
.h2h-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.h2h-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Recommendation Grid */
.rec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}
.rec-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
}
.rec-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--teal-light, #64d8cb);
}
.rec-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .deep-dive-grid { grid-template-columns: 1fr; }
    .rec-grid { grid-template-columns: 1fr; }
    .verdict-box { padding: 1.5rem; font-size: 1rem; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 0.625rem 0.75rem; }
}
