/* ═══════════════════════════════════════════════
   ClearlySpace Quote Widget v2 — CSS
   Mobile-first · Scoped under .cs-widget
   ═══════════════════════════════════════════════ */

.cs-widget, .cs-widget *, .cs-widget *::before, .cs-widget *::after,
.cs-thankyou, .cs-thankyou *, .cs-thankyou *::before, .cs-thankyou *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

.cs-widget {
  --cs-navy: #1e3a5f;
  --cs-teal: #4fc3c3;
  --cs-teal-dark: #3ba8a8;
  --cs-teal-light: rgba(79,195,195,0.1);
  --cs-white: #ffffff;
  --cs-bg: #f8f9fb;
  --cs-text: #1a2a3a;
  --cs-muted: #5a6a7a;
  --cs-border: #e2e6ec;
  --cs-green: #22c55e;
  --cs-amber: #f59e0b;
  --cs-red: #ef4444;
  --cs-radius: 12px;
  --cs-radius-sm: 8px;
  --cs-shadow: 0 2px 12px rgba(30,58,95,0.08), 0 1px 3px rgba(30,58,95,0.06);
  --cs-shadow-lg: 0 8px 30px rgba(30,58,95,0.12);

  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px; line-height: 1.5; color: var(--cs-text);
  background: var(--cs-white);
  border-radius: var(--cs-radius);
  box-shadow: var(--cs-shadow);
  max-width: 440px; margin: 0 auto;
  overflow: hidden; position: relative;
  padding-bottom: 70px;
}

/* Header */
.cs-header { background: var(--cs-navy); padding: 14px 20px; display: flex; align-items: center; justify-content: center; }
.cs-logo { height: 32px; width: auto; object-fit: contain; }

/* Progress */
.cs-progress { padding: 12px 20px 8px; }
.cs-progress__track { height: 4px; background: var(--cs-border); border-radius: 2px; overflow: hidden; }
.cs-progress__fill { height: 100%; background: var(--cs-teal); border-radius: 2px; width: 0%; transition: width 0.4s ease; }
.cs-progress__label { font-size: 12px; color: var(--cs-muted); margin-top: 6px; text-align: right; font-weight: 500; }

/* Hook */
.cs-hook { padding: 20px 20px 0; text-align: center; }
.cs-hook__headline { font-size: 22px; font-weight: 700; color: var(--cs-navy); line-height: 1.25; margin-bottom: 6px; }
.cs-hook__sub { font-size: 14px; color: var(--cs-muted); margin-bottom: 14px; }
.cs-hook__price { display: inline-flex; align-items: baseline; gap: 6px; background: var(--cs-teal-light); padding: 6px 16px; border-radius: 20px; margin-bottom: 8px; }
.cs-hook__from { font-size: 13px; color: var(--cs-muted); font-weight: 500; }
.cs-hook__amount { font-size: 20px; font-weight: 700; color: var(--cs-teal-dark); }

/* Steps */
.cs-step { padding: 16px 20px 24px; }
.cs-step--hidden { display: none; }
.cs-step--active { display: block; animation: cs-fadeIn 0.3s ease; }
@keyframes cs-fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.cs-step__title { font-size: 18px; font-weight: 700; color: var(--cs-navy); margin-bottom: 16px; line-height: 1.3; }
.cs-step__sub { font-size: 14px; color: var(--cs-muted); margin-bottom: 16px; }

/* Back */
.cs-back { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; color: var(--cs-muted); font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; padding: 4px 0; margin-bottom: 12px; transition: color 0.2s; }
.cs-back:hover { color: var(--cs-navy); }

/* Service Cards */
.cs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cs-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 16px 10px; background: var(--cs-white); border: 2px solid var(--cs-border); border-radius: var(--cs-radius-sm); cursor: pointer; transition: all 0.2s ease; font-family: inherit; color: var(--cs-text); min-height: 110px; -webkit-tap-highlight-color: transparent; }
.cs-card:hover, .cs-card:focus-visible { border-color: var(--cs-teal); box-shadow: 0 0 0 3px var(--cs-teal-light); outline: none; }
.cs-card[aria-checked="true"] { border-color: var(--cs-teal); background: var(--cs-teal-light); }
.cs-card__icon { line-height: 0; }
.cs-card__name { font-size: 14px; font-weight: 600; color: var(--cs-navy); }
.cs-card__desc { font-size: 11px; color: var(--cs-muted); line-height: 1.3; }

