/* business-page.css
   Shared styles for /business/[X]/ and /site-type/[X]/ pages.
   Structure: breadcrumb, split hero + winner card, content sections,
   verdict block, comparison table (minimal flat), runner-up section,
   checklist (dark), templates, mistakes, peak-season, FAQs, CTA,
   sticky sidebar. */

/* ---- BREADCRUMB ---- */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 0.75rem 2rem; }
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; font-size: 0.82rem; color: var(--text-secondary); }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 0.4rem; }
.breadcrumb strong { color: var(--text); font-weight: 600; }

/* ---- SPLIT HERO ---- */
.hero-page {
    padding: 4rem 2rem;
    background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #cbd5e1;
}
.hero-page-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-page-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15,23,42,0.06);
    color: #0f172a;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15,23,42,0.14);
}
.hero-page-text h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}
.hero-page-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #1e3a8a, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-page-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ---- WINNER CARD (hero) ---- */
.winner-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.winner-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #78350f;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.winner-platform {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.winner-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.winner-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.winner-points li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text);
    padding: 0.35rem 0;
    line-height: 1.5;
}
.winner-points li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm3.707-9.293a1 1 0 0 0-1.414-1.414L9 10.586 7.707 9.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center / contain;
}
.winner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #22c55e;
    color: #fff;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}
.winner-cta:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
}

/* ---- PAGE BODY + CONTAINER ---- */
.page-body { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.page-main { min-width: 0; }
.container-narrow { max-width: 820px; margin: 0 auto; }
.content-section { padding: 3.5rem 0; }
.content-section.alt { background: var(--bg-light); margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem; }
.content-section h2 { font-size: 1.85rem; font-weight: 800; margin: 0 0 1.25rem; letter-spacing: -0.02em; line-height: 1.15; }
.content-section h3 { font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 0.6rem; letter-spacing: -0.01em; }
.content-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 1.1rem;
}
.content-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.content-section a.winner-cta,
.content-section a.verdict-link,
.content-section a.nav-cta {
    color: #fff;
    text-decoration: none;
}
.content-section a.verdict-link { color: #111; }

/* ---- VERDICT ---- */
.verdict {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.9rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.verdict-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.verdict-badge {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.verdict-head-text { display: flex; flex-direction: column; gap: 0.2rem; }
.verdict-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.verdict-head-text h3 { margin: 0; font-size: 1.2rem; letter-spacing: -0.01em; }
.verdict p {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}
.verdict p strong { color: #000; font-weight: 700; }
.verdict-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #111;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 0.15rem;
    transition: all 0.2s;
}
.verdict-link:hover { color: #16a34a; }
.verdict-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.verdict-link:hover svg { transform: translateX(3px); }

/* ---- COMPARISON TABLE (minimal flat) ---- */
.compare-wrap { overflow-x: auto; margin: 2rem 0; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: transparent;
    font-size: 0.95rem;
}
.compare-table thead th {
    padding: 0.85rem 1rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--text);
    background: transparent;
    vertical-align: bottom;
}
.compare-table thead th:first-child {
    text-align: left;
    color: var(--text);
}
.compare-table thead th.winner-col {
    color: var(--text);
}
.compare-table tbody td {
    padding: 0.9rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eef0f4;
    font-variant-numeric: tabular-nums;
    background: transparent;
    vertical-align: top;
}
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
}
.compare-table tbody td.winner-col {
    background: #f0fdf4;
    font-weight: 700;
}
.compare-table tbody td small {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 2px;
}
.compare-table tbody tr.total td {
    background: #fafafa;
    font-weight: 800;
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
    border-bottom: none;
    font-size: 1rem;
}
.compare-table tbody tr.total td.winner-col {
    background: #dcfce7;
}
.compare-trophy {
    display: inline-block;
    margin-left: 0.3rem;
    font-size: 0.9rem;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-family: inherit;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.2s; }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.2s ease; }
.faq-answer-inner { padding: 0 0 1.2rem; line-height: 1.7; color: var(--text-secondary); }

/* ---- STICKY WINNER SIDEBAR ---- */
.page-aside { position: relative; }
.sticky-winner {
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.sticky-winner .sticky-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.sticky-winner .sticky-platform {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.sticky-winner .sticky-score {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.25rem 0 1rem;
}
.sticky-winner .sticky-score-value {
    font-size: 2rem;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: -0.02em;
    line-height: 1;
}
.sticky-winner .sticky-score-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.sticky-winner .sticky-reason {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0 0 1.1rem;
}
.sticky-winner .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    background: #22c55e;
    color: #fff;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.2s;
}
.sticky-winner .sticky-cta:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}
.sticky-winner .sticky-footnote {
    font-size: 0.72rem;
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
}
.sticky-winner .sticky-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1.25rem 0 0.9rem;
}
.sticky-winner .sticky-runner {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}
.sticky-winner .sticky-runner a {
    color: var(--text);
    font-weight: 600;
    text-decoration: underline;
}

