:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5f6874;
  --line: #dbe2e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --brand: #13a85b;
  --brand-strong: #0b8746;
  --accent: #f3b233;
  --danger: #cf2e2e;
  --shadow: 0 18px 50px rgba(16, 24, 32, .14);
  --radius: 8px;
  --content: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

svg {
  fill: currentColor;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 24, 32, .86), rgba(16, 24, 32, .08));
}

.brand,
.header-action,
.primary-action,
.secondary-action,
.footer-link,
.mobile-sticky a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 800;
  touch-action: manipulation;
}

.brand {
  justify-content: flex-start;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  max-width: 48vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .95rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, .78);
  font-size: .75rem;
}

.header-action {
  padding: 0 13px;
  background: var(--brand);
  box-shadow: 0 10px 28px rgba(19, 168, 91, .28);
}

.header-action svg,
.primary-action svg,
.secondary-action svg,
.mobile-sticky svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 93svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .95) 0%, rgba(16, 24, 32, .76) 42%, rgba(16, 24, 32, .1) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, .94) 0%, rgba(16, 24, 32, .26) 42%, rgba(16, 24, 32, .24) 100%);
}

.hero-content {
  width: var(--content);
  margin: 0 auto;
  padding: 116px 0 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-size: 2.55rem;
  line-height: .94;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 1.04rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-block-start: 22px;
  max-width: 540px;
}

.primary-action,
.secondary-action {
  width: 100%;
  padding: 14px 16px;
}

.primary-action {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(19, 168, 91, .32);
}

.secondary-action {
  background: rgba(255, 255, 255, .13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(14px);
}

.home-voice-action {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  font-size: .84rem;
}

.quick-panel {
  width: var(--content);
  margin: -22px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.quick-item,
.service-card,
.price-points div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, .06);
}

.quick-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 14px;
}

.quick-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffe7ac;
  color: #5e3b00;
  font-weight: 900;
}

.quick-item strong {
  font-size: .98rem;
}

.quick-item p,
.answer-panel p,
.service-card p,
.section-heading p,
.cta-band p,
.site-footer p,
.price-points span,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.answer-panel {
  width: var(--content);
  margin: 42px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, .06);
}

.answer-panel h2 {
  margin-block-end: 14px;
}

.answer-grid,
.area-list {
  display: grid;
  gap: 10px;
}

.answer-grid article {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f5f7f9;
}

.answer-grid strong {
  font-size: 1rem;
}

.section {
  width: var(--content);
  margin: 58px auto 0;
}

.section-heading {
  max-width: 760px;
  margin-block-end: 20px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.02;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  padding: 18px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-block-end: 14px;
  border-radius: var(--radius);
  background: #e7f7ef;
  color: var(--brand-strong);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.keyword-line {
  margin-block-start: 12px !important;
  color: #7b4f00 !important;
  font-size: .86rem;
  font-weight: 800;
}

.cta-band {
  width: var(--content);
  margin: 56px auto 0;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: 1.9rem;
}

.cta-band p {
  color: rgba(255, 255, 255, .75);
}

.price-points {
  display: grid;
  gap: 10px;
}

.area-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-list span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
  text-align: center;
}

.price-points div {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.price-points strong {
  font-size: 1.08rem;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  font-weight: 850;
}

.faq-list summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #edf1f4;
  color: var(--ink);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 16px 16px;
}

.keyword-cloud {
  width: var(--content);
  margin: 46px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-cloud span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #4d5662;
  font-size: .84rem;
}

.site-footer {
  width: var(--content);
  margin: 52px auto 0;
  padding: 26px 0 112px;
  display: grid;
  gap: 16px;
  border-block-start: 1px solid var(--line);
}

.footer-link {
  justify-self: start;
  min-height: 44px;
  padding: 0 14px;
  background: #e7f7ef;
  color: var(--brand-strong);
}