/* Size Buttons */
.cs-sizes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cs-size-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px 10px; background: var(--cs-white); border: 2px solid var(--cs-border); border-radius: var(--cs-radius-sm); cursor: pointer; transition: all 0.2s ease; font-family: inherit; color: var(--cs-text); min-height: 56px; -webkit-tap-highlight-color: transparent; }
.cs-size-btn:hover, .cs-size-btn:focus-visible { border-color: var(--cs-teal); box-shadow: 0 0 0 3px var(--cs-teal-light); outline: none; }
.cs-size-btn[aria-checked="true"] { border-color: var(--cs-teal); background: var(--cs-teal-light); }
.cs-size-btn__label { font-size: 14px; font-weight: 600; color: var(--cs-navy); }
.cs-size-btn__price { font-size: 12px; color: var(--cs-muted); margin-top: 2px; }

/* Price Hero */
.cs-price-hero { text-align: center; padding: 20px 0 8px; }
.cs-price-hero__label { display: block; font-size: 14px; color: var(--cs-muted); margin-bottom: 4px; }
.cs-price-hero__amount { display: block; font-size: 48px; font-weight: 700; color: var(--cs-teal); line-height: 1.1; letter-spacing: -1px; }
.cs-price-note { text-align: center; font-size: 11px; color: var(--cs-muted); font-style: italic; margin-bottom: 12px; }

/* Urgency */
.cs-urgency { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--cs-amber); margin-bottom: 14px; }

/* Trust */
.cs-trust { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 14px; }
.cs-trust--compact { margin-bottom: 16px; }
.cs-trust__badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: var(--cs-navy); background: var(--cs-bg); padding: 5px 10px; border-radius: 16px; }

/* Guarantee */
.cs-guarantee { display: flex; gap: 10px; align-items: flex-start; background: var(--cs-teal-light); border: 1px solid rgba(79,195,195,0.25); border-radius: var(--cs-radius-sm); padding: 12px 14px; margin-bottom: 16px; }
.cs-guarantee svg { flex-shrink: 0; margin-top: 1px; }
.cs-guarantee p { font-size: 13px; color: var(--cs-navy); font-weight: 500; line-height: 1.4; }

/* Testimonial */
.cs-testimonial { background: var(--cs-bg); border-radius: var(--cs-radius-sm); padding: 14px; margin-bottom: 16px; text-align: center; }
.cs-testimonial__quote { font-size: 13px; color: var(--cs-text); font-style: italic; line-height: 1.5; margin-bottom: 6px; }
.cs-testimonial__name { font-size: 12px; color: var(--cs-muted); font-weight: 600; }

/* Add-ons */
.cs-addons { margin-bottom: 18px; }
.cs-addons__title { font-size: 15px; font-weight: 600; color: var(--cs-navy); margin-bottom: 10px; }
.cs-addon { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--cs-border); border-radius: var(--cs-radius-sm); margin-bottom: 8px; cursor: pointer; transition: all 0.2s; min-height: 48px; -webkit-tap-highlight-color: transparent; }
.cs-addon:hover { border-color: var(--cs-teal); }
.cs-addon__check { position: absolute; opacity: 0; width: 0; height: 0; }
.cs-addon__box { width: 22px; height: 22px; border: 2px solid var(--cs-border); border-radius: 5px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; position: relative; }
.cs-addon__box::after { content: ''; width: 12px; height: 12px; background: var(--cs-teal); border-radius: 3px; opacity: 0; transform: scale(0.5); transition: all 0.15s ease; }
.cs-addon__check:checked ~ .cs-addon__box { border-color: var(--cs-teal); }
.cs-addon__check:checked ~ .cs-addon__box::after { opacity: 1; transform: scale(1); }
.cs-addon__check:focus-visible ~ .cs-addon__box { box-shadow: 0 0 0 3px var(--cs-teal-light); }
.cs-addon__name { font-size: 14px; font-weight: 500; color: var(--cs-text); flex: 1; }
.cs-addon__price { font-size: 14px; font-weight: 600; color: var(--cs-teal-dark); white-space: nowrap; }

/* Total */
.cs-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--cs-navy); border-radius: var(--cs-radius-sm); margin-top: 10px; }
.cs-total__label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }
.cs-total__amount { font-size: 20px; font-weight: 700; color: var(--cs-white); }

