/**
 * Delsè Ristrutturazioni - Preventivatore online
 * Stili. Tutto e' scopato sotto .dlsp-root per non toccare il tema WordPress.
 * Design tokens estratti dal sito delseristrutturazioni.it (Elementor).
 */

.dlsp-root {
  /* ---- Palette ufficiale Delsè ---- */
  --dlsp-coral: #EA5B52;
  --dlsp-coral-dark: #D5453C;
  --dlsp-coral-soft: #F4ADA8;
  --dlsp-coral-tint: #FEF1EF;
  --dlsp-cream: #FEF7F6;
  --dlsp-navy: #22343E;
  --dlsp-slate: #344054;
  --dlsp-gray: #475467;
  --dlsp-gray-light: #667085;
  --dlsp-border: #D0D5DD;
  --dlsp-border-soft: #E4E7EC;
  --dlsp-bg-soft: #F8F9F9;
  --dlsp-teal: #004759;
  --dlsp-teal-soft: #C9E3EA;
  --dlsp-white: #FFFFFF;
  --dlsp-success: #067647;
  --dlsp-error: #D92D20;

  /* ---- Scala ---- */
  --dlsp-radius: 8px;
  --dlsp-radius-lg: 14px;
  --dlsp-radius-sm: 5px;
  --dlsp-shadow-sm: 0 1px 2px rgba(16,24,40,.05);
  --dlsp-shadow: 0 4px 16px rgba(34,52,62,.07);
  --dlsp-shadow-lg: 0 18px 46px rgba(34,52,62,.13);
  --dlsp-font: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  font-family: var(--dlsp-font);
  color: var(--dlsp-gray);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.dlsp-root *,
.dlsp-root *::before,
.dlsp-root *::after { box-sizing: border-box; }
/* Difesa dal tema: alcuni temi/Elementor impongono white-space:nowrap sui
   <button> globalmente. Le nostre card sono <button> con testo lungo dentro:
   senza questo reset il tema forza tutto su una riga e la griglia esplode. */
.dlsp-root * { white-space: normal; }

.dlsp-root h1, .dlsp-root h2, .dlsp-root h3, .dlsp-root h4 {
  font-family: var(--dlsp-font);
  color: var(--dlsp-navy);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
}

/* ==========================================================================
   CARD CONTENITORE
   ========================================================================== */
.dlsp-card {
  background: var(--dlsp-white);
  border: 1px solid var(--dlsp-border-soft);
  border-radius: var(--dlsp-radius-lg);
  box-shadow: var(--dlsp-shadow);
  overflow: hidden;
}

/* ==========================================================================
   PROGRESS BAR
   ========================================================================== */
.dlsp-progress { padding: 18px 28px 0; }
.dlsp-progress__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 700; color: var(--dlsp-gray-light);
  letter-spacing: .02em; margin-bottom: 10px;
}
.dlsp-progress__flow { color: var(--dlsp-coral); }
.dlsp-progress__track {
  height: 6px; background: var(--dlsp-border-soft);
  border-radius: 99px; overflow: hidden;
}
.dlsp-progress__bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--dlsp-coral-soft), var(--dlsp-coral));
  border-radius: 99px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

/* ==========================================================================
   STEP
   ========================================================================== */
.dlsp-step { padding: 26px 28px 28px; }
.dlsp-step__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--dlsp-coral);
  background: var(--dlsp-coral-tint); padding: 5px 11px;
  border-radius: 99px; margin-bottom: 14px;
}
.dlsp-step__title { font-size: 27px; margin-bottom: 6px; }
.dlsp-step__subtitle { font-size: 16px; color: var(--dlsp-gray); margin: 0 0 22px; }
.dlsp-step__title + .dlsp-fields { margin-top: 22px; }

.dlsp-fields { display: flex; flex-direction: column; gap: 26px; }
.dlsp-field--hidden { display: none !important; }

.dlsp-label {
  display: block; font-size: 16px; font-weight: 700;
  color: var(--dlsp-navy); margin-bottom: 4px;
}
.dlsp-label .dlsp-opt { font-weight: 400; color: var(--dlsp-gray-light); font-size: 14px; }
.dlsp-label .dlsp-req { color: var(--dlsp-coral); font-weight: 700; }
.dlsp-help { font-size: 14px; color: var(--dlsp-gray-light); margin: 0 0 12px; }
.dlsp-label + .dlsp-help { margin-top: -2px; }

/* ==========================================================================
   CARDS (single & multi select)
   ========================================================================== */
