:root {
  --sa-bg: #f5f7f8;
  --sa-panel: #ffffff;
  --sa-ink: #17202a;
  --sa-muted: #667085;
  --sa-line: #d8dee4;
  --sa-line-strong: #b8c0cc;
  --sa-teal: #0f8f8d;
  --sa-teal-dark: #0b6867;
  --sa-amber: #f2a51f;
  --sa-green: #166534;
  --sa-danger: #9a3412;
  --sa-focus: rgba(15, 143, 141, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--sa-bg);
  color: var(--sa-ink);
  font: 400 15px/1.45 Inter, Montserrat, Arial, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.sa-page {
  min-height: 100vh;
}

.sa-app-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 36px);
  background: #13202a;
  color: #f9fafb;
  border-bottom: 4px solid var(--sa-amber);
}

.sa-app-header-simple {
  flex-direction: row;
  justify-content: flex-end;
}

.sa-app-header img {
  width: min(250px, 46vw);
  height: auto;
  background: #ffffff;
  border-radius: 4px;
  padding: 6px 8px;
}

.sa-app-header h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
}

.sa-app-header p {
  margin: 6px 0 0;
  color: #d1d5db;
  font-size: 0.92rem;
  max-width: 760px;
}

.sa-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 28px;
  align-items: start;
  padding: 24px clamp(14px, 3.5vw, 36px) 40px;
}

.sa-booking-form,
.sa-results {
  min-width: 0;
}

.sa-panel {
  padding: 18px 0 22px;
  border-top: 1px solid var(--sa-line);
}

.sa-booking-form .sa-panel:first-child {
  border-top: 0;
  padding-top: 0;
}

