
/* ── Blog Hero ──────────────────────── */
.blog-hero {
    padding: 130px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero-inner {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.blog-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text);
}

.blog-hero h1 .highlight {
    background: linear-gradient(135deg, var(--bell-500), var(--bell-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero .blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}



/* ── Blog Content Container ──────────── */
.blog-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.blog-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 48px 0 16px;
    color: var(--text);
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.blog-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 32px 0 10px;
    color: var(--text);
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.blog-content strong {
    color: var(--text);
}

/* ── Comparison Cards ────────────────── */
.option-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    padding: 28px 30px;
    margin-bottom: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.option-card.bellotify-card {
    border: 2px solid var(--bell-400);
    background: linear-gradient(135deg, #fffdf7 0%, #ffffff 60%);
    box-shadow: var(--shadow);
}

.option-card.bellotify-card::before {
    content: '⭐ Top Pick';
    position: absolute;
    top: 16px;
    right: 20px;
    background: var(--bell-500);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: -0.01em;
    z-index: 1;
}

.option-card .option-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--neutral-200);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 36px;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.option-card.bellotify-card .option-number {
    background: var(--bell-500);
    color: #fff;
}

.option-card h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.option-card .option-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.option-card .label-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.option-card .label-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.label-pro {
    background: #d1fae5;
    color: #065f46;
}

.label-con {
    background: #ffe4e6;
    color: #9f1239;
}

.label-neutral {
    background: var(--neutral-100);
    color: var(--neutral-600);
}

.option-card ul {
    list-style: none;
    padding: 0;
}

.option-card ul li {
    padding: 6px 0;
    font-size: 0.93rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.option-card ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
}

.option-card ul.pros li::before {
    background: var(--success);
}

.option-card ul.cons li::before {
    background: var(--error);
}

/* ── Highlight Box ───────────────────── */
.highlight-box {
    background: var(--bell-50);
    border-left: 4px solid var(--bell-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-weight: 500;
    color: var(--bell-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-box strong {
    color: var(--bell-800);
}

/* ── CTA Banner ──────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--bell-500), var(--bell-400));
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    margin: 48px 0 24px;
    color: #fff;
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.3);
}

.cta-banner h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #fff;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-banner .btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--bell-700);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-banner .btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ── Summary Table ───────────────────── */
.summary-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}

.summary-table thead th {
    background: var(--neutral-100);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.summary-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    vertical-align: top;
}

.summary-table tbody tr:last-child td {
    border-bottom: none;
}

.summary-table .check {
    color: var(--success);
    font-weight: 700;
}

.summary-table .cross {
    color: var(--error);
    font-weight: 700;
}

.summary-table .star-row {
    background: var(--bell-50);
}

.summary-table .star-row td {
    font-weight: 600;
    color: var(--text);
}





/* ── Mobile ──────────────────────────── */
@media (max-width: 768px) {
 
 

    .blog-hero {
        padding: 100px 20px 40px;
    }

    .option-card.bellotify-card::before {
        top: 10px;
        right: 12px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .option-card {
        padding: 20px 18px;
    }


}