/* ==========================================================================
   Contact page + multi-step quote form
   ========================================================================== */
.nx-contact { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 880px) { .nx-contact { grid-template-columns: 1fr; } }

.nx-contact__form { background: #fff; border: 1px solid var(--nx-line); border-radius: var(--nx-r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--nx-sh-sm); }

/* progress dots */
.nx-quote__progress { display: flex; gap: .5rem; margin-bottom: 1.75rem; }
.nx-quote__progress span { height: 5px; flex: 1; border-radius: 999px; background: var(--nx-line); transition: background var(--nx-dur) var(--nx-ease); }
.nx-quote__progress span.is-active { background: var(--nx-blue); }

/* steps */
.nx-quote__step { border: 0; padding: 0; margin: 0; display: none; }
.nx-quote__step.is-active { display: block; animation: nxFade .35s var(--nx-ease); }
.nx-quote__step legend { font-size: 1.35rem; font-weight: var(--nx-fw-bold); color: var(--nx-navy-ink); margin-bottom: 1.25rem; padding: 0; }
@keyframes nxFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .nx-quote__step.is-active { animation: none; } }

/* service chooser */
.nx-quote__services { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 520px) { .nx-quote__services { grid-template-columns: 1fr; } }
.nx-quote__service { position: relative; display: flex; align-items: center; gap: .75rem; padding: 1rem; border: 1.5px solid var(--nx-line); border-radius: var(--nx-r); cursor: pointer; transition: border-color var(--nx-dur-fast) var(--nx-ease), background var(--nx-dur-fast) var(--nx-ease); }
.nx-quote__service:hover { border-color: var(--nx-blue); }
.nx-quote__service input { position: absolute; opacity: 0; }
.nx-quote__service-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--nx-blue-100); color: var(--nx-blue); flex: none; }
.nx-quote__service:has(input:checked) { border-color: var(--nx-blue); background: var(--nx-blue-100); }
.nx-quote__service:has(input:focus-visible) { outline: 3px solid var(--nx-blue); outline-offset: 2px; }

.nx-quote__nav { display: flex; gap: .75rem; margin-top: 1.5rem; justify-content: flex-end; }
.nx-quote__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--nx-slate); margin-top: .5rem; }
.nx-quote__consent input { margin-top: .2rem; }
.nx-quote__msg { margin-top: 1rem; min-height: 1.2em; font-size: .92rem; }
.nx-quote__msg.is-error { color: var(--nx-danger); }

/* success */
.nx-quote__done { text-align: center; padding: 1rem 0; }
.nx-quote__done-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--nx-success); color: #fff; display: grid; place-items: center; margin: 0 auto 1rem; }
.nx-quote__done h3 { margin-bottom: .5rem; }
.nx-quote__done p { color: var(--nx-slate); margin: 0 auto 1.5rem; }

/* aside */
.nx-contact__list { display: flex; flex-direction: column; gap: .85rem; margin: 1rem 0; }
.nx-contact__list li { display: flex; gap: .6rem; align-items: center; color: var(--nx-slate); }
.nx-contact__list a { color: var(--nx-navy-ink); }
.nx-contact__list a:hover { color: var(--nx-blue); }
.nx-contact__list svg { color: var(--nx-blue); flex: none; }
