:root {
                --ink: #111827;
                --muted: #64748b;
                --line: #dbe3ef;
                --soft: #f3f6fa;
                --brand: #d71920;
                --night: #0b1220;
            }

            * { box-sizing: border-box; }
            body {
                margin: 0;
                background: var(--soft);
                color: var(--ink);
                font-family: "Instrument Sans", system-ui, sans-serif;
            }

            a { color: inherit; text-decoration: none; }
            button, input, textarea, select { font: inherit; }

            .topbar {
                background: rgba(255, 255, 255, .94);
                border-bottom: 1px solid var(--line);
            }

            .nav {
                width: min(1180px, calc(100% - 32px));
                min-height: 92px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 24px;
            }

            .navbar-toggler {
                border-color: var(--line);
                border-radius: 8px;
            }

            .navbar-toggler:focus {
                box-shadow: 0 0 0 .18rem rgba(215, 25, 32, .2);
            }

            .brand-lockup {
                display: flex;
                align-items: center;
                gap: 14px;
                font-size: 17px;
                font-weight: 800;
            }

            .brand-logo {
                width: 108px;
                height: 66px;
                display: grid;
                place-items: center;
            }

            .brand-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

            .nav-links {
                display: flex;
                align-items: center;
                gap: 20px;
                color: var(--muted);
                font-size: 14px;
                font-weight: 800;
            }

            .nav-links .nav-link {
                color: var(--muted);
                padding: 8px 0;
            }

            .nav-links .nav-link:hover,
            .nav-links .nav-link:focus {
                color: var(--brand);
            }

            .page {
                width: min(1180px, calc(100% - 32px));
                margin: 0 auto;
                padding: 64px 0 82px;
            }

            .quote-layout {
                display: grid;
                grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
                gap: 28px;
                align-items: start;
            }

            .quote-intro {
                padding-top: 18px;
            }

            .quote-intro span {
                display: inline-flex;
                align-items: center;
                min-height: 32px;
                border-radius: 8px;
                background: #e2e8f0;
                color: #334155;
                padding: 0 12px;
                font-size: 13px;
                font-weight: 800;
                text-transform: uppercase;
            }

            h1 {
                margin: 16px 0 14px;
                font-size: clamp(38px, 6vw, 64px);
                line-height: 1;
            }

            .quote-intro p {
                margin: 0;
                color: var(--muted);
                font-size: 18px;
                line-height: 1.6;
            }

            .panel {
                border: 1px solid var(--line);
                border-radius: 8px;
                background: #fff;
                box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
                padding: 24px;
            }

            .form-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
            }

            .field.full { grid-column: 1 / -1; }
            label {
                display: block;
                margin-bottom: 7px;
                color: var(--muted);
                font-size: 14px;
                font-weight: 800;
            }

            input, textarea, select {
                width: 100%;
                min-height: 46px;
                border: 1px solid var(--line);
                border-radius: 8px;
                padding: 10px 12px;
                color: var(--ink);
            }

            textarea {
                min-height: 130px;
                resize: vertical;
            }

            .button {
                min-height: 46px;
                border: 0;
                border-radius: 8px;
                background: var(--brand);
                color: #fff;
                padding: 0 18px;
                font-weight: 900;
                cursor: pointer;
                box-shadow: 0 12px 24px rgba(215, 25, 32, .22);
            }

            .status {
                margin-bottom: 18px;
                border-radius: 8px;
                background: #dcfce7;
                color: #14532d;
                padding: 12px 14px;
                font-weight: 800;
            }

            .error {
                margin-top: 6px;
                color: #b91c1c;
                font-size: 13px;
                font-weight: 700;
            }

            @media (max-width: 860px) {
                .nav {
                    align-items: flex-start;
                    flex-direction: column;
                    padding: 16px 0;
                }

                .navbar-collapse {
                    width: 100%;
                }

                .brand-logo {
                    width: 96px;
                    height: 60px;
                }

                .nav-links {
                    width: 100%;
                    align-items: flex-start;
                    gap: 10px;
                    padding-bottom: 4px;
                }

                .quote-layout,
                .form-grid {
                    grid-template-columns: 1fr;
                }
            }


.quote-submit-row {
    margin-top: 20px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
