﻿:root {
    --zoogaboog-blue: #01aade;
    --zoogaboog-dark-blue: #0085ae;
    --purple: #8B5CF6;
    --green: #10B981;
    --orange: #F59E0B;
    --red: #EF4444;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.comparison-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, var(--zoogaboog-dark-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.comparison-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.comparison-hero .tagline {
    font-size: 2rem;
    opacity: 0.95;
    font-weight: 700;
    max-width: 1000px;
    margin: 0 auto 1rem;
}

.comparison-hero .subtext {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Big Comparison Chart */
.big-chart-section {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: #1e293b;
    color: white;
}

.comparison-table th {
    padding: 2rem 1.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

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

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.check-yes {
    color: var(--green);
    font-size: 2rem;
}

.check-no {
    color: #cbd5e1;
    font-size: 2rem;
}

.highlight-col {
    background: #f0f9ff !important;
    border-left: 3px solid var(--zoogaboog-blue);
    border-right: 3px solid var(--zoogaboog-blue);
}

/* Deep Dives */
.deep-dive-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.deep-dive-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.deep-dive-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.deep-dive-card:hover {
    border-color: var(--zoogaboog-blue);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.deep-dive-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 3rem;
    text-align: center;
}

.deep-dive-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.deep-dive-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.deep-dive-content {
    padding: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.comparison-column h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--red);
}

.comparison-column:last-child h4 {
    color: var(--green);
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.comparison-column:first-child .comparison-list i {
    color: var(--red);
}

.comparison-column:last-child .comparison-list i {
    color: var(--green);
}

.verdict-box {
    background: #f0fdf4;
    border: 3px solid var(--green);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.verdict-box strong {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 900;
}

/* Honest FAQ */
.honest-faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--zoogaboog-blue);
    box-shadow: 0 8px 30px rgba(1, 170, 222, 0.15);
}

.faq-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.final-cta .tagline {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 700;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(1, 170, 222, 0.3);
}

.final-cta-btn:hover {
    background: white;
    color: var(--zoogaboog-blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* DIY Comparison Section */
.diy-comparison-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.diy-comparison-title {
    color: #78350f;
}

.diy-comparison-subtitle {
    color: #92400e;
}

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

.diy-comparison-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #f59e0b;
}

.diy-comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.diy-comparison-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.diy-comparison-card-title {
    font-size: 2rem;
    font-weight: 900;
    color: #78350f;
}

.diy-comparison-card-subtitle {
    color: #92400e;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.diy-comparison-section-title {
    font-weight: 800;
    color: #78350f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.diy-comparison-list {
    color: #92400e;
    font-size: 1.05rem;
    line-height: 1.8;
    list-style: none;
    padding: 0;
}

.diy-comparison-list-item {
    margin-bottom: 0.75rem;
}

.diy-comparison-list-item:last-child {
    margin-bottom: 0;
}

.diy-comparison-highlight {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
}

.diy-comparison-highlight-value {
    font-size: 1.5rem;
    color: #78350f;
}

.diy-comparison-highlight-note {
    color: #92400e;
    font-size: 0.95rem;
}

.diy-comparison-section-block {
    margin-bottom: 2rem;
}

.diy-comparison-card.zoogaboog {
    box-shadow: 0 20px 50px rgba(1, 170, 222, 0.3);
    border: 4px solid var(--zoogaboog-blue);
    transform: scale(1.03);
    position: relative;
}

.diy-comparison-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.diy-comparison-card.zoogaboog .diy-comparison-card-title {
    color: var(--zoogaboog-blue);
}

.diy-comparison-card.zoogaboog .diy-comparison-card-subtitle {
    color: #64748b;
}

.diy-comparison-card.zoogaboog .diy-comparison-section-title {
    color: var(--zoogaboog-blue);
}

.diy-comparison-card.zoogaboog .diy-comparison-list {
    color: #64748b;
}

.diy-comparison-highlight.blue {
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, #0085ae 100%);
    color: white;
}

.diy-comparison-highlight.blue .diy-comparison-highlight-value {
    color: white;
}

.diy-comparison-highlight.blue .diy-comparison-highlight-note {
    color: white;
    opacity: 0.9;
}

.diy-comparison-cta {
    text-align: center;
    margin-top: 4rem;
}

.diy-comparison-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #78350f;
    margin-bottom: 1rem;
}

.diy-comparison-cta-text {
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 2rem;
}

.diy-comparison-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(1, 170, 222, 0.3);
}

.diy-comparison-cta-note {
    margin-top: 1.5rem;
    color: #92400e;
    font-size: 0.95rem;
}

.final-cta-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .comparison-hero h1 {
        font-size: 3rem;
    }
}