.mobile-sticky {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(247, 249, 251, .92);
  border-block-start: 1px solid rgba(219, 226, 232, .9);
  backdrop-filter: blur(16px);
}

.sticky-whatsapp,
.sticky-voice {
  min-height: 52px;
  padding: 0 14px;
}

.sticky-whatsapp {
  background: var(--brand);
  color: var(--white);
}

.sticky-voice {
  background: var(--ink);
  color: var(--white);
}

.help-flow {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: end;
}

.request-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(19, 168, 91, .12), transparent 34%),
    var(--paper);
}

.request-header {
  background: var(--ink);
}

.request-home {
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.request-main {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: calc(86px + env(safe-area-inset-top)) 12px max(18px, env(safe-area-inset-bottom));
}

.request-page .help-flow {
  position: static;
  inset: auto;
  z-index: auto;
  display: block;
}

.request-page .help-sheet {
  max-height: none;
  overflow: visible;
  padding: 18px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.request-page .help-sheet-header {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-page .help-sheet h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.04;
}

.request-page .help-sheet-header p:not(.eyebrow) {
  font-size: 1rem;
}

.request-page .help-form,
.request-page .flow-progress,
.voice-card {
  margin-block-start: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-page .flow-progress {
  box-shadow: none;
}

.request-page .help-form {
  gap: 16px;
}

.request-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.request-page .choice-button {
  min-height: 64px;
  font-size: 1.06rem;
}

.voice-card {
  display: grid;
  gap: 12px;
}

.voice-card[hidden] {
  display: none;
}

.voice-status {
  min-height: 58px;
  padding: 12px;
  border-radius: var(--radius);
  background: #eef9f3;
  border: 1px solid #caead8;
}

.voice-status strong {
  display: block;
  margin-block-end: 2px;
  color: var(--brand-strong);
  font-weight: 900;
}

.voice-status span {
  color: #486255;
  font-size: 1rem;
}

.voice-status.is-error {
  border-color: #ffc9c9;
  background: #fff5f5;
}

.voice-status.is-error strong {
  color: var(--danger);
}

.talk-button {
  position: relative;
  min-height: 72px;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  gap: 4px;
  font: inherit;
  box-shadow: 0 18px 30px rgba(19, 168, 91, .22);
}

.talk-button strong {
  font-size: 1.2rem;
  font-weight: 950;
}

.talk-button span {
  opacity: .9;
  font-size: .92rem;
  font-weight: 800;
}

.talk-button:disabled {
  opacity: .68;
}

.talk-button.is-listening::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(19, 168, 91, .32);
  border-radius: inherit;
  animation: pulse 1s ease-out infinite;
}

@keyframes pulse {
  from {
    transform: scale(.98);
    opacity: .9;
  }

  to {
    transform: scale(1.08);
    opacity: 0;
  }
}

.help-flow[hidden] {
  display: none;
}

.help-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 24, 32, .62);
}

.help-sheet {
  position: relative;
  width: 100%;
  max-height: min(96svh, 820px);
  overflow: auto;
  padding: 20px 16px max(24px, env(safe-area-inset-bottom));
  border-radius: 8px 8px 0 0;
  background: var(--white);
  box-shadow: 0 -18px 55px rgba(16, 24, 32, .24);
}

.help-sheet-header {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 12px;
  align-items: start;
}

.help-sheet h2 {
  margin-block-end: 6px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.help-sheet-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.help-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.help-close svg {
  width: 22px;
  height: 22px;
}

.flow-progress {
  display: grid;
  gap: 8px;
  margin-block-start: 14px;
}

.flow-progress span:first-child {
  color: var(--muted);
  font-size: .98rem;
  font-weight: 900;
}

.flow-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f4;
}

.flow-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width .22s ease;
}

.help-form {
  display: grid;
  gap: 14px;
  margin-block-start: 16px;
}