/* ---- CHECKLIST (HIGH-EMPHASIS DARK BLOCK) ---- */
.biz-checklist {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 4.5rem 2rem;
    margin: 3rem 0 0;
}
.biz-checklist-inner { max-width: var(--max-width); margin: 0 auto; }
.biz-checklist-head { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.biz-checklist-head .eyebrow {
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #22c55e; margin-bottom: 0.75rem;
}
.biz-checklist-head h2 {
    font-size: 2.25rem; font-weight: 800;
    letter-spacing: -0.02em; color: #fff; margin: 0 0 1rem;
    line-height: 1.15;
}
.biz-checklist-head h2 em {
    font-style: normal;
    background: linear-gradient(135deg, #fff, #cbd5e1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.biz-checklist-head p {
    font-size: 1rem; color: rgba(255,255,255,0.7);
    line-height: 1.65; margin: 0;
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.checklist-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: all 0.2s;
}
.checklist-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}
.checklist-card.must { border-color: rgba(34,197,94,0.3); }
.checklist-card-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.85rem;
}
.checklist-number {
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.45);
}
.checklist-tag {
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.2rem 0.55rem; border-radius: 999px;
}
.checklist-tag.must { background: rgba(34,197,94,0.15); color: #4ade80; }
.checklist-tag.rec { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.checklist-card h3 {
    font-size: 1.02rem; font-weight: 700;
    color: #fff; margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}
.checklist-card p {
    font-size: 0.87rem; color: rgba(255,255,255,0.65);
    line-height: 1.55; margin: 0;
}
.checklist-footnote {
    text-align: center; color: rgba(255,255,255,0.6);
    margin: 2rem 0 0; font-size: 0.92rem;
}
.checklist-footnote strong { color: #fff; }

/* ---- AUTHOR BYLINE (hero) ---- */
.author-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.author-byline .author-name {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}
.author-byline .author-name:hover { color: var(--primary); }
.author-byline .author-role { color: var(--text-secondary); }
.author-byline .author-sep { color: var(--border); }
.author-byline .author-date { color: var(--text-secondary); }

/* ---- AFFILIATE DISCLOSURE BAR ---- */
.affiliate-disclosure-bar {
    background: #fffbeb;
    border-bottom: 1px solid #fef3c7;
    padding: 0.65rem 2rem;
}
.affiliate-disclosure-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #78350f;
    line-height: 1.5;
}
.affiliate-disclosure-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.08rem;
}
.affiliate-disclosure-inner p { margin: 0; }

/* ---- AUTHOR CARD (end of page) ---- */
.author-card {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
}
.author-card-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}
.author-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}
.author-card-name a {
    color: var(--text);
    text-decoration: none;
}
.author-card-name a:hover { color: var(--primary); }
.author-card-role {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0 0 0.85rem;
    font-weight: 500;
}
.author-card-bio {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 1.1rem;
}
.author-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.author-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.author-card-link:hover { text-decoration: underline; }
.author-card-sep { color: var(--border); }
.author-card-date { color: var(--text-secondary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-page-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-page-text h1 { font-size: 2rem; }
    .page-body { grid-template-columns: 1fr; }
    .page-aside { display: none; }
    .content-section { padding: 2.5rem 0; }
    .content-section h2 { font-size: 1.5rem; }
    .biz-checklist { padding: 3rem 1.25rem; }
    .biz-checklist-head h2 { font-size: 1.7rem; }
    .affiliate-disclosure-bar { padding: 0.65rem 1rem; }
    .author-card { padding: 1.4rem 1.25rem; }
}
