        /* ── QUOTE REQUEST ── */
        #quote {
            background: var(--blue-dark);
            position: relative; overflow: hidden;
            padding: 100px 20px;
        }
        @media (min-width: 768px) { #quote { padding: 120px 48px; } }
        /* Giant Japanese watermark, mirrors #final-cta's device but top-left this time */
        #quote::before {
            content: '見積';
            position: absolute; left: -3vw; top: -6vw;
            font-family: 'Cormorant Garamond', serif;
            font-size: 38vw; line-height: 0.8;
            color: rgba(255,255,255,0.025);
            pointer-events: none; user-select: none;
        }
        #quote::after {
            content: '';
            position: absolute; top: 0; left: 10%; right: 10%;
            height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        #quote-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }

        .qf-tag {
            font-family: 'Prompt', sans-serif;
            font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
            color: var(--gold); display: flex; align-items: center;
            justify-content: center; gap: 14px; margin-bottom: 28px;
        }
        .qf-tag::before, .qf-tag::after {
            content: ''; display: block; height: 1px; width: 32px;
            background: var(--gold); opacity: 0.5;
        }
        #quote-title {
            font-family: 'Prompt', sans-serif;
            font-size: clamp(1.6rem, 4.5vw, 2.6rem);
            font-weight: 600; color: #fff;
            line-height: 1.3; margin: 0 0 16px;
            text-align: center;
        }
        #quote-desc {
            font-family: 'Prompt', sans-serif;
            font-size: clamp(0.88rem, 1.6vw, 0.98rem); font-weight: 300;
            color: rgba(255,255,255,0.55);
            line-height: 1.8; text-align: center;
            max-width: 480px; margin: 0 auto 56px;
        }

        /* Form reads as a distinct card floating on the watermark, not bare fields */
        #quote-form {
            display: flex; flex-direction: column; gap: 20px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.09);
            padding: 32px 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.25);
        }
        @media (min-width: 640px) { #quote-form { padding: 48px 44px; } }
        @keyframes qfPulse {
            0%   { box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 0 0 rgba(197,160,89,0); border-color: rgba(255,255,255,0.09); }
            30%  { box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(197,160,89,0.4); border-color: rgba(197,160,89,0.5); }
            100% { box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 0 0 rgba(197,160,89,0); border-color: rgba(255,255,255,0.09); }
        }
        #quote-form.qf-pulse { animation: qfPulse 1.4s ease; }

        .qf-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
        @media (min-width: 640px) { .qf-row { grid-template-columns: 1fr 1fr; } }

        .qf-field { display: flex; flex-direction: column; gap: 8px; }
        .qf-field-full { width: 100%; }
        .qf-field label {
            font-family: 'Prompt', sans-serif;
            font-size: 11px; letter-spacing: 0.06em;
            color: rgba(255,255,255,0.5);
        }
        .qf-req { color: var(--gold); }

        .qf-field input[type="text"],
        .qf-field input[type="tel"],
        .qf-field input[type="email"],
        .qf-field select,
        .qf-field textarea {
            font-family: 'Prompt', sans-serif;
            font-size: 16px;
            color: #fff;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 14px 16px;
            width: 100%;
            -webkit-appearance: none; appearance: none;
            transition: border-color 0.3s ease, background 0.3s ease;
        }
        .qf-field textarea { resize: vertical; line-height: 1.6; }
        .qf-field select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A059'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 14px;
        }
        .qf-field select option { background: var(--blue-dark); color: #fff; }
        .qf-field input::placeholder, .qf-field textarea::placeholder { color: rgba(255,255,255,0.28); }
        .qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus {
            outline: none; border-color: var(--gold); background: rgba(255,255,255,0.07);
            box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
        }

        .qf-pills { display: flex; flex-wrap: wrap; gap: 10px; }
        .qf-pill {
            position: relative; cursor: pointer;
            font-family: 'Prompt', sans-serif; font-size: 12px;
            color: rgba(255,255,255,0.55);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 9px 18px;
            transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .qf-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
        .qf-pill span::before {
            content: ''; display: inline-block; width: 0; opacity: 0;
            transition: width 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
        }
        .qf-pill.checked span::before,
        .qf-pill:has(input:checked) span::before {
            content: '✓'; width: auto; opacity: 1; margin-right: 6px;
        }
        .qf-pill.checked,
        .qf-pill:has(input:checked) {
            border-color: var(--gold); color: var(--gold); background: rgba(197,160,89,0.08);
        }
        @media (hover: hover) {
            .qf-pill:hover { border-color: rgba(197,160,89,0.4); color: rgba(255,255,255,0.8); }
        }

        .qf-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

        .qf-btn {
            align-self: center;
            font-family: 'Prompt', sans-serif;
            font-size: 0.72rem; font-weight: 500;
            letter-spacing: 0.22em; text-transform: uppercase;
            padding: 20px 56px; margin-top: 12px;
            background: var(--gold); color: var(--blue-dark);
            border: 1px solid var(--gold); cursor: pointer;
            transition: background 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                        transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                        box-shadow 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                        opacity 0.3s ease;
            -webkit-tap-highlight-color: transparent;
        }
        @media (hover: hover) {
            .qf-btn:hover:not(:disabled) { background: #cda75e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(197,160,89,0.22); }
        }
        .qf-btn:disabled { opacity: 0.55; cursor: default; }

        #qf-status {
            text-align: center;
            font-family: 'Prompt', sans-serif;
            font-size: 12px; letter-spacing: 0.02em;
            margin-top: 4px; min-height: 1.4em;
            color: rgba(255,255,255,0.5);
        }
        #qf-status.qf-status-ok { color: var(--gold); }
        #qf-status.qf-status-err { color: rgba(255,140,140,0.9); }
        #qf-status a { color: inherit; text-decoration: underline; }