.choice-group {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.flow-step[hidden] {
  display: none;
}

.choice-group legend,
.note-field span,
.message-preview strong,
.dispatch-wait strong {
  margin-block-end: 8px;
  color: var(--ink);
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.choice-button {
  min-height: 58px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1.06rem;
  font-weight: 900;
  text-align: center;
}

.choice-button.is-selected {
  border-color: var(--brand);
  background: #e7f7ef;
  color: var(--brand-strong);
  box-shadow: inset 0 0 0 1px var(--brand);
}

.note-field {
  display: grid;
  margin-block-end: 12px;
}

.note-field input,
.note-field textarea {
  width: 100%;
  margin-block-start: 8px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
}

.note-field textarea {
  resize: vertical;
  min-height: 72px;
}

.location-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
}

.location-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #c9ded4;
  border-radius: var(--radius);
  background: #e7f7ef;
  color: var(--brand-strong);
  font: inherit;
  font-weight: 900;
}

.location-button svg {
  width: 20px;
  height: 20px;
}

.location-button.is-loading {
  opacity: .72;
}

.location-button.is-ready {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.location-button.is-error {
  border-color: #f0c6c6;
  background: #fff1f1;
  color: var(--danger);
}

.location-box p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.location-box p.is-error {
  color: var(--danger);
  font-weight: 800;
}

.message-preview {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.message-preview p {
  white-space: pre-line;
  color: var(--muted);
  font-size: 1rem;
}

.dispatch-wait {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
}

.dispatch-spinner {
  width: 34px;
  height: 34px;
  border: 4px solid #dce8ef;
  border-block-start-color: var(--brand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.dispatch-wait p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.dispatch-success-line {
  color: var(--brand-strong);
  font-weight: 900;
}

.dispatch-error-line {
  color: var(--danger);
  font-weight: 900;
}

.dispatch-confirm-button {
  width: 100%;
  margin-block-start: 8px;
}

.flow-submit,
.flow-cancel {
  width: 100%;
}

.flow-submit {
  margin-block-start: 15px;
}

.flow-cancel {
  margin-block-start: 20px;
  color: #c92a2a;
  border-color: #ffc9c9;
}

.tracking-map {
  width: 100%;
  height: min(42svh, 340px);
  min-height: 300px;
  margin-block-start: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(16, 24, 32, .1);
}

.tracking-map[hidden] {
  display: none;
}

.dispatch-eta {
  margin: 6px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e7f7ef;
  color: var(--brand-strong);
  font-weight: 900;
  font-size: 1.03rem;
}

.tracking-panel {
  width: 100%;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #c9ded4;
  border-radius: var(--radius);
  background: #f2fbf6;
  color: var(--ink);
  text-align: left;
}

.tracking-panel[hidden] {
  display: none;
}

.tracking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
}

.tracking-metrics {
  display: grid;
  gap: 8px;
}

.tracking-metrics span {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-weight: 850;
}

.quote-highlight {
  display: block;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff7e1;
  color: #7a4d00;
  font-size: 1.08rem;
  font-weight: 900;
}

.phone-error {
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.location-status {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #eef7ff;
  color: #17466c;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
  border: 1px solid #b8dcff;
}

.location-status.is-loading {
  background: #fff7e1;
  color: #7a4d00;
  border-color: #ffd97a;
}

.location-status.is-ready {
  background: #e9f8ef;
  color: #16633b;
  border-color: #a9e7bf;
}

.location-status.is-error {
  background: #fff0ee;
  color: var(--danger);
  border-color: #ffc5bd;
}

.provider-location-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  margin-inline-end: 6px;
  animation: pulse-dot 1.5s ease infinite;
}

.provider-location-dot.is-inactive {
  background: var(--muted);
  animation: none;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.flow-submit:disabled {
  cursor: not-allowed;
  opacity: .52;
  box-shadow: none;
}

.seo-footer {
  padding: 40px 20px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.seo-container {
  max-width: 900px;
  margin: 0 auto;
}

.seo-container h2 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
}

.seo-container ul {
  padding-left: 20px;
  margin: 15px 0;
}

.seo-container li {
  margin-bottom: 8px;
}

.flow-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.flow-back {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.flow-back[hidden],
.flow-submit[hidden] {
  display: none;
}

.home-focus {
  width: var(--content);
  margin: 42px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-focus h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  line-height: 1.1;
}

.home-focus p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-focus-actions {
  display: grid;
  margin-block-start: 18px;
}

.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 18px;
}

.info-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

.info-page {
  min-height: 100vh;
  background: var(--paper);
}

.info-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.info-brand,
.info-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.info-brand {
  min-width: 0;
  color: var(--ink);
}

.info-cta {
  padding: 0 12px;
  background: var(--brand);
  color: var(--white);
  white-space: nowrap;
}

.info-main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.info-main h1 {
  margin: 0 0 14px;
  font-size: 2.35rem;
  line-height: 1.05;
}

.info-main > p:not(.eyebrow),
.info-section p,
.info-section li {
  color: var(--muted);
  font-size: 1.07rem;
}

.info-section {
  margin-block-start: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-section h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.info-section ul {
  margin: 0;
  padding-inline-start: 20px;
}

body.flow-open {
  overflow: hidden;
}

.dispatch-page {
  min-height: 100vh;
  background: var(--paper);
}

.dispatch-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
}

.dispatch-shell {
  width: var(--content);
  margin: 0 auto;
  padding: 28px 0 56px;
}

.dispatch-intro {
  max-width: 760px;
  margin-block-end: 22px;
}

.dispatch-intro h1 {
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
}

.dispatch-intro p:not(.eyebrow) {
  color: var(--muted);
}

.dispatch-tool {
  display: grid;
  gap: 14px;
}

.dispatch-input,
.dispatch-result,
.supplier-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, .06);
}

.dispatch-input,
.dispatch-result {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.dispatch-input textarea {
  min-height: 240px;
}

.dispatch-hint {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.dispatch-hint.is-error {
  color: var(--danger);
}

.supplier-result {
  padding: 16px;
}

.supplier-result h2 {
  font-size: 1.6rem;
}

.supplier-result dl {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.supplier-result div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
}

.supplier-result dt {
  color: var(--muted);
  font-weight: 800;
}

.supplier-result dd {
  margin: 0;
  font-weight: 900;
}

.dispatch-actions {
  display: grid;
  gap: 10px;
}

.dispatch-call {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.provider-page {
  min-height: 100vh;
  background: #eef3f6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

.provider-page *,
.provider-page *::before,
.provider-page *::after {
  min-width: 0;
}

.provider-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(16, 24, 32, .16);
  overflow: hidden;
  max-width: 100%;
}

.provider-header .brand {
  min-width: 0;
}

.provider-header .brand-copy strong {
  max-width: 36vw;
}

.provider-header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
  max-width: 132px;
}

.provider-icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.provider-icon-button svg {
  width: 22px;
  height: 22px;
}

.provider-icon-button-dark {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.provider-logout {
  min-height: 42px;
  max-width: 62px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-shell {
  width: min(100% - 24px, 720px);
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 0 84px;
  overflow-x: hidden;
}

.provider-login,
.provider-dashboard,
.provider-hero,
.provider-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, .06);
}

.provider-login,
.provider-dashboard {
  display: grid;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.provider-login[hidden],
.provider-dashboard[hidden] {
  display: none;
}

.provider-login-copy,
.provider-form,
.provider-topline,
.provider-summary,
.provider-notice,
.provider-notification-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, .06);
}

.provider-login-copy,
.provider-form,
.provider-topline {
  padding: 16px;
}

.provider-login h1,
.provider-topline h1 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.provider-login-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.provider-form {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.provider-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  width: 100%;
  max-width: 100%;
}

.provider-form input,
.provider-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.provider-form select {
  text-overflow: ellipsis;
}

.provider-status {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.provider-notice {
  padding: 12px 14px;
}

.provider-notification-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.provider-notification-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9d2da;
}

.provider-notification-banner.is-on .provider-notification-dot {
  background: var(--brand);
}

.provider-notification-banner.is-error .provider-notification-dot {
  background: var(--danger);
}

.provider-notification-banner strong,
.provider-notification-banner small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.provider-notification-banner small {
  margin-block-start: 2px;
  color: var(--muted);
  font-weight: 900;
}

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

.provider-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.provider-topline > div {
  min-width: 0;
}

.provider-topline h1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-topline p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.provider-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
}

.provider-toolbar span {
  color: var(--muted);
  font-weight: 900;
}

.provider-requests {
  display: grid;
  gap: 12px;
}

.provider-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.provider-summary div {
  display: grid;
  gap: 2px;
  padding: 14px 10px;
  background: var(--white);
  text-align: center;
}

.provider-summary strong {
  font-size: 1.8rem;
  line-height: 1;
}

.provider-summary span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
}

.provider-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-color: #cfd9e1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.provider-card.is-assigned {
  cursor: default;
}

