/* ==========================================================================
   Pricing page — unique page-specific components.
   ========================================================================== */
.crumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); padding-top: 1.5rem; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--white); text-decoration: none; }
.crumb span[aria-current] { color: var(--orange); }
.mt-lg { margin-top: 2rem; }

/* ---- Hero ---- */
.price-hero { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem); text-align: center; }
.price-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 20ch; margin-inline: auto; }
.price-hero__lede { margin-top: 1.25rem; font-size: 1.1rem; color: var(--muted); max-width: 52ch; margin-inline: auto; }
.price-hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.82rem; color: var(--success); }
.price-hero__badge svg { width: 16px; height: 16px; }

/* ---- Live estimator ---- */
.estimator { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-solid); padding: clamp(1.75rem, 3.5vw, 2.75rem); }
.estimator__group { margin-bottom: 1.75rem; }
.estimator__group:last-child { margin-bottom: 0; }
.estimator__label { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: block; margin-bottom: 0.75rem; }
.estimator__options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.estimator__opt { all: unset; cursor: pointer; padding: 0.65rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--muted); transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease; }
.estimator__opt.is-active { border-color: var(--orange); color: var(--white); background: rgba(250,184,44,0.08); }

.estimator__summary { position: sticky; top: 90px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 1.75rem; background: var(--surface); }
.estimator__summary-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.estimator__total { font-size: 2.4rem; font-weight: 700; color: var(--white); margin-top: 0.5rem; font-variant-numeric: tabular-nums; transition: opacity 0.15s ease; }
.estimator__desc { font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; }
.estimator__list { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.6rem; }
.estimator__list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--text); list-style: none; }
.estimator__list svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; margin-top: 0.15rem; }
.estimator__summary .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
@media (max-width: 860px) { .estimator { grid-template-columns: 1fr; } .estimator__summary { position: relative; top: 0; } }

/* ---- Comparison matrix ---- */
.matrix-wrap { overflow-x: auto; }
.matrix { width: 100%; border-collapse: collapse; min-width: 640px; }
.matrix th, .matrix td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.matrix thead th { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 500; }
.matrix tbody th { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.matrix td { color: var(--muted); font-variant-numeric: tabular-nums; }
.matrix tbody tr:hover { background: rgba(255,255,255,0.02); }

/* ---- Not included / refund ---- */
.notincluded-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.notincluded-card { padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.notincluded-card h3 { font-size: 1.05rem; margin-bottom: 0.9rem; }
.notincluded-card ul { display: flex; flex-direction: column; gap: 0.6rem; }
.notincluded-card li { font-size: 0.9rem; color: var(--muted); list-style: none; }
@media (max-width: 700px) { .notincluded-grid { grid-template-columns: 1fr; } }

.other-svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.other-svc a { display: block; padding: 1.25rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); transition: border-color 0.2s ease, transform 0.2s ease; }
.other-svc a:hover { border-color: var(--border-strong); transform: translateY(-3px); text-decoration: none; }
.other-svc strong { display: block; color: var(--white); font-size: 0.98rem; margin-bottom: 0.25rem; }
.other-svc span { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 780px) { .other-svc { grid-template-columns: 1fr; } }
