/* ═══════════════════════════════════════════
   Why Pricing Matters — Page-specific styles
   ═══════════════════════════════════════════ */

.why-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.why-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.why-hero-sub {
    max-width: 720px;
    margin: 0 auto 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Content sections ────────────────────── */
.why-section {
    padding: 80px 0;
}

.why-section.alt {
    background: var(--bg-secondary);
}

.why-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.why-block p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 16px;
}

/* ── Chart images ────────────────────────── */
.why-chart {
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f1117;
}

.why-chart img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Insight callout ─────────────────────── */
.why-insight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-insight strong {
    color: var(--text-primary);
}

/* ── Method grid ─────────────────────────── */
.why-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.why-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s;
}

.why-method-card:hover {
    border-color: var(--accent);
}

.why-method-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-method-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Bottom CTA ──────────────────────────── */
.why-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.why-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.why-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ── Founder intro ────────────────────────── */
.founder-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--accent) !important;
    font-weight: 500;
    margin-bottom: 4px !important;
    max-width: none;
}

.founder-role {
    font-size: 1rem;
    color: var(--text-muted) !important;
    font-weight: 400;
    max-width: none;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .why-hero {
        padding: 120px 0 40px;
    }

    .why-section {
        padding: 48px 0;
    }

    .why-method-grid {
        grid-template-columns: 1fr;
    }
}