.dlsp-grid { display: grid; gap: 12px; margin-top: 12px; }
.dlsp-grid--1 { grid-template-columns: 1fr; }
.dlsp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dlsp-grid--3 { grid-template-columns: repeat(3, 1fr); }

.dlsp-optcard {
  position: relative; display: flex; gap: 13px; align-items: flex-start;
  text-align: left; width: 100%;
  padding: 17px 17px 17px 16px;
  background: var(--dlsp-white);
  border: 1.5px solid var(--dlsp-border);
  border-radius: var(--dlsp-radius);
  cursor: pointer; font-family: inherit; font-size: 16px; color: var(--dlsp-slate);
  transition: border-color .16s, box-shadow .16s, background .16s, transform .16s;
}
.dlsp-optcard:hover { border-color: var(--dlsp-coral-soft); background: var(--dlsp-cream); }
.dlsp-optcard:focus-visible { outline: 2px solid var(--dlsp-coral); outline-offset: 2px; }
.dlsp-optcard.is-selected {
  border-color: var(--dlsp-coral); background: var(--dlsp-coral-tint);
  box-shadow: 0 0 0 3px rgba(234,91,82,.14);
}
.dlsp-optcard__icon {
  flex: 0 0 40px; height: 40px; width: 40px;
  display: grid; place-items: center;
  border-radius: var(--dlsp-radius-sm);
  background: var(--dlsp-teal-soft); color: var(--dlsp-teal);
  transition: background .16s, color .16s;
}
.dlsp-optcard.is-selected .dlsp-optcard__icon { background: var(--dlsp-coral); color: #fff; }
.dlsp-optcard__icon svg { width: 21px; height: 21px; display: block; }
.dlsp-optcard__body { flex: 1 1 auto; min-width: 0; }
.dlsp-optcard__label { display: block; font-weight: 700; color: var(--dlsp-navy); line-height: 1.3; }
.dlsp-optcard__desc { display: block; font-size: 13.5px; color: var(--dlsp-gray-light); margin-top: 3px; line-height: 1.4; }
.dlsp-optcard__check {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px;
  border: 1.5px solid var(--dlsp-border); border-radius: 6px;
  display: grid; place-items: center; background: #fff; transition: all .16s;
}
.dlsp-optcard--radio .dlsp-optcard__check { border-radius: 99px; }
.dlsp-optcard__check svg { width: 13px; height: 13px; opacity: 0; color: #fff; transition: opacity .12s; }
.dlsp-optcard.is-selected .dlsp-optcard__check { background: var(--dlsp-coral); border-color: var(--dlsp-coral); }
.dlsp-optcard.is-selected .dlsp-optcard__check svg { opacity: 1; }

/* Quantita' rivelata dentro la card selezionata */
.dlsp-qty {
  display: none; margin-top: 14px; padding-top: 13px;
  border-top: 1px dashed var(--dlsp-coral-soft);
  align-items: center; justify-content: space-between; gap: 12px;
}
.dlsp-optcard.is-selected .dlsp-qty { display: flex; }
.dlsp-qty__label { font-size: 13.5px; font-weight: 600; color: var(--dlsp-slate); }
.dlsp-stepper { display: flex; align-items: center; gap: 4px; background: #fff; border: 1.5px solid var(--dlsp-border); border-radius: var(--dlsp-radius-sm); padding: 3px; }
.dlsp-stepper button {
  width: 30px; height: 30px; border: 0; background: var(--dlsp-bg-soft); color: var(--dlsp-navy);
  border-radius: 4px; font-size: 18px; line-height: 1; cursor: pointer; font-family: inherit; font-weight: 700;
  transition: background .14s;
}
.dlsp-stepper button:hover { background: var(--dlsp-coral); color: #fff; }
.dlsp-stepper button:disabled { opacity: .35; cursor: not-allowed; background: var(--dlsp-bg-soft); color: var(--dlsp-navy); }
.dlsp-stepper input {
  width: 62px; text-align: center; border: 0; font-family: inherit; font-size: 15px;
  font-weight: 700; color: var(--dlsp-navy); background: transparent; padding: 0; -moz-appearance: textfield;
}
.dlsp-stepper input::-webkit-outer-spin-button,
.dlsp-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.dlsp-stepper__unit { font-size: 13px; color: var(--dlsp-gray-light); padding-right: 8px; white-space: nowrap; }

/* ==========================================================================
   INPUT TESTUALI / NUMERICI / SELECT
   ========================================================================== */
.dlsp-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dlsp-field--half { grid-column: span 1; }

.dlsp-input, .dlsp-select, .dlsp-textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--dlsp-border); border-radius: var(--dlsp-radius-sm);
  font-family: inherit; font-size: 16px; color: var(--dlsp-navy); background: #fff;
  transition: border-color .16s, box-shadow .16s;
  box-shadow: var(--dlsp-shadow-sm);
}
.dlsp-input:focus, .dlsp-select:focus, .dlsp-textarea:focus {
  outline: none; border-color: var(--dlsp-coral); box-shadow: 0 0 0 3px rgba(234,91,82,.14);
}
.dlsp-input::placeholder, .dlsp-textarea::placeholder { color: #98A2B3; }
.dlsp-textarea { min-height: 96px; resize: vertical; }
.dlsp-select {
  appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475467' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}

/* Campo numerico grande (mq, piani...) */
.dlsp-numberwrap { display: flex; align-items: stretch; max-width: 320px; }
.dlsp-numberwrap .dlsp-input { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.dlsp-numberwrap__unit {
  display: grid; place-items: center; padding: 0 16px;
  background: var(--dlsp-bg-soft); border: 1.5px solid var(--dlsp-border); border-left: 0;
  border-radius: 0 var(--dlsp-radius-sm) var(--dlsp-radius-sm) 0;
  font-size: 14px; font-weight: 700; color: var(--dlsp-gray); white-space: nowrap;
}

/* Slider abbinato al numero */
.dlsp-slider { width: 100%; max-width: 520px; margin-top: 14px; -webkit-appearance: none; appearance: none; background: transparent; }
.dlsp-slider::-webkit-slider-runnable-track { height: 6px; background: var(--dlsp-border-soft); border-radius: 99px; }
.dlsp-slider::-moz-range-track { height: 6px; background: var(--dlsp-border-soft); border-radius: 99px; }
.dlsp-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; margin-top: -8px;
  background: var(--dlsp-coral); border: 3px solid #fff; border-radius: 99px;
  box-shadow: 0 1px 5px rgba(34,52,62,.3); cursor: pointer;
}
.dlsp-slider::-moz-range-thumb {
  width: 16px; height: 16px; background: var(--dlsp-coral);
  border: 3px solid #fff; border-radius: 99px; box-shadow: 0 1px 5px rgba(34,52,62,.3); cursor: pointer;
}

/* Checkbox (privacy) */
.dlsp-check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; font-size: 14.5px; line-height: 1.5; color: var(--dlsp-gray); }
.dlsp-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.dlsp-check__box {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px;
  border: 1.5px solid var(--dlsp-border); border-radius: 6px; background: #fff;
  display: grid; place-items: center; transition: all .16s;
}
.dlsp-check__box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .12s; }
.dlsp-check input:checked + .dlsp-check__box { background: var(--dlsp-coral); border-color: var(--dlsp-coral); }
.dlsp-check input:checked + .dlsp-check__box svg { opacity: 1; }
.dlsp-check input:focus-visible + .dlsp-check__box { outline: 2px solid var(--dlsp-coral); outline-offset: 2px; }
.dlsp-check a { color: var(--dlsp-coral); text-decoration: underline; }

/* Valore calcolato (superficie facciata stimata) */
.dlsp-computed {
  display: flex; align-items: center; gap: 14px;
  background: var(--dlsp-cream); border: 1.5px dashed var(--dlsp-coral-soft);
  border-radius: var(--dlsp-radius); padding: 16px 18px;
}
.dlsp-computed__value { font-size: 28px; font-weight: 800; color: var(--dlsp-navy); line-height: 1; }
.dlsp-computed__label { font-size: 13.5px; font-weight: 700; color: var(--dlsp-coral); text-transform: uppercase; letter-spacing: .05em; }
.dlsp-computed__note { font-size: 13px; color: var(--dlsp-gray-light); margin-top: 4px; }

/* Errori */
.dlsp-error-msg {
  display: none; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--dlsp-error); margin-top: 8px;
}
.dlsp-error-msg svg { flex: 0 0 16px; width: 16px; height: 16px; }
.dlsp-field.has-error .dlsp-error-msg { display: flex; }
.dlsp-field.has-error .dlsp-input,
.dlsp-field.has-error .dlsp-select,
.dlsp-field.has-error .dlsp-textarea { border-color: var(--dlsp-error); }
.dlsp-field.has-error .dlsp-check__box { border-color: var(--dlsp-error); }

/* ==========================================================================
   NAVIGAZIONE
   ========================================================================== */
.dlsp-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 28px; border-top: 1px solid var(--dlsp-border-soft); background: var(--dlsp-bg-soft);
}
.dlsp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 17px; font-weight: 700; line-height: 1;
  padding: 17px 34px; border-radius: var(--dlsp-radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: background .16s, color .16s, border-color .16s, transform .12s, box-shadow .16s;
  text-decoration: none;
}
.dlsp-btn:active { transform: translateY(1px); }
.dlsp-btn--primary { background: var(--dlsp-coral); color: #fff; box-shadow: 0 4px 14px rgba(234,91,82,.28); }
.dlsp-btn--primary:hover { background: var(--dlsp-coral-dark); color: #fff; }
.dlsp-btn--ghost { background: transparent; color: var(--dlsp-gray); border-color: var(--dlsp-border); font-weight: 600; padding: 17px 24px; }
.dlsp-btn--ghost:hover { background: #fff; color: var(--dlsp-navy); border-color: var(--dlsp-slate); }
.dlsp-btn--light { background: #fff; color: var(--dlsp-slate); border-color: var(--dlsp-border); }
.dlsp-btn--light:hover { border-color: var(--dlsp-navy); color: var(--dlsp-navy); }
.dlsp-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.dlsp-btn svg { width: 18px; height: 18px; }
.dlsp-nav__spacer { flex: 1 1 auto; }

.dlsp-spinner {
  width: 17px; height: 17px; border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 99px; animation: dlsp-spin .7s linear infinite;
}
@keyframes dlsp-spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   INTRO
   ========================================================================== */
.dlsp-intro { padding: 34px 28px 28px; text-align: center; background: linear-gradient(180deg, var(--dlsp-cream), #fff 70%); }
.dlsp-intro__title { font-size: 33px; margin-bottom: 10px; }
.dlsp-intro__subtitle { font-size: 17px; max-width: 560px; margin: 0 auto 20px; }
.dlsp-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-bottom: 30px; }
.dlsp-trust li { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--dlsp-teal); list-style: none; }
.dlsp-trust svg { width: 17px; height: 17px; color: var(--dlsp-coral); flex: 0 0 auto; }
.dlsp-intro__question { font-size: 18px; font-weight: 700; color: var(--dlsp-navy); margin-bottom: 14px; }
.dlsp-intro .dlsp-grid { text-align: left; }
.dlsp-intro .dlsp-optcard { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
.dlsp-intro .dlsp-optcard__icon { width: 46px; height: 46px; flex-basis: 46px; margin-bottom: 4px; }
.dlsp-intro .dlsp-optcard__icon svg { width: 24px; height: 24px; }
.dlsp-intro .dlsp-optcard__check { display: none; }
.dlsp-intro .dlsp-optcard__label { font-size: 17px; }

/* ==========================================================================
   RISULTATO
   ========================================================================== */
.dlsp-result { padding: 0 0 28px; }
.dlsp-result__hero {
  text-align: center; padding: 36px 28px 32px;
  background: linear-gradient(160deg, var(--dlsp-navy), var(--dlsp-teal));
  color: #fff;
}
.dlsp-result__hero h2 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.dlsp-result__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dlsp-coral-soft); margin-bottom: 10px;
}
.dlsp-result__rangelabel { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dlsp-teal-soft); margin: 22px 0 6px; }
.dlsp-result__range {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 14px;
  font-size: 40px; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.01em;
}
.dlsp-result__range span.dlsp-sep { color: var(--dlsp-coral-soft); font-weight: 400; }
.dlsp-result__vat { font-size: 13.5px; color: var(--dlsp-teal-soft); margin-top: 10px; }

.dlsp-result__body { padding: 26px 28px 0; }
.dlsp-result__section-title { font-size: 19px; margin: 0 0 14px; }

.dlsp-breakdown { border: 1px solid var(--dlsp-border-soft); border-radius: var(--dlsp-radius); overflow: hidden; }
.dlsp-line { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--dlsp-border-soft); }
.dlsp-line:last-child { border-bottom: 0; }
.dlsp-line:nth-child(odd) { background: #FCFCFD; }
.dlsp-line__name { flex: 1 1 auto; font-size: 15px; color: var(--dlsp-slate); font-weight: 600; }
.dlsp-line__qty { display: block; font-size: 13px; font-weight: 400; color: var(--dlsp-gray-light); margin-top: 2px; }
.dlsp-line__price { flex: 0 0 auto; font-size: 15px; font-weight: 700; color: var(--dlsp-navy); white-space: nowrap; text-align: right; }
.dlsp-line--total { background: var(--dlsp-cream) !important; border-top: 1.5px solid var(--dlsp-coral-soft); }
.dlsp-line--total .dlsp-line__name { font-size: 16.5px; font-weight: 800; color: var(--dlsp-navy); }
.dlsp-line--total .dlsp-line__price { font-size: 17px; color: var(--dlsp-coral); }

.dlsp-factors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dlsp-chip {
  font-size: 13px; font-weight: 600; color: var(--dlsp-teal);
  background: var(--dlsp-teal-soft); border-radius: 99px; padding: 6px 13px;
}

.dlsp-note {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px; line-height: 1.55; color: var(--dlsp-gray);
  background: var(--dlsp-bg-soft); border: 1px solid var(--dlsp-border-soft);
  border-radius: var(--dlsp-radius); padding: 15px 17px; margin-top: 16px;
}
.dlsp-note--bonus { background: var(--dlsp-cream); border-color: var(--dlsp-coral-soft); }
.dlsp-note svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--dlsp-coral); margin-top: 1px; }
.dlsp-note strong { color: var(--dlsp-navy); }