.sa-welcome-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  margin-bottom: 10px;
  background: #ffffff;
  border: 1px solid var(--sa-line);
  border-left: 6px solid var(--sa-teal);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sa-welcome-panel span {
  display: block;
  color: var(--sa-teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sa-welcome-panel h2 {
  margin: 3px 0 4px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.sa-welcome-panel p {
  margin: 0;
  color: var(--sa-muted);
  max-width: 640px;
}

.sa-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--sa-line-strong);
  color: var(--sa-teal-dark);
  background: #f7fbfb;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.sa-results .sa-panel {
  background: var(--sa-panel);
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sa-sticky {
  position: sticky;
  top: 16px;
}

.sa-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sa-section-title h2,
.sa-fieldset h3 {
  margin: 0;
  color: var(--sa-ink);
  letter-spacing: 0;
}

.sa-section-title h2 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.sa-fieldset h3 {
  font-size: 0.96rem;
  text-transform: uppercase;
  color: #3a4758;
  margin-bottom: 8px;
}

.sa-two-col,
.sa-three-col {
  display: grid;
  gap: 18px;
}

.sa-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sa-other-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}

.sa-other-block {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

.sa-other-block h3 {
  margin-bottom: 0;
}

.sa-other-block-wide {
  grid-column: 1 / -1;
}

.sa-lockbox-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.sa-options-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa-options-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sa-setup-grid {
  display: grid;
  gap: 18px;
}

.sa-services-content {
  display: grid;
  gap: 14px;
}

.sa-section-subtitle h3 {
  margin: 0;
  color: #344054;
  font-size: 0.98rem;
}

.sa-package-row {
  display: grid;
  gap: 12px;
}

.sa-package-row .sa-fieldset,
.sa-service-column {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

.sa-package-row .sa-fieldset h3,
.sa-service-column h3 {
  margin-bottom: 0;
}

.sa-package-row .sa-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.sa-individual-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.sa-service-column {
  padding-top: 12px;
  border-top: 1px solid var(--sa-line);
}

.sa-service-column .sa-options {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: stretch;
}

.sa-measurement-block .sa-inline-control {
  width: min(100%, 280px);
}

.sa-options {
  display: grid;
  gap: 8px;
}

.sa-options-tight {
  margin-top: 0;
}

.sa-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-height: 50px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  cursor: pointer;
}

.sa-option:hover {
  border-color: var(--sa-teal);
}

.sa-fieldset[hidden],
.sa-addon-choice-notice[hidden],
.sa-services-content[hidden],
[data-service-panel][hidden],
.sa-visual-extra-control[hidden],
.sa-coverage-tool[hidden],
.sa-coverage-drawer[hidden],
.sa-coverage-manual-note[hidden],
.sa-location-pin-tools[hidden],
.sa-scope-modal[hidden] {
  display: none;
}

.sa-property-type-fieldset {
  margin-top: 0;
}

.sa-addon-choice-notice {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--sa-muted);
  font-weight: 700;
}

.sa-addon-panels {
  margin-top: 14px;
}

.sa-option input {
  margin-top: 3px;
}

.sa-option strong {
  display: block;
  color: var(--sa-ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.sa-option small {
  display: block;
  margin-top: 2px;
  color: var(--sa-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.sa-option-body {
  min-width: 0;
}

.sa-service-scope-notice {
  display: block;
  margin-top: 8px;
}

.sa-scope-link {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sa-teal-dark);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.sa-option b {
  align-self: center;
  color: var(--sa-teal-dark);
  white-space: nowrap;
  font-size: 0.88rem;
}

.sa-option.is-disabled,
.sa-inline-control.is-disabled,
.sa-control.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.sa-inline-control,
.sa-control,
.sa-stop-grid label,
.sa-copy-stack label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-weight: 700;
}

.sa-inline-control {
  grid-template-columns: minmax(150px, 1fr) minmax(80px, 130px);
  align-items: center;
  margin-top: 8px;
}

.sa-quantity-control {
  grid-template-columns: minmax(0, 1fr) minmax(76px, 112px);
  margin-top: 0;
}

.sa-lockbox-stops {
  padding-top: 16px;
  border-top: 1px solid var(--sa-line);
}

.sa-lockbox-stops h3 {
  margin-bottom: 10px;
}

.sa-control {
  margin: 0;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--sa-line-strong);
  border-radius: 6px;
  background: #ffffff;
  color: var(--sa-ink);
  padding: 10px 11px;
  outline: none;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 17px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

input:focus,
textarea:focus {
  border-color: var(--sa-teal);
  box-shadow: 0 0 0 3px var(--sa-focus);
}

.pac-container {
  z-index: 2147483647 !important;
  font-family: Montserrat, Inter, Arial, sans-serif;
}

.sa-google-places-disabled .pac-container,
.sa-google-places-disabled .gm-err-container,
.sa-google-places-disabled .gm-err-icon,
.sa-google-places-disabled .gm-err-message,
.sa-google-places-disabled .gm-err-title {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.sa-address-suggest-host {
  position: relative;
}

.sa-address-suggest-list {
  position: absolute;
  z-index: 35;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: grid;
  overflow: hidden;
  max-height: 230px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--sa-line-strong);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.sa-address-suggest-list button {
  justify-content: flex-start;
  width: 100%;
  min-height: auto;
  padding: 9px 11px;
  border-radius: 0;
  background: transparent;
  color: var(--sa-ink);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.sa-address-suggest-list button:hover,
.sa-address-suggest-list button:focus {
  background: #eef6f6;
  color: var(--sa-teal-dark);
  outline: none;
}

.sa-stop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.sa-action-row,
.sa-button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

button,
.sa-link-button {
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.sa-primary {
  background: var(--sa-teal);
  color: #ffffff;
}

.sa-primary:hover {
  background: var(--sa-teal-dark);
}

.sa-secondary {
  background: #e7ebf0;
  color: #223044;
  border: 1px solid var(--sa-line-strong);
}

.sa-secondary:hover {
  background: #d9e0e8;
}

.sa-start-notice {
  background: #eef6f6;
  border: 1px solid #b9dddc;
  border-radius: 8px;
  color: #175e5c;
  font-weight: 700;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.sa-estimate-location-editor {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sa-line);
}

.sa-estimate-location-editor .sa-action-row {
  margin-top: 0;
}

.sa-coverage-tool {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 12px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #f8fafc;
}

.sa-coverage-copy {
  display: grid;
  gap: 4px;
}

.sa-coverage-copy h3 {
  margin: 0;
  color: var(--sa-ink);
  font-size: 0.98rem;
}

.sa-coverage-copy p {
  margin: 0;
  color: var(--sa-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.sa-coverage-service-control {
  max-width: 360px;
}

.sa-coverage-pricing-copy {
  display: grid;
  gap: 5px;
  padding: 9px 10px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #ffffff;
}

.sa-coverage-pricing-copy p {
  margin: 0;
  color: var(--sa-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.sa-coverage-drawer,
.sa-coverage-capture {
  display: grid;
  gap: 10px;
}

.sa-coverage-capture h4 {
  margin: 0;
  color: var(--sa-ink);
  font-size: 0.86rem;
}

.sa-coverage-map-note,
.sa-coverage-manual-note,
.sa-location-pin-status {
  padding: 9px 10px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--sa-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.sa-location-pin-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #ffffff;
}

.sa-location-pin-tools span {
  color: var(--sa-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.sa-coverage-source {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sa-coverage-source label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--sa-ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.sa-coverage-source input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.sa-coverage-tool.is-location-only .sa-coverage-source,
.sa-coverage-tool.is-location-only .sa-coverage-capture,
.sa-coverage-tool.is-location-only .sa-coverage-toolbar,
.sa-coverage-tool.is-location-only .sa-coverage-results {
  display: none;
}

.sa-coverage-toolbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sa-coverage-toolbar button {
  min-height: 42px;
  white-space: normal;
}

.sa-coverage-map {
  width: 100%;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--sa-line-strong);
  border-radius: 8px;
  background: #0b111c;
}

.sa-coverage-status,
.sa-coverage-empty,
.sa-coverage-difference,
.sa-coverage-review {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.sa-coverage-status {
  background: #eef6f6;
  color: var(--sa-teal-dark);
}

.sa-coverage-status.is-loading {
  background: #eff6ff;
  color: #1d4ed8;
}

.sa-coverage-status.is-warning,
.sa-coverage-difference {
  background: #fffbeb;
  color: #92400e;
}

.sa-coverage-status.is-error {
  background: #fef2f2;
  color: #991b1b;
}

.sa-coverage-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sa-coverage-result-grid div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #ffffff;
}

.sa-coverage-result-grid span,
.sa-coverage-estimate-summary dt {
  display: block;
  color: var(--sa-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sa-coverage-result-grid strong,
.sa-coverage-estimate-summary dd {
  display: block;
  margin: 3px 0 0;
  color: var(--sa-ink);
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sa-coverage-review {
  margin-top: 8px;
  background: #fffbeb;
  color: #92400e;
}

.sa-coverage-legal,
.sa-coverage-estimate-summary p {
  margin: 8px 0 0;
  color: var(--sa-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.sa-coverage-estimate-summary {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 12px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #f8fafc;
}

.sa-coverage-estimate-summary h3 {
  margin: 0;
  color: var(--sa-ink);
  font-size: 0.9rem;
}

.sa-coverage-estimate-summary dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.sa-coverage-estimate-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sa-coverage-warning {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fffbeb;
  color: #92400e;
  font-weight: 800;
}

.sa-property-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 12px;
  align-items: start;
}

.sa-property-primary {
  display: grid;
  gap: 10px;
}

.sa-address-field-group {
  display: grid;
  gap: 8px;
}

.sa-address-unknown-toggle {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: rgba(15, 143, 141, 0.06);
  color: var(--sa-ink);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
}

.sa-address-unknown-toggle input {
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--sa-amber);
}

.sa-address-unknown-helper {
  padding: 9px 10px;
  border: 1px solid rgba(15, 143, 141, 0.28);
  border-radius: 8px;
  background: rgba(15, 143, 141, 0.1);
  color: #175e5c;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.sa-address-unknown-helper[hidden] {
  display: none;
}

.sa-acres-control {
  max-width: 180px;
}

.sa-lockbox-route-editor {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  padding: 12px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: rgba(15, 143, 141, 0.06);
}

.sa-lockbox-route-editor[hidden],
.sa-extra-stop[hidden] {
  display: none;
}

.sa-route-note {
  display: grid;
  gap: 2px;
}

.sa-route-note strong {
  color: var(--sa-ink);
}

.sa-route-note small {
  color: var(--sa-muted);
  font-weight: 600;
  line-height: 1.35;
}

.sa-extra-stop-list {
  display: grid;
  gap: 8px;
}

.sa-extra-stop {
  display: grid;
  gap: 6px;
  color: #344054;
  font-weight: 700;
}

.sa-lockbox-route-tools {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(170px, 0.55fr);
  gap: 10px;
  align-items: end;
}

.sa-add-stop-button {
  min-height: 44px;
}

.sa-route-miles-control input {
  font-weight: 800;
}

.sa-request-location {
  display: grid;
  gap: 3px;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--sa-line);
}

.sa-request-location span {
  color: var(--sa-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sa-request-location strong {
  color: var(--sa-ink);
  line-height: 1.25;
}

.sa-request-lines {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 12px 0;
  padding: 0;
}

.sa-request-lines li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid #edf0f3;
}

.sa-request-lines li.has-tooltip {
  position: relative;
  cursor: help;
}

.sa-request-lines li.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 5;
  width: min(330px, 86vw);
  padding: 10px 12px;
  border-radius: 6px;
  background: #101820;
  color: #f8fafc;
  border: 1px solid var(--sa-line-strong);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.sa-request-lines li.has-tooltip:hover::after,
.sa-request-lines li.has-tooltip:focus::after {
  opacity: 1;
  transform: translateY(0);
}

.sa-request-lines li span {
  min-width: 0;
  line-height: 1.28;
}

.sa-request-lines li strong {
  color: var(--sa-teal-dark);
  white-space: nowrap;
}

.sa-request-lines li.is-free {
  color: var(--sa-muted);
}

.sa-line-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.sa-line-table th,
.sa-line-table td {
  border-bottom: 1px solid var(--sa-line);
  padding: 8px 6px;
  text-align: right;
  vertical-align: top;
}

.sa-line-table th:first-child,
.sa-line-table td:first-child {
  text-align: left;
}

.sa-line-table tr.is-free td {
  color: var(--sa-muted);
}

.sa-total-list {
  margin: 14px 0 0;
  display: grid;
  gap: 7px;
}

.sa-total-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.sa-total-list dt {
  color: var(--sa-muted);
}

.sa-total-list dd {
  margin: 0;
  font-weight: 800;
}

.sa-total-list .sa-total {
  border-top: 1px dashed var(--sa-line-strong);
  padding-top: 9px;
  font-size: 1.08rem;
}

.sa-total-list .sa-deposit {
  color: var(--sa-danger);
}

.sa-wide-button {
  width: 100%;
  margin-top: 14px;
}

.sa-estimate-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.sa-estimate-scope-notice,
.sa-public-scope-notice {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
}

.sa-estimate-scope-notice strong,
.sa-public-scope-notice strong {
  color: var(--sa-ink);
}

.sa-public-handoff {
  display: grid;
  gap: 14px;
}

.sa-public-services,
.sa-public-notes {
  display: grid;
  gap: 8px;
}

.sa-public-services h3,
.sa-public-notes h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #344054;
}

.sa-public-services ul,
.sa-public-notes ul {
  margin: 0;
  padding-left: 18px;
  color: #344054;
}

.sa-public-services li,
.sa-public-notes li {
  margin: 0 0 6px;
}

.sa-public-deposit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 11px;
}

.sa-public-deposit span {
  color: var(--sa-danger);
  font-weight: 900;
}

.sa-public-deposit small {
  color: #7c2d12;
}

.sa-public-deposit.is-clear {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.sa-public-deposit.is-clear small {
  color: var(--sa-green);
}

.sa-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sa-copy-stack {
  display: grid;
  gap: 12px;
}

.sa-copy-stack textarea {
  min-height: 145px;
  resize: vertical;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.35;
}

.sa-stripe-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  border-radius: 8px;
  padding: 10px;
}

.sa-stripe-box span {
  color: var(--sa-danger);
  font-weight: 900;
}

.sa-stripe-box small {
  grid-column: 1 / -1;
  color: #7c2d12;
}

.sa-calendar-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

.sa-empty-widget {
  border: 1px dashed var(--sa-line-strong);
  border-radius: 8px;
  padding: 18px;
  color: var(--sa-muted);
  background: #ffffff;
}

.sa-booking-actions {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(242, 165, 31, 0.42);
  border-radius: 8px;
  background: rgba(4, 9, 18, 0.64);
}

.sa-booking-actions p {
  margin: 0;
  color: #f8fafc;
}

.sa-booking-actions small {
  color: #c8d4e3;
  line-height: 1.35;
}

.sa-booking-actions code {
  color: #ffd37b;
}

.sa-native-booking {
  display: grid;
  gap: 14px;
}

.sa-booking-intro {
  margin: 0;
  color: var(--sa-muted);
}

.sa-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sa-booking-date-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sa-date-picker-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(142px, 168px);
  gap: 14px;
  align-items: center;
  width: min(100%, 420px);
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid var(--sa-line-strong);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.sa-date-picker-card:hover,
.sa-date-picker-card:focus-within,
.sa-date-picker-card:focus {
  border-color: var(--sa-teal);
  box-shadow: 0 0 0 3px var(--sa-focus);
  outline: none;
}

.sa-date-picker-label {
  color: #344054;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.15;
}

.sa-date-picker-card input[type="date"] {
  min-height: 42px;
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}

.sa-slot-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.sa-slot-header h3 {
  margin: 0;
  font-size: 0.96rem;
}

.sa-slot-header span {
  color: var(--sa-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.sa-slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 42px;
}

.sa-slot-list p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--sa-muted);
}

.sa-acknowledgment {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.sa-acknowledgment[hidden] {
  display: none;
}

.sa-acknowledgment input {
  margin-top: 3px;
}

.sa-visual-extra-control {
  display: grid;
  gap: 8px;
}

.sa-visual-extra-control .sa-inline-control {
  margin-top: 0;
}

.has-tooltip[data-tooltip] {
  position: relative;
}

.has-tooltip[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 20;
  width: min(310px, 84vw);
  padding: 9px 11px;
  border: 1px solid var(--sa-line-strong);
  border-radius: 6px;
  background: #101820;
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-size: 0.76rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.has-tooltip[data-tooltip]:hover::after,
.has-tooltip[data-tooltip]:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.sa-scope-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.sa-scope-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.68);
}

.sa-scope-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--sa-line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--sa-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.sa-scope-modal-card h2 {
  margin: 0 42px 14px 0;
}

.sa-scope-modal-body {
  display: grid;
  gap: 12px;
}

.sa-scope-modal-body p {
  margin: 0;
  color: #344054;
  line-height: 1.5;
}

.sa-scope-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 999px;
}

.sa-slot-button {
  width: 100%;
  border: 1px solid var(--sa-line-strong);
  background: #ffffff;
  color: var(--sa-ink);
}

.sa-slot-button:hover,
.sa-slot-button.is-selected {
  border-color: var(--sa-teal);
  background: #eef6f6;
  color: var(--sa-teal-dark);
}

.sa-booking-status {
  min-height: 24px;
  color: var(--sa-muted);
  font-weight: 700;
}

.sa-booking-status.is-success {
  color: var(--sa-green);
}

.sa-booking-status.is-error {
  color: var(--sa-danger);
}

.sa-booking-status.is-loading,
.sa-booking-status.is-setup {
  color: var(--sa-muted);
}

button:disabled,
.sa-slot-button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.sa-pdf-stage {
  position: fixed;
  left: -99999px;
  top: 0;
  width: 820px;
  background: #ffffff;
  color: #111827;
  pointer-events: none;
}

@media (max-width: 1160px) {
  .sa-app-grid {
    grid-template-columns: 1fr;
  }

  .sa-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .sa-results .sa-panel {
    margin-bottom: 0;
  }

  .sa-results .sa-panel:last-child {
    grid-column: 1 / -1;
  }

  .sa-sticky {
    position: static;
  }
}

@media (max-width: 820px) {
  .sa-app-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .sa-welcome-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .sa-two-col,
  .sa-three-col,
  .sa-package-row .sa-options,
  .sa-individual-services-grid,
  .sa-other-grid,
  .sa-options-pair,
  .sa-options-triple,
  .sa-lockbox-service-row,
  .sa-lockbox-route-tools,
  .sa-booking-grid,
  .sa-results,
  .sa-property-grid,
  .sa-stop-grid {
    grid-template-columns: 1fr;
  }

  .sa-acres-control {
    max-width: none;
  }

  .sa-inline-control {
    grid-template-columns: 1fr;
  }

  .sa-line-table {
    font-size: 0.82rem;
  }

  .sa-line-table th,
  .sa-line-table td {
    padding: 7px 4px;
  }

  .sa-estimate-actions {
    grid-template-columns: 1fr;
  }
}

/* Scout & Aerial public-site skin */
body {
  background: #05080d;
  color: #f8fafc;
  font-family: Montserrat, Inter, Arial, sans-serif;
}

.sa-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: hidden;
}

.sa-page::before,
.sa-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.sa-page::before {
  z-index: -2;
  background: url("./assets/general-background-large.jpg") center / cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.02);
}

.sa-page::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.26), rgba(15, 143, 141, 0.24)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(3, 7, 12, 0.16);
}

.sa-app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 5px clamp(12px, 2.4vw, 32px);
  background: rgba(4, 8, 13, 0.92);
  border-bottom: 2px solid var(--sa-amber);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.sa-app-header-simple {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.sa-brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.sa-app-header img {
  width: min(142px, 34vw);
  max-height: 26px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.sa-site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  min-width: 0;
}

.sa-site-nav a,
.sa-nav-cta {
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.sa-site-nav a {
  opacity: 0.88;
}

.sa-site-nav a:hover {
  color: var(--sa-amber);
  opacity: 1;
}

.sa-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sa-amber);
  color: #101820;
  white-space: nowrap;
}

.sa-app-grid {
  display: block;
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 52px;
}

.sa-booking-form,
.sa-results {
  width: 100%;
}

.sa-booking-form .sa-panel,
.sa-results .sa-panel,
.sa-welcome-panel {
  background: rgba(12, 18, 29, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(7px);
}

.sa-welcome-panel {
  justify-content: center;
  text-align: center;
  margin: 8px auto 14px;
  padding: 14px 18px 16px;
  border-left: 1px solid rgba(148, 163, 184, 0.42);
}

.sa-welcome-panel span {
  color: var(--sa-amber);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.sa-welcome-panel h1 {
  margin: 2px 0 4px;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.sa-welcome-panel p {
  margin: 0 auto;
  color: #dbe4ef;
  font-size: 0.9rem;
}

.sa-phone-link {
  display: none;
}

.sa-booking-form .sa-panel,
.sa-results .sa-panel {
  padding: 14px 16px 16px;
  margin-bottom: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.42);
}

.sa-results {
  display: block;
}

.sa-results .sa-panel:last-child {
  grid-column: auto;
}

.sa-sticky {
  position: static;
}

.sa-section-title {
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.sa-section-title h2 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.sa-fieldset h3 {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.sa-service-column {
  border-top-color: rgba(148, 163, 184, 0.18);
}

.sa-two-col,
.sa-three-col {
  gap: 12px;
}

.sa-other-grid {
  gap: 16px 18px;
}

.sa-other-block {
  gap: 9px;
}

.sa-other-services .sa-option {
  min-height: 58px;
  align-items: center;
}

.sa-other-services .sa-option strong {
  font-size: 0.9rem;
}

.sa-quantity-control {
  min-height: 48px;
  padding: 9px 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 6px;
  background: rgba(4, 9, 18, 0.34);
  color: #dbe4ef;
}

.sa-quantity-control input {
  padding: 8px 9px;
  font-weight: 800;
}

.sa-lockbox-service-row .sa-quantity-control {
  align-content: center;
  min-height: 58px;
}

.sa-lockbox-stops {
  margin-top: 16px;
  padding-top: 16px;
  border-top-color: rgba(148, 163, 184, 0.2);
}

.sa-lockbox-stops .sa-stop-grid {
  gap: 12px;
}

.sa-option {
  min-height: 56px;
  padding: 10px 12px;
  background: rgba(4, 9, 18, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 6px;
  color: #e5edf7;
}

.sa-option:hover {
  border-color: rgba(242, 165, 31, 0.82);
  background: rgba(9, 16, 27, 0.82);
}

.sa-option strong {
  color: #f8fafc;
  font-size: 0.88rem;
  line-height: 1.28;
}

.sa-option small {
  color: #b9c5d4;
  font-size: 0.74rem;
  line-height: 1.32;
}

.sa-scope-link {
  color: #7dd3fc;
}

.sa-option b {
  color: var(--sa-amber);
  font-size: 0.8rem;
}

.sa-option input[type="radio"],
.sa-option input[type="checkbox"] {
  accent-color: var(--sa-amber);
}

.sa-inline-control,
.sa-control,
.sa-extra-stop,
.sa-stop-grid label,
.sa-copy-stack label {
  color: #f8fafc;
  font-size: 0.86rem;
}

.sa-lockbox-route-editor {
  background: rgba(15, 143, 141, 0.12);
  border-color: rgba(45, 212, 191, 0.28);
}

.sa-route-note strong {
  color: #f8fafc;
}

.sa-route-note small {
  color: #c8d4e3;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background: rgba(4, 9, 18, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 5px;
  color: #f8fafc;
  padding: 9px 10px;
}

select {
  color-scheme: dark;
}

input::placeholder,
textarea::placeholder {
  color: #8896a8;
}

input:focus,
textarea:focus {
  border-color: var(--sa-amber);
  box-shadow: 0 0 0 3px rgba(242, 165, 31, 0.2);
}

.sa-date-picker-card {
  width: min(100%, 380px);
  min-height: 58px;
  padding: 9px 10px;
  background:
    linear-gradient(135deg, rgba(242, 165, 31, 0.1), rgba(15, 143, 141, 0.08)),
    rgba(4, 9, 18, 0.5);
  border-color: rgba(148, 163, 184, 0.34);
}

.sa-date-picker-card:hover,
.sa-date-picker-card:focus-within,
.sa-date-picker-card:focus {
  border-color: rgba(242, 165, 31, 0.72);
  box-shadow: 0 0 0 3px rgba(242, 165, 31, 0.18);
}

.sa-date-picker-label {
  color: #f8fafc;
  font-size: 0.88rem;
}

.sa-date-picker-card input[type="date"] {
  min-height: 38px;
  background: rgba(4, 9, 18, 0.68);
  color: #f8fafc;
  color-scheme: dark;
  border-color: rgba(148, 163, 184, 0.42);
  text-align: center;
}

.sa-date-picker-card input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.78;
}

.sa-address-suggest-list {
  background: #0b111c;
  border-color: rgba(242, 165, 31, 0.48);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.sa-address-suggest-list button {
  color: #f8fafc;
}

.sa-address-suggest-list button:hover,
.sa-address-suggest-list button:focus {
  background: rgba(242, 165, 31, 0.16);
  color: #ffffff;
}

.sa-primary,
.sa-secondary,
button,
.sa-link-button {
  border-radius: 999px;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.sa-primary {
  background: var(--sa-amber);
  color: #111827;
}

.sa-primary:hover {
  background: #ffc44a;
}

.sa-secondary {
  background: rgba(15, 143, 141, 0.22);
  color: #f8fafc;
  border-color: rgba(45, 212, 191, 0.38);
}

.sa-secondary:hover {
  background: rgba(15, 143, 141, 0.36);
}

.sa-addon-choice-notice {
  background: rgba(15, 143, 141, 0.16);
  border-color: rgba(45, 212, 191, 0.38);
  color: #d5fffb;
}

.sa-start-notice,
.sa-public-deposit.is-clear {
  background: rgba(15, 143, 141, 0.16);
  border-color: rgba(45, 212, 191, 0.38);
  color: #d5fffb;
}

.sa-estimate-scope-notice,
.sa-public-scope-notice {
  background: rgba(15, 23, 42, 0.56);
  border-color: rgba(148, 163, 184, 0.3);
  color: #c8d4e3;
}

.sa-estimate-scope-notice strong,
.sa-public-scope-notice strong {
  color: #f8fafc;
}

.sa-estimate-location-editor,
.sa-request-location {
  border-bottom-color: rgba(148, 163, 184, 0.2);
}

.sa-coverage-tool {
  background: rgba(4, 9, 18, 0.28);
  border-color: rgba(148, 163, 184, 0.24);
}

.sa-coverage-copy h3,
.sa-coverage-result-grid strong,
.sa-coverage-estimate-summary h3,
.sa-coverage-estimate-summary dd {
  color: #f8fafc;
}

.sa-coverage-copy p,
.sa-coverage-legal,
.sa-coverage-estimate-summary p {
  color: #c8d4e3;
}

.sa-coverage-pricing-copy,
.sa-coverage-map-note,
.sa-coverage-manual-note,
.sa-location-pin-tools,
.sa-location-pin-status,
.sa-address-unknown-toggle,
.sa-address-unknown-helper,
.sa-coverage-source label,
.sa-coverage-result-grid div {
  background: rgba(4, 9, 18, 0.6);
  border-color: rgba(148, 163, 184, 0.28);
  color: #f8fafc;
}

.sa-coverage-pricing-copy p,
.sa-coverage-map-note,
.sa-coverage-manual-note,
.sa-location-pin-tools span,
.sa-address-unknown-helper,
.sa-location-pin-status {
  color: #c8d4e3;
}

.sa-coverage-capture h4 {
  color: #f8fafc;
}

.sa-coverage-source input {
  accent-color: var(--sa-amber);
}

.sa-coverage-map {
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: inset 0 0 0 1px rgba(4, 9, 18, 0.5);
}

.sa-coverage-status,
.sa-coverage-empty {
  background: rgba(15, 143, 141, 0.16);
  color: #d5fffb;
}

.sa-coverage-status.is-loading {
  background: rgba(96, 165, 250, 0.14);
  color: #bfdbfe;
}

.sa-coverage-status.is-warning,
.sa-coverage-difference,
.sa-coverage-review,
.sa-coverage-warning {
  background: rgba(242, 165, 31, 0.14);
  color: #ffd37b;
}

.sa-coverage-status.is-error {
  background: rgba(153, 27, 27, 0.18);
  color: #fecaca;
}

.sa-coverage-result-grid span,
.sa-coverage-estimate-summary dt {
  color: #aab7c8;
}

.sa-coverage-estimate-summary {
  background: rgba(15, 143, 141, 0.1);
  border-color: rgba(45, 212, 191, 0.26);
}

.sa-request-location span,
.sa-total-list dt {
  color: #aab7c8;
}

.sa-request-location strong,
.sa-request-lines li span,
.sa-total-list dd,
.sa-public-services h3,
.sa-public-notes h3,
.sa-public-services ul,
.sa-public-notes ul {
  color: #f8fafc;
}

.sa-request-lines li {
  border-bottom-color: rgba(148, 163, 184, 0.16);
}

.sa-request-lines li strong {
  color: var(--sa-amber);
}

.sa-request-lines li.is-free {
  color: #aab7c8;
}

.sa-total-list .sa-total {
  border-top-color: rgba(148, 163, 184, 0.3);
}

.sa-public-deposit,
.sa-stripe-box {
  background: rgba(242, 165, 31, 0.12);
  border-color: rgba(242, 165, 31, 0.42);
}

.sa-public-deposit span,
.sa-stripe-box span {
  color: #ffd37b;
}

.sa-public-deposit small,
.sa-stripe-box small,
.sa-public-deposit.is-clear small {
  color: #c8d4e3;
}

.sa-calendar-frame {
  min-height: 720px;
  border-radius: 6px;
  background: #ffffff;
}

.sa-booking-intro,
.sa-slot-header span,
.sa-slot-list p,
.sa-booking-status {
  color: #c8d4e3;
}

.sa-slot-header h3 {
  color: #f8fafc;
}

.sa-acknowledgment {
  background: rgba(242, 165, 31, 0.12);
  border-color: rgba(242, 165, 31, 0.42);
  color: #f8fafc;
}

.sa-acknowledgment input {
  accent-color: var(--sa-amber);
}

.sa-slot-button {
  background: rgba(4, 9, 18, 0.66);
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.38);
}

.sa-slot-button:hover,
.sa-slot-button.is-selected {
  background: rgba(242, 165, 31, 0.18);
  border-color: rgba(242, 165, 31, 0.78);
  color: #ffffff;
}

.sa-booking-status.is-success {
  color: #b6f6d1;
}

.sa-booking-status.is-error {
  color: #fecaca;
}

/* Scout & Aerial reusable site shell */
html,
body {
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(242, 165, 31, 0.34), rgba(15, 143, 141, 0.32)),
    linear-gradient(0deg, rgba(10, 12, 14, 0.2), rgba(10, 12, 14, 0.2)),
    url("./assets/general-background-large.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 14, 0.1);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--sa-amber);
  color: #111827;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(30, 30, 30, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.site-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--sa-amber), var(--sa-teal));
}

.header-inner {
  width: min(100%, 1360px);
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 232px;
  text-decoration: none;
}

.brand-link img {
  width: 248px;
  max-width: 30vw;
  height: auto;
}

.primary-nav {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nav-item {
  position: relative;
}

.nav-link,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--sa-amber);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(242, 165, 31, 0.09);
  color: #ffc14a;
  outline: none;
}

.menu-toggle svg,
.book-link svg,
.social-links svg,
.contact-fab svg {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  max-width: min(340px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #1f1f1f;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
}

.menu-panel-wide {
  min-width: 330px;
}

.menu-panel-tall {
  min-width: 310px;
}

.has-menu:hover .menu-panel,
.has-menu:focus-within .menu-panel,
.has-menu.is-open .menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel a {
  display: block;
  padding: 12px 13px;
  border-radius: 6px;
  color: var(--sa-amber);
  text-decoration: none;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: rgba(242, 165, 31, 0.1);
  color: #ffc14a;
  outline: none;
}

.book-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--sa-amber);
  color: #111827;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(242, 165, 31, 0.22);
}

.book-link:hover,
.book-link:focus-visible {
  background: #ffc14a;
  outline: 3px solid rgba(242, 165, 31, 0.28);
  outline-offset: 2px;
}

.book-link svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}

.nav-toggle {
  display: none;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  border: 1px solid rgba(199, 206, 216, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-main {
  width: min(100%, 1180px);
  min-height: 58vh;
  margin: 0 auto;
  padding: 84px 24px 96px;
}

.site-main-booking {
  width: min(100%, 980px);
  padding: 30px 16px 56px;
}

.site-main-booking .sa-app-grid {
  width: min(920px, calc(100% - 28px));
  padding-bottom: 0;
}

.site-main-policy {
  width: min(100%, 1120px);
  padding: 48px 18px 72px;
}

.policy-hero,
.policy-section,
.policy-toc {
  border: 1px solid rgba(88, 112, 136, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(18, 23, 29, 0.94);
  color: #f8fafc;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.policy-hero {
  margin: 0 auto 22px;
  padding: clamp(24px, 4vw, 42px);
}

.policy-eyebrow,
.policy-updated {
  margin: 0 0 8px;
  color: var(--sa-amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
}

.policy-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #d8e1ea;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 112px;
  padding: 18px;
}

.policy-toc strong {
  display: block;
  margin-bottom: 10px;
  color: #f8fafc;
}

.policy-toc a {
  display: block;
  margin: 0 0 8px;
  color: #92d6d3;
  font-weight: 700;
  text-decoration: none;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  color: #ffc14a;
  outline: none;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: clamp(20px, 3vw, 34px);
}

.policy-section h2,
.policy-section h3 {
  color: #ffffff;
  line-height: 1.15;
}

.policy-section h2 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(199, 206, 216, 0.18);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.policy-section h3 {
  margin: 22px 0 8px;
  font-size: 1.06rem;
}

.policy-section p,
.policy-section li,
.policy-section dd {
  color: #d8e1ea;
}

.policy-section p {
  margin: 0 0 13px;
}

.policy-section ul,
.policy-section ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-section a {
  color: #7ddbd6;
  font-weight: 800;
  text-decoration: none;
}

.policy-section a:hover,
.policy-section a:focus-visible {
  color: #ffc14a;
  outline: none;
}

.policy-callout {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(15, 143, 141, 0.58);
  border-radius: 8px;
  background: rgba(15, 143, 141, 0.14);
}

.policy-callout p:last-child {
  margin-bottom: 0;
}

.policy-note {
  color: #aab8c8;
  font-size: 0.94rem;
}

.policy-faq-list {
  display: grid;
  gap: 12px;
}

.policy-faq-list details {
  border: 1px solid rgba(199, 206, 216, 0.18);
  border-radius: 8px;
  background: rgba(3, 7, 18, 0.28);
}

.policy-faq-list summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.policy-faq-list details[open] summary {
  border-bottom: 1px solid rgba(199, 206, 216, 0.14);
}

.policy-faq-list details > div {
  padding: 15px 16px 18px;
}

.policy-faq-list p:last-child,
.policy-faq-list ul:last-child {
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 24px 38px;
  border-bottom: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--sa-amber), var(--sa-teal)) 1;
  background: rgba(29, 29, 29, 0.94);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 64px;
  padding-top: 8px;
}

.footer-nav a {
  color: var(--sa-teal);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #58e0d6;
  outline: none;
}

.footer-card {
  position: relative;
  width: min(920px, 100%);
  margin: 18px auto 26px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(88, 112, 136, 0.72);
  border-radius: 8px;
  background: #202020;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.footer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--sa-amber), var(--sa-teal));
}

.footer-contact-art {
  width: min(372px, 100%);
  height: auto;
  border-radius: 8px;
}

.service-area {
  margin: 10px 0 26px;
  color: #c7ced8;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-grid h2 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 9px;
  color: var(--sa-amber);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffc14a;
  outline: none;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(199, 206, 216, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #f8fafc;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(242, 165, 31, 0.72);
  color: var(--sa-amber);
}

.social-links svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.social-links a:nth-child(3) svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.footer-legal {
  width: min(1000px, 100%);
  margin: 0 auto;
  color: #d4d9df;
}

.footer-legal p {
  margin: 0 0 10px;
}

.footer-legal a {
  color: #98bfd6;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #ffc14a;
  outline: none;
}

.contact-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #ffb45c;
  color: #111827;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.contact-fab:hover,
.contact-fab:focus-visible {
  background: #ffc14a;
  outline: 3px solid rgba(255, 196, 74, 0.3);
  outline-offset: 3px;
}

.contact-fab svg {
  width: 29px;
  height: 29px;
  stroke-width: 2;
}

.contact-popover {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 81;
  width: min(310px, calc(100vw - 44px));
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  color: #17202a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
}

.contact-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-popover p {
  margin: 0 28px 14px 0;
  color: #273243;
}

.contact-popover a {
  display: block;
  margin-top: 10px;
  color: #075985;
  font-weight: 800;
}

.contact-close {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111827;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.contact-close:hover,
.contact-close:focus-visible {
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 16px;
  }

  .primary-nav {
    gap: 8px;
  }

  .brand-link {
    min-width: 190px;
  }

  .brand-link img {
    width: 220px;
  }
}

@media (max-width: 940px) {
  body.nav-open {
    position: fixed;
    width: 100%;
  }

  .header-inner {
    min-height: 74px;
    padding: 0 16px;
    justify-content: space-between;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-link img {
    width: min(226px, calc(100vw - 96px));
    max-width: none;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 79px 0 auto 0;
    max-height: calc(100vh - 79px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 16px 24px;
    overflow: auto;
    border-top: 1px solid rgba(199, 206, 216, 0.22);
    background: rgba(30, 30, 30, 0.98);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .menu-toggle,
  .book-link {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .book-link {
    justify-content: center;
    margin-top: 10px;
  }

  .menu-panel {
    position: static;
    display: none;
    min-width: 0;
    max-width: none;
    margin: 0 0 8px;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .has-menu.is-open .menu-panel {
    display: block;
  }

  .has-menu:hover .menu-panel,
  .has-menu:focus-within .menu-panel {
    transform: none;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 18px 0 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-main-policy {
    padding-top: 26px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-bg {
    background-attachment: scroll;
  }

  .site-main-booking {
    padding: 18px 10px 48px;
  }

  .site-footer {
    padding: 0 16px 30px;
  }

  .footer-card {
    padding: 24px 18px;
  }

  .contact-fab {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .contact-popover {
    right: 16px;
    bottom: 84px;
    width: calc(100vw - 32px);
  }
}

@media (max-width: 820px) {
  .sa-app-header {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .sa-site-nav {
    display: none;
  }

  .sa-app-grid {
    width: min(100% - 20px, 760px);
    padding-top: 10px;
  }

  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select {
    min-height: 44px;
  }

  button:not(.sa-scope-link),
  .sa-primary,
  .sa-secondary,
  .sa-link-button,
  .sa-slot-button {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sa-scope-link {
    min-height: 40px;
    align-items: center;
    padding: 8px 0;
  }

  .sa-date-picker-card input[type="date"] {
    min-height: 44px;
    height: 44px;
  }

  .has-tooltip[data-tooltip]::after,
  .sa-request-lines li.has-tooltip::after {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    bottom: auto;
    width: auto;
    max-width: none;
    transform: translateY(-4px);
  }

  .has-tooltip[data-tooltip]:hover::after,
  .has-tooltip[data-tooltip]:focus-within::after,
  .sa-request-lines li.has-tooltip:hover::after,
  .sa-request-lines li.has-tooltip:focus::after {
    transform: translateY(0);
  }

  .sa-two-col,
  .sa-three-col,
  .sa-package-row .sa-options,
  .sa-individual-services-grid,
  .sa-other-grid,
  .sa-options-pair,
  .sa-options-triple,
  .sa-lockbox-service-row,
  .sa-lockbox-route-tools,
  .sa-coverage-source,
  .sa-coverage-toolbar,
  .sa-coverage-result-grid,
  .sa-property-grid,
  .sa-stop-grid {
    grid-template-columns: 1fr;
  }

  .sa-coverage-map {
    min-height: 280px;
  }

  .sa-acres-control {
    max-width: none;
  }

  .sa-welcome-panel {
    padding: 14px;
  }
}
