:root { --st-brand: #f07d2f; --st-brand-dark: #a85821; --st-dark: #0a2455; --st-text: #0a2455; --st-muted: #66758a; --st-border: #0a2455; --st-selected-bg: #FFF8EA; --st-soft: #f4f8fc; --st-white: #ffffff; --st-error: #d93025; --st-radius: 18px; --st-shadow: 0 24px 70px rgba(8, 27, 48, 0.24); }
#serviceTodayForm section { padding: 0px;}
.st-popup-open { appearance: none; border: 0; background: var(--st-brand); color: var(--st-dark); padding: 0.95rem 1.4rem; border-radius: 999px; font-weight: 900; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.st-popup-open:hover { background: var(--st-brand-dark); color: var(--st-dark); }
.st-popup { position: fixed; inset: 0; z-index: 99999; display: none; align-items: flex-start; justify-content: center; padding: 24px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.st-popup.is-open { display: flex; }
.st-popup__overlay { position: fixed; inset: 0; background: rgba(8, 27, 48, 0.72); backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.32s ease; }
.st-popup.is-open .st-popup__overlay { opacity: 1; }
.st-popup.is-closing .st-popup__overlay { opacity: 0; }
.st-popup__dialog { position: relative; width: min(760px, 100%); max-height: none; margin: 32px auto; overflow: visible; background: var(--st-white); border-radius: 28px; box-shadow: var(--st-shadow); transform: translateY(-32px); opacity: 0; transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s ease; }
.st-popup.is-open .st-popup__dialog { transform: translateY(0); opacity: 1; }
.st-popup.is-closing .st-popup__dialog { transform: translateY(-24px); opacity: 0; }
.st-popup__close { position: absolute; top: 16px; right: 16px; z-index: 5; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(10, 36, 85, 0.08); color: var(--st-dark); font-size: 28px; line-height: 1; cursor: pointer; }
.st-popup__close:hover { background: rgba(214, 162, 61, 0.18); }
.st-form { padding: clamp(24px, 4vw, 42px); }
.st-form__top { margin-bottom: 24px; padding-right: 44px; }
.st-kicker { margin: 0 0 8px; color: var(--st-brand); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.st-form h2, .st-form h3 { margin: 0; color: var(--st-dark); line-height: 1.08; }
.st-form h2 { font-size: clamp(1.65rem, 1.1rem + 2vw, 2rem); }
.st-form h3 { margin-bottom: 18px; font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem); }
.st-intro { margin: 12px 0 0; color: var(--st-muted); line-height: 1.55; }
.st-step-count { margin-top: 16px; color: var(--st-muted); font-weight: 800; font-size: 0.92rem; }
.st-progress { width: 100%; height: 8px; margin-top: 22px; background: rgba(10, 36, 85, 0.08); border-radius: 999px; overflow: hidden; }
.st-progress__bar { display: block; width: 0%; height: 100%; background: var(--st-brand); border-radius: inherit; transition: width 0.28s ease; }
.st-steps { position: relative; }
.st-step { display: none; animation: stFadeUp 0.24s ease both; }
.st-step.is-active { display: block; }
@keyframes stFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.st-required { color: var(--st-brand); font-weight: 900; margin-left: 2px; }
.st-optional { color: var(--st-muted); font-weight: 500; font-size: 0.9em; }
.st-choice-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.st-choice-group--wide { margin-top: 18px; }
.st-choice-group--conditional { margin-top: 10px; }
.st-option { appearance: none; border: 1.5px solid var(--st-border); background: #ffffff; position: relative; color: var(--st-text); border-radius: var(--st-radius); padding: 16px 48px 16px 16px; min-height: 84px; display: flex; align-items: center; gap: 13px; text-align: left; cursor: pointer; font: inherit; font-weight: 800; transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.st-option:hover { transform: translateY(-1px); border-color: var(--st-brand); background: var(--st-selected-bg); }
.st-option.is-selected { border-color: var(--st-brand); background: var(--st-selected-bg); color: var(--st-text); box-shadow: 0 0 0 4px rgba(214, 162, 61, 0.16); }
.st-option-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 15px; background: rgba(10, 36, 85, 0.06); color: var(--st-text); display: grid; place-items: center; }
.st-option-icon img { width: 25px; height: 25px; display: block; object-fit: contain; }
.st-option.is-selected .st-option-icon { background: rgba(214, 162, 61, 0.14); color: var(--st-brand); }
.st-option.is-selected .st-option-icon img { filter: sepia(1) saturate(3) hue-rotate(350deg) brightness(0.95); }
.st-option-label { display: block; color: inherit; }
.st-option.is-selected::after { content: "✓"; margin-left: auto; width: 24px; height: 24px; border-radius: 50%; background: var(--st-brand); color: #ffffff; display: grid; place-items: center; font-size: 14px; font-weight: 900; flex: 0 0 auto; position: relative; right: -32px;}
.st-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.st-field--full { grid-column: 1 / -1; }
.st-field { display: block; margin-bottom: 14px; }
.st-field-label { display: block; margin-bottom: 7px; color: var(--st-dark); font-weight: 800; }
.st-input-wrap { position: relative; display: block; }
.st-field-icon { position: absolute; left: 15px; top: 50%; width: 21px; height: 21px; transform: translateY(-50%); opacity: 0.75; pointer-events: none; }
.st-field input, .st-field select, .st-field textarea { width: 100%; border: 1.5px solid rgba(10, 36, 85, 0.35); border-radius: 14px; padding: 14px 15px; font: inherit; color: var(--st-text); background: #ffffff; outline: none; box-sizing: border-box; }
.st-input-wrap input { padding-left: 48px; }
.st-field textarea { resize: vertical; min-height: 96px; }
.st-field input:focus, .st-field select:focus, .st-field textarea:focus { border-color: var(--st-brand); box-shadow: 0 0 0 4px rgba(214, 162, 61, 0.16); }
.st-field input::placeholder, .st-field textarea::placeholder { color: rgba(10, 36, 85, 0.45); }
.st-help-text { display: block; margin-top: 6px; color: var(--st-muted); font-size: 0.88rem; }
.st-mini-title { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; margin: 4px 0 12px; color: var(--st-dark); font-weight: 900; }
.st-mini-title img, .st-inline-icon { width: 18px; height: 18px; margin-top: 3px; }
.st-conditional { display: none; margin-top: 16px; }
.st-conditional.is-active { display: block; }
.st-divider { border: 0; border-top: 1px solid rgba(10, 36, 85, 0.14); margin: 24px 0; }
.st-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; color: var(--st-text); font-weight: 700; line-height: 1.45; cursor: pointer;}
.st-check input { margin-top: 4px; accent-color: var(--st-brand); }
.st-check span { display: block; }
.st-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.st-btn { appearance: none; border: 0; border-radius: 999px; padding: 14px 22px; font: inherit; font-weight: 900; cursor: pointer; transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease; }
.st-btn:hover { transform: translateY(-1px); }
.st-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.st-btn--primary { margin-left: auto; color: #fff; background: var(--st-brand); box-shadow: 0 12px 26px rgba(214, 162, 61, 0.26); } .st-home-start-form .st-btn--primary { width: 100%; margin-left: none;}
.st-btn--primary:hover { background: var(--st-brand-dark); color: #fff; }
.st-btn--ghost { color: var(--st-dark); background: rgba(10, 36, 85, 0.08); }
.st-btn--ghost:hover { background: rgba(10, 36, 85, 0.12); }
.st-error-message { display: none; grid-column: 1 / -1; margin-top: 7px; color: var(--st-error); font-size: 0.88rem; line-height: 1.35; font-weight: 700; }
.st-field.is-invalid .st-error-message, .st-choice-group.is-invalid > .st-error-message, .st-check-error.is-active { display: block; }
.st-field.is-invalid input, .st-field.is-invalid select, .st-field.is-invalid textarea { border-color: var(--st-error); box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12); }
.st-choice-group.is-invalid .st-option { border-color: rgba(217, 48, 37, 0.45); }
.st-choice-group.is-invalid .st-option:hover { border-color: var(--st-error); }
.st-check.is-invalid { color: var(--st-error); }
.st-submit-error { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 14px; background: rgba(217, 48, 37, 0.08); color: var(--st-error); font-weight: 800; line-height: 1.4; }
.st-submit-error.is-active { display: block; }
.st-step--success { text-align: center; padding: 30px 0 12px; }
.st-success-icon { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--st-selected-bg); color: var(--st-brand); border: 2px solid var(--st-brand); font-size: 42px; font-weight: 900; }
.st-step--success h3 { color: var(--st-dark); }
.st-step--success p { color: var(--st-muted); }
body.st-popup-lock { overflow: hidden; touch-action: none; }
.st-check span.flex-lab { display: flex; gap: 8px; cursor: pointer;}
input[type="checkbox"] { cursor: pointer; width: 18px; height: 18px;}
@media (max-width: 640px) {
  .st-popup { padding: 0; align-items: flex-start; }
  .st-popup__dialog { width: 100%; min-height: auto; margin: 0; border-radius: 0 0 24px 24px; transform: translateY(-100%); }
  .st-popup.is-open .st-popup__dialog { transform: translateY(0); }
  .st-popup.is-closing .st-popup__dialog { transform: translateY(-100%); }
  .st-form { padding: 24px 18px 32px; }
  .st-form__top { padding-right: 38px; }
  .st-choice-group { grid-template-columns: 1fr; }
  .st-field-grid { grid-template-columns: 1fr; }
  .st-option { min-height: 50px; padding: 10px 48px 10px 10px; }
  .st-actions { flex-direction: column-reverse; }
  .st-btn { width: 100%; }
  .st-btn--primary { margin-left: 0; }
}