/* Form */
.cs-field { margin-bottom: 14px; }
.cs-field__label { display: block; font-size: 13px; font-weight: 600; color: var(--cs-navy); margin-bottom: 5px; }
.cs-required { color: var(--cs-red); }
.cs-input { display: block; width: 100%; padding: 12px 14px; font-family: inherit; font-size: 15px; color: var(--cs-text); background: var(--cs-white); border: 1.5px solid var(--cs-border); border-radius: var(--cs-radius-sm); transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none; min-height: 48px; }
.cs-input:focus { outline: none; border-color: var(--cs-teal); box-shadow: 0 0 0 3px var(--cs-teal-light); }
.cs-input::placeholder { color: #b0b8c4; }
.cs-input--invalid { border-color: var(--cs-red) !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important; }

/* Phone Group */
.cs-phone-group { display: flex; gap: 8px; }
.cs-select { flex-shrink: 0; width: 110px; padding: 12px 8px; font-family: inherit; font-size: 14px; color: var(--cs-text); background: var(--cs-white); border: 1.5px solid var(--cs-border); border-radius: var(--cs-radius-sm); cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-position: right 6px center; background-repeat: no-repeat; background-size: 16px; min-height: 48px; }
.cs-select:focus { outline: none; border-color: var(--cs-teal); box-shadow: 0 0 0 3px var(--cs-teal-light); }
.cs-input--phone { flex: 1; }

/* Phone Preview */
.cs-phone-preview { font-size: 11px; color: var(--cs-muted); margin-top: 4px; min-height: 16px; }

/* Email Hint */
.cs-email-hint { font-size: 12px; color: var(--cs-red); margin-top: 4px; }

/* Zone Feedback */
.cs-zone-feedback { min-height: 20px; margin: 8px 0 12px; font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.cs-zone-feedback--in { color: var(--cs-green); }
.cs-zone-feedback--out { color: var(--cs-amber); }

/* Buttons */
.cs-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 24px; font-family: inherit; font-size: 15px; font-weight: 600; border: none; border-radius: var(--cs-radius-sm); cursor: pointer; transition: all 0.2s; text-decoration: none; text-align: center; min-height: 52px; -webkit-tap-highlight-color: transparent; }
.cs-btn--primary { background: var(--cs-teal); color: var(--cs-white); }
.cs-btn--primary:hover, .cs-btn--primary:focus-visible { background: var(--cs-teal-dark); box-shadow: var(--cs-shadow); }
.cs-btn--submit { background: var(--cs-teal); color: var(--cs-white); font-size: 16px; padding: 16px 24px; min-height: 56px; margin-top: 8px; }
.cs-btn--submit:hover, .cs-btn--submit:focus-visible { background: var(--cs-teal-dark); box-shadow: var(--cs-shadow-lg); transform: translateY(-1px); }
.cs-btn--whatsapp { background: #25D366; color: var(--cs-white); }
.cs-btn--whatsapp:hover { background: #1fb855; }
.cs-btn--phone { background: var(--cs-navy); color: var(--cs-white); }
.cs-btn--phone:hover { background: #152d4a; }
.cs-btn--large { padding: 16px 24px; font-size: 16px; min-height: 56px; }
.cs-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Not Sure Message */
.cs-notsure-msg { background: var(--cs-teal-light); border-radius: var(--cs-radius-sm); padding: 14px; margin-bottom: 14px; }
.cs-notsure-msg p { font-size: 14px; color: var(--cs-navy); font-weight: 500; }
.cs-notsure-trust { margin-bottom: 14px; }

/* Step 5 Trust */
.cs-step5-trust { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.cs-step5-trust__item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--cs-muted); }
.cs-step5-trust__item svg { flex-shrink: 0; }

/* Price Summary */
.cs-price-summary { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--cs-teal-light); border-radius: var(--cs-radius-sm); margin-bottom: 18px; }
.cs-price-summary__label { font-size: 14px; font-weight: 500; color: var(--cs-navy); }
.cs-price-summary__amount { font-size: 22px; font-weight: 700; color: var(--cs-teal-dark); }

/* Error */
.cs-error { padding: 10px 14px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--cs-radius-sm); color: var(--cs-red); font-size: 13px; font-weight: 500; margin-bottom: 12px; }

/* Loading */
.cs-loading { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px; text-align: center; color: var(--cs-muted); font-size: 14px; font-weight: 500; }
.cs-spinner { width: 32px; height: 32px; border: 3px solid var(--cs-border); border-top-color: var(--cs-teal); border-radius: 50%; animation: cs-spin 0.7s linear infinite; }
@keyframes cs-spin { to { transform: rotate(360deg); } }

/* Sticky Contact Bar */
.cs-contact-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; gap: 1px; z-index: 9999; background: var(--cs-border); box-shadow: 0 -2px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.cs-contact-bar--hidden { transform: translateY(100%); }
.cs-contact-bar__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 8px; text-decoration: none; font-family: inherit; font-size: 13px; font-weight: 600; transition: opacity 0.2s; min-height: 52px; }
.cs-contact-bar__btn:active { opacity: 0.85; }
.cs-contact-bar__btn--phone { background: var(--cs-navy); color: var(--cs-white); }
.cs-contact-bar__btn--wa { background: #25D366; color: var(--cs-white); }
.cs-contact-bar__number { font-weight: 400; font-size: 12px; opacity: 0.85; }

/* Extra spacing on step 5 to clear sticky bar */
#cs-step-5 { padding-bottom: 32px; }

/* HMO CTA */
.cs-step__title--hmo { font-size: 20px; text-align: center; }
.cs-hmo-body { font-size: 14px; color: var(--cs-muted); text-align: center; margin-bottom: 20px; line-height: 1.5; }
.cs-hmo-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cs-hmo-form { border-top: 1px solid var(--cs-border); padding-top: 18px; }
.cs-hmo-form__title { font-size: 15px; font-weight: 600; color: var(--cs-navy); margin-bottom: 14px; text-align: center; }

/* ═══ Exit-Intent Banner ═══ */
.cs-exit-banner { position: fixed; bottom: 60px; left: 12px; right: 12px; max-width: 420px; margin: 0 auto; display: flex; align-items: center; gap: 10px; background: var(--cs-navy); color: var(--cs-white); padding: 12px 16px; border-radius: var(--cs-radius); box-shadow: var(--cs-shadow-lg); z-index: 10000; animation: cs-slideUp 0.4s ease; }
@keyframes cs-slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cs-exit-banner__text { flex: 1; font-size: 13px; font-weight: 500; line-height: 1.3; }
.cs-exit-banner__btn { background: var(--cs-teal); color: var(--cs-white); border: none; padding: 8px 16px; border-radius: 6px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.cs-exit-banner__btn:hover { background: var(--cs-teal-dark); }
.cs-exit-banner__close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 20px; cursor: pointer; padding: 0 4px; line-height: 1; }
.cs-exit-banner__close:hover { color: var(--cs-white); }

/* ═══ Thank You ═══ */
.cs-thankyou { font-family: 'DM Sans', -apple-system, sans-serif; max-width: 440px; margin: 0 auto; padding: 40px 24px; text-align: center; color: #1a2a3a; }
.cs-thankyou__logo { margin-bottom: 24px; }
.cs-thankyou__logo img { height: 40px; width: auto; }
.cs-thankyou__tick { margin-bottom: 20px; animation: cs-fadeIn 0.5s ease; }
.cs-thankyou__headline { font-size: 26px; font-weight: 700; color: #1e3a5f; margin-bottom: 16px; line-height: 1.2; }
.cs-thankyou__price { display: flex; flex-direction: column; gap: 4px; background: rgba(79,195,195,0.1); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.cs-thankyou__service { font-size: 14px; color: #5a6a7a; }
.cs-thankyou__amount { font-size: 42px; font-weight: 700; color: #4fc3c3; letter-spacing: -1px; }
.cs-thankyou__note { font-size: 11px; color: #5a6a7a; font-style: italic; }
.cs-thankyou__sub { font-size: 15px; color: #5a6a7a; margin-bottom: 20px; }
.cs-thankyou__steps { list-style: none; text-align: left; margin-bottom: 24px; }
.cs-thankyou__step { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #e2e6ec; }
.cs-thankyou__step:last-child { border-bottom: none; }
.cs-thankyou__step-num { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: #4fc3c3; color: white; font-size: 13px; font-weight: 700; border-radius: 50%; flex-shrink: 0; }
.cs-thankyou__step-text { font-size: 14px; font-weight: 500; color: #1a2a3a; padding-top: 3px; }
.cs-thankyou__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cs-thankyou__cta .cs-btn { font-family: 'DM Sans', sans-serif; }
.cs-thankyou__phone { font-size: 14px; color: #5a6a7a; }

/* Responsive */
@media (min-width: 480px) {
  .cs-widget { padding-bottom: 0; }
  .cs-contact-bar { position: relative; box-shadow: none; border-top: 1px solid var(--cs-border); }
  .cs-exit-banner { bottom: 20px; }
  #cs-step-5 { padding-bottom: 24px; }
}
@media (min-width: 768px) {
  .cs-hook__headline { font-size: 26px; }
  .cs-price-hero__amount { font-size: 56px; }
}

.cs-widget .cs-card,
.cs-widget .cs-card span,
.cs-widget .cs-card .cs-card__name,
.cs-widget .cs-card .cs-card__desc,
.cs-widget .cs-size-btn,
.cs-widget .cs-size-btn span {
  color: #1a2a3a !important;
}
.cs-widget .cs-card__name {
  color: #1e3a5f !important;
}
.cs-widget .cs-card__desc {
  color: #5a6a7a !important;
}
.cs-widget .cs-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}
.cs-widget .cs-card,.cs-widget .cs-card span,.cs-widget .cs-card .cs-card__name,.cs-widget .cs-card .cs-card__desc{color:#1a2a3a !important}.cs-widget .cs-card__name{color:#1e3a5f !important}.cs-widget .cs-card__desc{color:#5a6a7a !important}.cs-widget .cs-cards{display:grid !important;grid-template-columns:1fr 1fr !important}

/* Nuclear Astra override */
.cs-widget .cs-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}
.cs-widget .cs-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 16px 10px !important;
  background: #ffffff !important;
  border: 2px solid #e2e6ec !important;
  border-radius: 8px !important;
  min-height: 110px !important;
  cursor: pointer !important;
  color: #1a2a3a !important;
}
.cs-widget .cs-card span {
  display: block !important;
  color: inherit !important;
}
.cs-widget .cs-card .cs-card__name {
  color: #1e3a5f !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.cs-widget .cs-card .cs-card__desc {
  color: #5a6a7a !important;
  font-size: 11px !important;
}
.cs-widget .cs-card .cs-card__icon svg {
  display: inline-block !important;
  width: 28px !important;
  height: 28px !important;
}

.cs-widget button.cs-card {
  all: unset !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 4px !important;
  padding: 16px 10px !important;
  background: #ffffff !important;
  border: 2px solid #e2e6ec !important;
  border-radius: 8px !important;
  min-height: 110px !important;
  cursor: pointer !important;
  color: #1a2a3a !important;
  font-family: 'DM Sans', sans-serif !important;
  box-sizing: border-box !important;
}
.cs-widget button.cs-card:hover {
  border-color: #4fc3c3 !important;
  box-shadow: 0 0 0 3px rgba(79,195,195,0.1) !important;
}
.cs-widget button.cs-card[aria-checked="true"] {
  border-color: #4fc3c3 !important;
  background: rgba(79,195,195,0.1) !important;
}
.cs-widget button.cs-size-btn {
  all: unset !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 16px 10px !important;
  background: #ffffff !important;
  border: 2px solid #e2e6ec !important;
  border-radius: 8px !important;
  min-height: 56px !important;
  cursor: pointer !important;
  color: #1a2a3a !important;
  font-family: 'DM Sans', sans-serif !important;
  box-sizing: border-box !important;
}
.cs-widget button.cs-size-btn:hover {
  border-color: #4fc3c3 !important;
  box-shadow: 0 0 0 3px rgba(79,195,195,0.1) !important;
}
.cs-widget button.cs-size-btn[aria-checked="true"] {
  border-color: #4fc3c3 !important;
  background: rgba(79,195,195,0.1) !important;
}

.cs-widget .cs-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100% !important;
}
.cs-widget button.cs-card {
  width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  position: static !important;
  transform: none !important;
  max-height: none !important;
  font-size: 14px !important;
}

/* Persistent price bar */
.cs-price-sticky {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(79,195,195,0.1);
  border-bottom: 1px solid rgba(79,195,195,0.2);
  font-family: 'DM Sans', sans-serif;
}
.cs-price-sticky--visible {
  display: flex !important;
}
.cs-price-sticky__label {
  font-size: 13px;
  font-weight: 500;
  color: #1e3a5f;
}
.cs-price-sticky__amount {
  font-size: 20px;
  font-weight: 700;
  color: #4fc3c3;
}

/* Desktop polish */
@media (min-width: 768px) {
  .cs-widget {
    max-width: 400px !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(30,58,95,0.1), 0 1px 4px rgba(30,58,95,0.06) !important;
  }
  .cs-step {
    padding: 14px 24px 20px !important;
  }
  .cs-hook__headline {
    font-size: 22px !important;
  }
  .cs-price-hero__amount {
    font-size: 44px !important;
  }
  .cs-cards {
    gap: 8px !important;
  }
  .cs-card {
    min-height: 100px !important;
    padding: 14px 8px !important;
  }
  .cs-btn--submit {
    font-size: 15px !important;
    padding: 14px 20px !important;
    min-height: 50px !important;
  }
  .cs-contact-bar__btn {
    min-height: 46px !important;
    font-size: 12px !important;
  }
}

.cs-widget .cs-logo {
  height: 44px !important;
  width: auto !important;
}

.cs-widget .cs-header img,
.cs-widget .cs-header .cs-logo,
.cs-widget img.cs-logo {
  height: 50px !important;
  max-height: 50px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
}

.cs-widget .cs-header {
  padding: 16px 20px !important;
  height: auto !important;
  min-height: 70px !important;
}
.cs-widget .cs-header img {
  height: 55px !important;
  width: 55px !important;
  object-fit: contain !important;
}

@media (min-width: 768px) {
  .cs-widget {
    max-width: 420px !important;
  }
}

/* Fix auto-scroll on landing pages */
#cs-widget-section { scroll-margin-top: 20px; }
.csl-widget-section .cs-widget { scroll-margin-top: 20px; }

/* Hide back button on first visible step with preset service */
.cs-widget[data-preset-service]:not([data-preset-service=""]) .cs-step[data-step="2"] .cs-back {
  display: none !important;
}

/* Fix auto-scroll on landing pages */
#cs-widget-section { scroll-margin-top: 20px; }
.csl-widget-section .cs-widget { scroll-margin-top: 20px; }

/* Hide back button on first visible step with preset service */
.cs-widget[data-preset-service]:not([data-preset-service=""]) .cs-step[data-step="2"] .cs-back {
  display: none !important;
}

/* Fix auto-scroll on landing pages */
#cs-widget-section { scroll-margin-top: 20px; }
.csl-widget-section .cs-widget { scroll-margin-top: 20px; }

/* Hide back button on first visible step with preset service */
.cs-widget[data-preset-service]:not([data-preset-service=""]) .cs-step[data-step="2"] .cs-back {
  display: none !important;
}

.cs-addon__hint {
  display: block;
  font-size: 12px;
  color: #7a8a96;
  font-weight: 400;
  margin-top: 3px;
}

/* Addon layout fix — stack name/hint vertically */
.cs-addon {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
}

.cs-addon__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cs-addon__name {
  font-size: 14px;
  font-weight: 500;
  color: #1e3a5f;
  line-height: 1.3;
  white-space: normal;
}

.cs-addon__hint {
  display: block;
  font-size: 12px;
  color: #7a8a96;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2px;
}

.cs-addon__price {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 600;
}

.cs-addon__box {
  flex-shrink: 0;
}

/* Force name and hint onto separate lines + style hint distinctly */
.cs-addon__text .cs-addon__name {
  display: block !important;
  font-size: 14px;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.3;
}

.cs-addon__text .cs-addon__hint {
  display: block !important;
  font-size: 12px;
  color: #8a9ba8;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-top: 4px;
  letter-spacing: 0.1px;
}

/* FORCE name and hint to stack — high specificity */
label.cs-addon span.cs-addon__text {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1 !important;
}

label.cs-addon span.cs-addon__text span.cs-addon__name {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1e3a5f !important;
  line-height: 1.3 !important;
  width: 100% !important;
}

label.cs-addon span.cs-addon__text span.cs-addon__hint {
  display: block !important;
  font-size: 11px !important;
  color: #8a9ba8 !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  width: 100% !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
  opacity: 0.85 !important;
}
