:root {
  --bg: #ffffff;
  --ink: #162033;
  --muted: #667085;
  --line: #d9dee7;
  --soft: #f5f7fa;
  --navy: #0f2d4a;
  --red: #b4232a;
  --red-dark: #8e1c21;
  --yellow: #f5b942;
  --green: #16825d;
  --shadow: 0 18px 45px rgba(15, 45, 74, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid rgba(245, 185, 66, 0.85);
  outline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344054;
  font-size: 0.93rem;
}

.nav-links a,
.phone-link {
  text-decoration: none;
}

.phone-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 94px) clamp(18px, 5vw, 72px) 38px;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.95), rgba(245, 247, 250, 0.28) 58%, #fff 100%),
    #fff;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  line-height: 0.94;
  margin: 0 0 20px;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: #445066;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.58;
  margin: 0 0 28px;
}

.hero-actions,
.dispatcher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover,
.phone-link:hover {
  background: var(--red-dark);
}

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.button.wide {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
  max-width: 680px;
}

.trust-strip div {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip dt {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  border-radius: 18px 0 0 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 450px;
  background: var(--soft);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.hero-media img {
  object-fit: cover;
}

section {
  scroll-margin-top: 84px;
}

.quote-band,
.employee-band,
.content-band {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.quote-band,
.employee-band {
  background: var(--soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.content-band h2,
.employee-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.content-band p,
.employee-intro p,
.dispatcher-header p {
  color: var(--muted);
  line-height: 1.55;
}

.quote-shell,
.dispatcher-form,
.saved-quotes,
.employee-lock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.quote-shell {
  padding: clamp(18px, 3vw, 30px);
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.progress-steps li {
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.progress-steps .is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

label {
  display: grid;
  gap: 8px;
  color: #26354d;
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd6e2;
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(180, 35, 42, 0.16);
  border-color: var(--red);
}

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

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


.material-guide {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  margin: -2px 0 16px;
  border: 1px solid #cfd6e2;
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  background: #fff;
}

.material-guide strong {
  color: var(--navy);
}

.material-guide span {
  color: var(--muted);
  line-height: 1.45;
}

.material-details {
  display: grid;
  gap: 12px;
}

.material-detail-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
}

.material-detail-panel strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.material-detail-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.is-hidden {
  display: none !important;
}
.dumpster-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.dumpster-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.dumpster-card:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 35, 42, 0.12);
}

.dumpster-card input {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
}

.dumpster-card span {
  font-size: 1.1rem;
  font-weight: 900;
}

.dumpster-card small,
.form-hint,
.field-note {
  color: var(--muted);
}

.field-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.dumpster-card strong {
  color: var(--green);
}

.notice-row {
  padding: 13px 14px;
  border-left: 4px solid var(--yellow);
  background: #fff8e8;
  color: #604000;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.price-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.price-summary div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-summary span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.price-summary strong {
  font-size: 1.28rem;
  color: var(--navy);
}

.price-summary .price-summary-total {
  background: var(--navy);
  border-color: var(--navy);
}

.price-summary .price-summary-total span,
.price-summary .price-summary-total strong {
  color: #fff;
}
.contract-review {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contract-review-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.contract-review-head div {
  display: grid;
  gap: 4px;
}

.contract-review-head strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.contract-review-head span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.button.small {
  padding: 10px 13px;
  font-size: 0.86rem;
}
.rental-calendar {
  display: grid;
  gap: 12px;
  margin: 14px 0 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.rental-calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.rental-calendar-head div {
  display: grid;
  gap: 4px;
}

.rental-calendar-head strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.rental-calendar-head span:not(.calendar-pill),
.calendar-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.calendar-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--red);
  background: #fff0f0;
  border: 1px solid #ffd0d0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 54px;
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 8px;
  background: #f8fafc;
  border: 1px solid #e7edf4;
  border-radius: 8px;
  color: var(--navy);
}

.calendar-day b {
  font-size: 0.9rem;
}

.calendar-day small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.05;
}

.calendar-day.is-muted {
  color: #9aa7b7;
  background: #fbfcfe;
}

.calendar-day.is-included {
  background: #eaf7ef;
  border-color: #9bd3ad;
}

.calendar-day.is-dropoff {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.calendar-day.is-dropoff small {
  color: #fff;
}

.calendar-day.is-pickup {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.calendar-day.is-pickup small {
  color: #fff;
}

.calendar-note {
  margin: 0;
  padding-top: 2px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-grid h3,
.saved-quotes h3,
.dispatcher-header h3 {
  margin: 0 0 8px;
}

.split,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.material-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.material-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 290px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(15, 45, 74, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 45, 74, 0.08) 1px, transparent 1px),
    #f9fbfd;
  background-size: 36px 36px;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 42px 22px;
  border: 8px solid rgba(180, 35, 42, 0.18);
  border-radius: 48% 52% 43% 57%;
}

.map-card span {
  position: absolute;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(15, 45, 74, 0.08);
}

.map-card span:nth-child(1) { left: 42%; top: 48%; }
.map-card span:nth-child(2) { left: 58%; top: 36%; }
.map-card span:nth-child(3) { left: 48%; top: 16%; }
.map-card span:nth-child(4) { left: 24%; top: 34%; }

.employee-intro {
  max-width: 860px;
  margin-bottom: 20px;
}

.employee-lock {
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.employee-lock label {
  flex: 1;
}

.form-hint {
  margin: 0 0 10px;
  font-size: 0.85rem;
}

.dispatcher-app {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 18px;
}


.review-band {
  padding-top: 0;
}

.review-app {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 18px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 16px;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.message-preview {
  display: grid;
  gap: 8px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.message-preview h3 {
  margin: 0;
}

.message-preview pre {
  margin: 0;
  white-space: pre-wrap;
  color: #344054;
  font: inherit;
  line-height: 1.5;
}
.dispatcher-app.is-locked {
  display: none;
}

.dispatcher-form,
.saved-quotes {
  padding: clamp(18px, 3vw, 28px);
}

.dispatcher-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  margin: 8px 0 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
}

.quote-total strong {
  font-size: 1.5rem;
}

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

.saved-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.saved-item strong {
  display: block;
}

.saved-item small {
  color: var(--muted);
}


.pickup-band {
  padding-top: 0;
}

.automation-steps {
  display: grid;
  gap: 10px;
}

.automation-steps p {
  margin: 0;
  line-height: 1.45;
}

.extension-page {
  background: var(--soft);
}

.extension-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 72px);
}

.extension-card {
  width: min(720px, 100%);
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.extension-brand {
  margin-bottom: 24px;
}

.extension-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 0.96;
}

.extension-card p {
  color: var(--muted);
  line-height: 1.55;
}

.extension-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.extension-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.extension-options label {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.extension-options input {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 18px;
  min-height: 18px;
}

.extension-options label:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 35, 42, 0.12);
}

.extension-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.extension-total strong {
  font-size: 1.6rem;
}

.extension-confirmation {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: #ecfdf3;
  color: #05603a;
  line-height: 1.5;
}


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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 16px 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 86px clamp(18px, 7vw, 92px) 54px;
  background: linear-gradient(120deg, #f8fafc 0%, #eef6f0 52%, #fff8ed 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  max-width: 880px;
}

.page-hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.prose-band {
  max-width: 900px;
}

.prose-band h2,
.quote-cta h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.prose-band p,
.quote-cta p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

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

.quote-cta {
  margin: 0 clamp(18px, 7vw, 92px) 62px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.quote-cta h2,
.quote-cta p {
  color: #fff;
}

.quote-cta p {
  max-width: 720px;
  opacity: 0.84;
}

.rich-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  background: #f8fafc;
}

.rich-footer strong {
  color: var(--navy);
}

.rich-footer p {
  margin: 7px 0 0;
}

.rich-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 560px;
}

.rich-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.rich-footer a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .site-header {
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .service-area,
  .dispatcher-app,
  .review-app {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
    border-radius: 14px;
  }

  .section-heading {
    display: block;
  }

  .field-grid,
  .field-grid.three,
  .dumpster-options,
  .price-summary,
  .info-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contract-review-head {
    display: grid;
  }

  .rental-calendar-head {
    display: grid;
  }

  .rich-footer {
    display: grid;
  }

  .rich-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .calendar-day {
    min-height: 46px;
    padding: 6px 4px;
  }

  .calendar-day small {
    font-size: 0.56rem;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .phone-link {
    flex: 1;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .trust-strip,
  .progress-steps,
  .material-list {
    grid-template-columns: 1fr;
  }

  .employee-lock {
    display: grid;
    align-items: stretch;
  }

  .dispatcher-header,
  .quote-total {
    display: grid;
  }

  .button,
  .phone-link,
  input,
  select {
    min-height: 48px;
  }
}

