/* Stage B — /beregn-pris (BUILD-PLAN 4.5).
   A standalone page, not a section: it reuses quote.css's summary list and
   main.css's .field/.input primitives, and adds only its own layout. */

/* The fixed header is already cleared by header.css's `main { padding-top }`
   — only the landing page opts out of that (hero.css). */
.stage-b {
    padding: var(--section-pad-sm) 0;
    background: var(--neutral-200);
}

.stage-b__container {
    max-width: 960px;
}

.stage-b__title {
    margin: 0 0 var(--space-12);
    color: var(--primary);
    font-size: var(--text-h2);
}

.stage-b__lead {
    margin: 0 0 var(--space-32);
    color: var(--secondary);
    font-size: var(--text-lead);
    line-height: 1.6;
    max-width: 60ch;
}

/* Summary beside the form on desktop, above it on mobile — the visitor
   should be able to check what they already sent while adding to it. */
.stage-b__grid {
    display: grid;
    gap: var(--space-24);
    align-items: start;
}

@media (min-width: 900px) {
    .stage-b__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        gap: var(--space-40);
    }
}

.stage-b__summary-card,
.stage-b__form {
    padding: var(--space-24);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.stage-b__summary-label {
    margin: 0 0 var(--space-16);
    color: var(--secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stage-b__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

/* The shared .input is borderless white — right on the quote card, where the
   fields sit in a tight labelled stack inside a dark section, but on this page
   an empty field became invisible against the white card and there was no way
   to see where to click. Stage B has no export equivalent to be faithful to,
   so the border is added here only, leaving the primitive untouched. */
.stage-b__form .input {
    border-color: var(--neutral-800);
}

.stage-b__form .input:focus {
    border-color: var(--green);
}

.stage-b__note {
    margin: 0;
    color: var(--secondary);
    font-size: var(--text-sm);
    line-height: 1.5;
}