.dlsp-result__cta {
  margin: 24px 28px 0; padding: 24px;
  background: var(--dlsp-cream); border: 1px solid var(--dlsp-coral-soft);
  border-radius: var(--dlsp-radius); text-align: center;
}
.dlsp-result__cta h3 { font-size: 20px; margin-bottom: 6px; }
.dlsp-result__cta p { font-size: 15px; margin: 0 0 18px; }
.dlsp-result__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.dlsp-result__restart { display: block; margin: 18px auto 0; background: none; border: 0; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--dlsp-gray-light); text-decoration: underline; cursor: pointer; }

/* Riepilogo risposte (collassabile) */
.dlsp-summary { margin-top: 18px; border: 1px solid var(--dlsp-border-soft); border-radius: var(--dlsp-radius); }
.dlsp-summary summary { cursor: pointer; padding: 13px 16px; font-size: 14.5px; font-weight: 700; color: var(--dlsp-slate); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.dlsp-summary summary::-webkit-details-marker { display: none; }
.dlsp-summary summary::after { content: "+"; font-size: 20px; color: var(--dlsp-coral); line-height: 1; }
.dlsp-summary[open] summary::after { content: "–"; }
.dlsp-summary__body { padding: 0 16px 14px; }
.dlsp-summary__row { display: flex; gap: 14px; justify-content: space-between; font-size: 14px; padding: 7px 0; border-top: 1px dashed var(--dlsp-border-soft); }
.dlsp-summary__row dt { color: var(--dlsp-gray-light); }
.dlsp-summary__row dd { margin: 0; color: var(--dlsp-navy); font-weight: 600; text-align: right; }

/* ==========================================================================
   ANIMAZIONI
   ========================================================================== */
@keyframes dlsp-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.dlsp-animate { animation: dlsp-in .34s cubic-bezier(.22,1,.36,1) both; }
@media (prefers-reduced-motion: reduce) {
  .dlsp-root *, .dlsp-root *::before, .dlsp-root *::after {
    animation-duration: .001ms !important; transition-duration: .001ms !important;
  }
}

/* Calcolo in corso */
.dlsp-calc { padding: 60px 28px; text-align: center; }
.dlsp-calc__ring { width: 46px; height: 46px; margin: 0 auto 18px; border: 4px solid var(--dlsp-border-soft); border-top-color: var(--dlsp-coral); border-radius: 99px; animation: dlsp-spin .8s linear infinite; }
.dlsp-calc__text { font-size: 16px; font-weight: 700; color: var(--dlsp-navy); }
.dlsp-calc__sub { font-size: 14px; color: var(--dlsp-gray-light); margin-top: 4px; }

.dlsp-srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 700px) {
  .dlsp-root { padding: 0 12px; }
  .dlsp-grid--2, .dlsp-grid--3 { grid-template-columns: 1fr; }
  .dlsp-row { grid-template-columns: 1fr; }
  .dlsp-step, .dlsp-intro, .dlsp-result__body { padding-left: 18px; padding-right: 18px; }
  .dlsp-progress { padding: 16px 18px 0; }
  .dlsp-nav { padding: 16px 18px; flex-direction: column-reverse; }
  .dlsp-nav .dlsp-btn { width: 100%; }
  .dlsp-nav__spacer { display: none; }
  .dlsp-step__title { font-size: 23px; }
  .dlsp-intro__title { font-size: 26px; }
  .dlsp-result__range { font-size: 29px; }
  .dlsp-result__cta { margin-left: 18px; margin-right: 18px; }
  .dlsp-qty { flex-direction: column; align-items: flex-start; }
  .dlsp-numberwrap { max-width: 100%; }
}
