/* ═══════════════════════════════════════════════════════════════════
   Benefits page styles
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --nw-delta: #6366f1;
    --nw-theta: #8b5cf6;
    --nw-alpha: #06b6d4;
    --nw-beta:  #10b981;
    --nw-gamma: #f59e0b;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.ben-hero {
    padding: var(--size-8) var(--size-7);
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-color: rgba(99,102,241,0.3);
    color: #f8fafc;
}
.ben-hero .eyebrow { color: #a5b4fc; }
.page-h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(120deg, #e0e7ff 0%, #a5b4fc 50%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ben-hero .lede { color: rgba(248,250,252,0.75); max-width: 70ch; }

/* ── BENEFITS NAV PILLS ────────────────────────────────────────── */
.benefits-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--size-2);
}

.bna-pill {
    padding: 0.4em 1em;
    border-radius: var(--radius-round);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.15s;
}
.bna-pill:hover { opacity: 0.8; }

.bna-delta { background: rgba(99,102,241,0.2);  color: #818cf8; border: 1px solid rgba(99,102,241,0.35); }
.bna-theta { background: rgba(139,92,246,0.2);  color: #a78bfa; border: 1px solid rgba(139,92,246,0.35); }
.bna-alpha { background: rgba(6,182,212,0.2);   color: #67e8f9; border: 1px solid rgba(6,182,212,0.35); }
.bna-beta  { background: rgba(16,185,129,0.2);  color: #6ee7b7; border: 1px solid rgba(16,185,129,0.35); }
.bna-gamma { background: rgba(245,158,11,0.2);  color: #fcd34d; border: 1px solid rgba(245,158,11,0.35); }

/* ── QUICK WINS ────────────────────────────────────────────────── */
.quick-wins {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--size-3);
    padding: var(--size-5) var(--size-6);
}

.qw-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--size-2);
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
}

.qw-icon { font-size: 1.8rem; line-height: 1; }
.qw-divider {
    width: 1px;
    height: 40px;
    background: var(--site-border);
}

@media (max-width: 640px) { .qw-divider { display: none; } }

/* ── BENEFIT SECTION ───────────────────────────────────────────── */
.benefit-section { display: grid; gap: var(--size-4); }

.bs-header {
    padding: var(--size-6) var(--size-7);
    color: white;
    display: flex;
    gap: var(--size-5);
}

.bs-header-delta { background: linear-gradient(135deg, #1e1b4b, #6366f1); border-color: rgba(99,102,241,0.3); }
.bs-header-theta { background: linear-gradient(135deg, #2e1065, #8b5cf6); border-color: rgba(139,92,246,0.3); }
.bs-header-alpha { background: linear-gradient(135deg, #0c4a6e, #06b6d4); border-color: rgba(6,182,212,0.3); }
.bs-header-beta  { background: linear-gradient(135deg, #064e3b, #10b981); border-color: rgba(16,185,129,0.3); }
.bs-header-gamma { background: linear-gradient(135deg, #451a03, #f59e0b); border-color: rgba(245,158,11,0.3); }

.bs-icon { font-size: 3rem; line-height: 1; display: block; margin-bottom: var(--size-2); }

.eyebrow-light {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}

.bs-header h2 {
    margin: var(--size-1) 0 var(--size-3);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
}

.bs-intro {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.8;
    opacity: 0.82;
    max-width: 72ch;
}

/* ── BENEFITS LIST ─────────────────────────────────────────────── */
.benefits-list {
    display: grid;
    gap: var(--size-3);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-item {
    display: flex;
    gap: var(--size-4);
    padding: var(--size-4) var(--size-5);
    align-items: flex-start;
}

.bi-check {
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

.bi-check-delta { background: rgba(99,102,241,0.12);  color: var(--nw-delta); }
.bi-check-theta { background: rgba(139,92,246,0.12);  color: var(--nw-theta); }
.bi-check-alpha { background: rgba(6,182,212,0.12);   color: var(--nw-alpha); }
.bi-check-beta  { background: rgba(16,185,129,0.12);  color: var(--nw-beta); }
.bi-check-gamma { background: rgba(245,158,11,0.12);  color: var(--nw-gamma); }

.bi-content { display: grid; gap: var(--size-1); }

.bi-name {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

.bi-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--site-text-muted);
}

/* ── COMPARISON TABLE ──────────────────────────────────────────── */
.content-section { display: grid; gap: var(--size-5); }

.section-header { max-width: 70ch; }
.section-header h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }

.comparison-table { overflow-x: auto; }

.ct-row {
    display: grid;
    grid-template-columns: 200px repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--site-border);
    font-size: 0.85rem;
}

.ct-row:last-child { border-bottom: none; }

.ct-row span {
    padding: var(--size-3) var(--size-4);
    line-height: 1.5;
    border-right: 1px solid var(--site-border);
}

.ct-row span:last-child { border-right: none; }

.ct-head span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--site-text-muted);
    background: var(--gray-0);
}

.ct-highlight {
    background: rgba(99,102,241,0.04);
}

.ct-highlight span { font-size: 0.9rem; }

/* ── CTA ───────────────────────────────────────────────────────── */
.hiw-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--size-5);
    padding: var(--size-6) var(--size-7);
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border-color: rgba(99,102,241,0.25);
    color: #f8fafc;
}
.hiw-cta h2 { margin: 0; font-size: clamp(1.4rem,2.5vw,2rem); font-weight:800; color:white; }
.hiw-cta p  { margin: 0; color: rgba(248,250,252,0.65); font-size: 0.92rem; }
.cta-actions { display: flex; gap: var(--size-3); flex-wrap: wrap; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .benefits-list { grid-template-columns: 1fr; }
    .ct-row { grid-template-columns: 140px repeat(4, 1fr); }
}

@media (max-width: 640px) {
    .ben-hero  { padding: var(--size-6) var(--size-5); }
    .bs-header { padding: var(--size-5); }
    .hiw-cta   { padding: var(--size-6) var(--size-5); }
    .ct-row    { grid-template-columns: 120px 1fr 1fr; }
    .ct-row span:nth-child(4),
    .ct-row span:nth-child(5) { display: none; }
}