.provider-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.provider-card-head time {
  flex: 0 1 auto;
  max-width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.provider-card h2 {
  margin: 0;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.provider-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.provider-offer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.provider-offer-row strong {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: var(--radius);
  background: #edf7ff;
  color: #24587f;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
}

.provider-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.provider-card-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.provider-card-quick .provider-action {
  min-height: 44px;
  padding-inline: 8px;
  font-size: .88rem;
}

.provider-card-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.provider-card-main > div {
  min-width: 0;
}

.provider-card-main > strong {
  flex: 0 0 auto;
  max-width: 90px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #edf7ff;
  color: #24587f;
  text-align: center;
  font-size: .95rem;
  white-space: nowrap;
}

.provider-meta {
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius);
  background: #f5f7f9;
  color: #3b4652;
  font-size: .92rem;
  font-weight: 800;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.provider-meta span {
  overflow-wrap: anywhere;
}

.provider-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: center;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.provider-action svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.provider-action-call {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.provider-action-whatsapp {
  background: #20b15a;
  color: var(--white);
  border-color: #20b15a;
}

.provider-action-map {
  background: #101820;
  color: var(--white);
  border-color: #101820;
}

.provider-action-soft {
  background: #eef7f3;
  color: var(--brand-strong);
  border-color: #c9ded4;
}

.provider-action-danger {
  background: #fff1f1;
  color: var(--danger);
  border-color: #f0c6c6;
}

.provider-empty {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px dashed #c7d1da;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  text-align: center;
}

.provider-empty p {
  margin: 0;
  color: var(--muted);
}

.provider-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  background: var(--paper);
}

.provider-modal[hidden] {
  display: none;
}

.provider-modal-backdrop {
  display: none;
}

.provider-detail,
.provider-settings {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #eef3f6;
}

.provider-detail-header {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: max(14px, env(safe-area-inset-top)) 16px 14px;
  background: var(--white);
  border-block-end: 1px solid var(--line);
  max-width: 100%;
  overflow: hidden;
}

.provider-detail-header > div {
  min-width: 0;
}

.provider-detail-header h2 {
  margin: 4px 0 0;
  font-size: 1.45rem;
  overflow-wrap: anywhere;
}

.provider-detail-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

.provider-detail-subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.provider-detail-distance {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.provider-offer-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.provider-offer-detail div {
  display: grid;
  gap: 3px;
  padding: 12px 8px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.provider-offer-detail span {
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 900;
}

.provider-offer-detail strong {
  font-size: 1rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.provider-offer-edit {
  display: grid;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.provider-offer-edit span {
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 900;
}

.provider-offer-input {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: center;
  appearance: none;
}

.provider-offer-input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.provider-offer-edit small {
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 800;
}

.provider-detail-grid {
  display: grid;
  gap: 10px;
}

.provider-detail-grid div,
.provider-setting-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.provider-detail-grid span,
.provider-setting-row p {
  display: block;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 900;
}

.provider-setting-row .provider-help {
  margin-block-start: 8px;
  color: var(--ink);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.provider-detail-grid strong {
  overflow-wrap: anywhere;
}

.provider-detail-actions {
  display: grid;
  gap: 10px;
}

.provider-quote-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.provider-quote-label {
  color: var(--ink);
  font-weight: 900;
}

.provider-quote-input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.provider-quote-help {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}

.provider-settings {
  min-height: auto;
  align-self: end;
  border-radius: 8px 8px 0 0;
}

.provider-setting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 16px;
  max-width: calc(100% - 32px);
}

.provider-setting-row strong {
  display: block;
  margin-block-end: 4px;
}

.provider-switch {
  width: 58px;
  height: 34px;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  background: #c9d2da;
}

.provider-switch span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .2s ease;
}

.provider-switch.is-on {
  background: var(--brand);
}

.provider-switch.is-on span {
  transform: translateX(24px);
}

.admin-page .provider-header-actions {
  max-width: none;
}

.admin-shell {
  width: min(100% - 24px, 1100px);
}

.admin-dashboard {
  gap: 14px;
}

.admin-grid {
  display: grid;
  gap: 14px;
}

.admin-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, .06);
}

.admin-card-head h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.admin-form {
  gap: 14px;
}

.admin-form-row {
  display: grid;
  gap: 12px;
}

.admin-checkbox {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.admin-checkbox input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.admin-actions {
  display: grid;
  gap: 10px;
}

.admin-supplier-list {
  display: grid;
  gap: 12px;
}

.admin-supplier-card {
  cursor: default;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf1f4;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
}

.status-new {
  background: #fff1c9;
  color: #684600;
}

.status-searching {
  background: #fff1c9;
  color: #684600;
}

.status-accepted {
  background: #e7f7ef;
  color: var(--brand-strong);
}

.status-customer_confirmed {
  background: #e8f0ff;
  color: #244f9e;
}

.status-rejected {
  background: #fff1f1;
  color: var(--danger);
}

.status-completed {
  background: #e8f0ff;
  color: #244f9e;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 560px) {
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions,
  .quick-panel,
  .answer-grid,
  .price-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions {
    grid-template-columns: 1.25fr .75fr;
  }

  .quick-panel {
    margin-top: -34px;
  }
}

@media (min-width: 760px) {
  .admin-grid {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    align-items: start;
  }

  .admin-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    padding-inline: 28px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-block-end: 72px;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .cta-band h2 {
    font-size: 2.7rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px;
  }

  .cta-band .primary-action {
    min-width: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-block-end: 36px;
  }

  .mobile-sticky {
    display: none;
  }

  .dispatch-tool {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    align-items: start;
  }

  .provider-modal {
    align-items: center;
    justify-items: center;
    padding: 24px;
    background: rgba(16, 24, 32, .58);
  }

  .provider-modal-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
  }

  .provider-detail,
  .provider-settings {
    position: relative;
    min-height: auto;
    width: min(620px, 100%);
    max-height: min(760px, 88vh);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .help-flow {
    align-items: center;
    justify-items: center;
    padding: 24px;
  }

  .help-sheet {
    width: min(680px, 100%);
    border-radius: var(--radius);
    padding: 24px;
  }
}

@media (min-width: 1080px) {
  h1 {
    font-size: 5.65rem;
  }

  h2 {
    font-size: 3.55rem;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-media img {
    object-position: center;
  }
}

@media (max-width: 420px) {
  .header-action {
    padding-inline: 12px;
  }

  .brand-copy strong {
    max-width: 56vw;
    font-size: .88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
