:root {
  --teal: #00aca4;
  --teal-dark: #007c77;
  --book: #12b76a;
  --book-dark: #07844d;
  --ink: #111317;
  --slate: #30343b;
  --muted: #68707c;
  --line: #dfe5e8;
  --soft: #f5f7f8;
  --white: #ffffff;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(17, 19, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(17, 19, 23, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-logo-wrap {
  display: grid;
  width: clamp(150px, 20vw, 230px);
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
}

.brand small {
  color: #aeb8bf;
  font-size: 0.82rem;
}

.header-call {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 172, 164, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 172, 164, 0.16);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 900;
}

.header-cta,
.primary-button,
.book-button,
.call-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-cta:hover,
.primary-button:hover {
  background: #006964;
  box-shadow: 0 10px 24px rgba(0, 172, 164, 0.28);
  transform: translateY(-1px);
}

.book-button {
  width: 100%;
  min-height: 54px;
  color: var(--ink);
  background: var(--book);
  box-shadow: 0 12px 28px rgba(18, 183, 106, 0.28);
  font-size: 1.08rem;
}

.call-button {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(0, 172, 164, 0.45);
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(17, 19, 23, 0.08);
}

.call-button:hover {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(0, 172, 164, 0.24);
  transform: translateY(-1px);
}

.book-button:hover {
  color: var(--white);
  background: var(--book-dark);
  box-shadow: 0 14px 30px rgba(18, 183, 106, 0.34);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 68px) clamp(16px, 4vw, 56px) 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 23, 0.98), rgba(48, 52, 59, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(0, 172, 164, 0.28), transparent 34%);
}

.hero-content {
  max-width: 760px;
}

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

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.25rem, 6vw, 4.65rem);
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 22px;
  color: #e4eaeb;
  font-size: clamp(1.03rem, 2.4vw, 1.32rem);
}

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

.trust-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #edf5f5;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: end;
  max-width: 620px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.desktop-hero-garage {
  position: relative;
  min-height: 172px;
}

.garage-line {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 96px;
  border: 6px solid rgba(255, 255, 255, 0.34);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.garage-line::before,
.garage-line::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.garage-line::before {
  top: 32px;
}

.garage-line::after {
  top: 64px;
}

.garage-body {
  position: absolute;
  top: 0;
  right: 20%;
  left: 9%;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 26px rgba(0, 172, 164, 0.38);
}

.garage-car {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 190px;
  height: 72px;
  border-radius: 42px 58px 20px 20px;
  background: #f9fbfb;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.garage-car::before {
  position: absolute;
  top: -24px;
  left: 56px;
  width: 74px;
  height: 42px;
  border-radius: 38px 38px 8px 8px;
  background: var(--teal);
  box-shadow: 0 0 0 12px #f9fbfb;
  content: "";
}

.garage-car::after {
  position: absolute;
  right: 26px;
  bottom: -14px;
  width: 28px;
  height: 28px;
  border: 10px solid #111923;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: -118px 0 0 -10px var(--teal), -118px 0 0 0 #111923;
  content: "";
}

.desktop-hero-price {
  display: grid;
  gap: 2px;
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
}

.desktop-hero-price span,
.desktop-hero-price small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.desktop-hero-price strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.desktop-hero-panel ul {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-hero-panel li {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #edf5f5;
  font-weight: 800;
}

.desktop-hero-panel li::before {
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.hero-visual {
  min-height: 300px;
}

.hero-service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 210px);
  grid-template-areas:
    ". price"
    "reg price"
    "points points";
  min-height: 305px;
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 42% 8%, rgba(0, 172, 164, 0.16), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #171c22;
  box-shadow: var(--shadow);
}

.hero-reg-card {
  grid-area: reg;
  display: grid;
  gap: 14px;
  align-self: center;
  max-width: 500px;
  padding: 0;
}

.hero-reg-label {
  display: grid;
  gap: 4px;
}

.hero-reg-label strong {
  color: #eef6f7;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.hero-reg-label small,
.hero-reg-help {
  color: #c6d2d7;
  font-weight: 800;
}

.hero-plate-row {
  display: grid;
  grid-template-columns: minmax(0, 390px) 52px;
  gap: 10px;
  align-items: stretch;
  max-width: 460px;
  margin: 0;
}

.hero-plate-field {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  overflow: hidden;
  border: 2px solid rgba(17, 19, 23, 0.82);
  border-radius: 8px;
  background: #f4c542;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 10px 20px rgba(0, 0, 0, 0.14);
}

.gb-mark {
  position: relative;
  display: grid;
  min-height: 52px;
  place-items: end center;
  overflow: hidden;
  padding: 7px 6px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.gb-mark::before,
.gb-mark::after {
  position: absolute;
  top: 7px;
  left: 8px;
  right: 8px;
  height: 25px;
  border-radius: 2px;
  content: "";
}

.gb-mark::before {
  background:
    linear-gradient(34deg, transparent 41%, #fff 42%, #fff 52%, transparent 53%),
    linear-gradient(-34deg, transparent 41%, #fff 42%, #fff 52%, transparent 53%),
    linear-gradient(90deg, transparent 39%, #fff 40%, #fff 60%, transparent 61%),
    linear-gradient(0deg, transparent 39%, #fff 40%, #fff 60%, transparent 61%),
    var(--teal-dark);
}

.gb-mark::after {
  background:
    linear-gradient(90deg, transparent 45%, var(--teal) 46%, var(--teal) 54%, transparent 55%),
    linear-gradient(0deg, transparent 45%, var(--teal) 46%, var(--teal) 54%, transparent 55%);
}

.hero-plate-field input {
  border: 0;
  border-radius: 0;
  padding: 0 14px;
  color: #101217;
  background: transparent;
  font-size: clamp(1.18rem, 2.7vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-plate-field input::placeholder {
  color: rgba(16, 18, 23, 0.88);
  opacity: 1;
}

.hero-plate-field input:focus {
  outline: none;
}

.hero-plate-field:focus-within {
  outline: 3px solid rgba(0, 172, 164, 0.24);
  outline-offset: 3px;
}

.hero-reg-button {
  display: grid;
  width: 52px;
  min-height: 56px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: default;
}

.hero-price-card {
  grid-area: price;
  justify-self: end;
  display: grid;
  gap: 3px;
  width: min(100%, 200px);
  border: 1px solid rgba(0, 172, 164, 0.28);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(9, 13, 17, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.hero-price-card span,
.hero-price-card strong,
.hero-price-card small {
  display: block;
}

.hero-price-card span,
.hero-price-card small {
  color: #dce8e9;
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-price-card strong {
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1;
}

.hero-price-card small {
  color: var(--teal);
}

.hero-registration-status,
.vehicle-lookup-summary {
  min-height: 0;
  margin: 0;
}

.hero-service-points {
  grid-area: points;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
  padding: 16px 0 0;
  color: #cddbdd;
  font-size: clamp(0.82rem, 1.2vw, 0.94rem);
  font-weight: 800;
  list-style: none;
}

.hero-service-points li {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.point-icon {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}

.point-shield {
  border-radius: 16px 16px 20px 20px;
}

.point-shield::before {
  content: "✓";
  font-weight: 900;
}

.point-gear {
  border-style: dashed;
  border-radius: 50%;
}

.point-gear::before {
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
}

.service-quote-builder {
  display: grid;
  gap: 18px;
  min-width: 0;
  scroll-margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-builder-header {
  display: grid;
  gap: 6px;
}

.mobile-service-icon,
.mobile-hero-kicker,
.mobile-hero-title,
.mobile-quote-steps,
.mobile-price-message {
  display: none;
}

.quote-builder-header h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.quote-builder-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(max-content, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.quote-progress li {
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.quote-progress li.is-active {
  border-color: rgba(0, 172, 164, 0.38);
  color: var(--teal-dark);
  background: rgba(0, 172, 164, 0.13);
}

.quote-progress li.is-complete {
  border-color: rgba(18, 183, 106, 0.28);
  color: #05603a;
  background: #e7f8ef;
}

.quote-builder-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.quote-step-card {
  display: grid;
  min-width: 0;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
}

.step-count,
.summary-kicker {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-step-card h3 {
  margin: 0;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.55rem, 2.45vw, 2.15rem);
  line-height: 1.08;
}

.quote-step-card h3:focus {
  outline: none;
}

.quote-step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.wizard-form {
  display: grid;
  gap: 14px;
}

.plate-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.wizard-plate-row {
  display: grid;
  grid-template-columns: minmax(0, 360px) 54px;
  gap: 10px;
  align-items: stretch;
  max-width: 420px;
}

.full-action {
  width: fit-content;
}

.text-button,
.secondary-button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.text-button {
  width: fit-content;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.secondary-button {
  min-height: 46px;
  border: 1px solid rgba(0, 172, 164, 0.35);
  padding: 0 16px;
  background: #f5fbfb;
}

.primary-button:disabled,
.book-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

button:focus-visible,
a:focus-visible,
.text-button:focus-visible,
.secondary-button:focus-visible,
.mobile-summary-action:focus-visible {
  outline: 3px solid rgba(0, 172, 164, 0.42);
  outline-offset: 3px;
}

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

select {
  width: 100%;
  border: 1px solid #c9d2d7;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

select:focus {
  border-color: var(--teal-dark);
  outline: 3px solid rgba(0, 172, 164, 0.18);
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.confirmation-reg {
  width: fit-content;
  border: 2px solid rgba(17, 19, 23, 0.78);
  border-radius: 8px;
  padding: 10px 18px;
  color: var(--ink);
  background: rgba(245, 207, 126, 0.74);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.confirmation-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.wizard-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}

.wizard-addon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 12px;
}

.package-card h4,
.addon-card h4 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.package-card .price {
  color: var(--teal-dark);
}

.package-card .card-kicker,
.package-card .included-list {
  color: var(--slate);
}

.addon-card .addon-price {
  color: var(--teal-dark);
}

.summary-card {
  position: sticky;
  top: 88px;
  display: grid;
  min-width: 0;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 19, 23, 0.06);
}

.summary-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.summary-card dl div {
  display: grid;
  gap: 2px;
}

.summary-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.summary-total {
  display: grid;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.summary-total span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-total strong {
  color: var(--teal-dark);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.summary-prepay {
  margin: 0;
  border-radius: 8px;
  padding: 10px;
  color: #064d31;
  background: #dff8ea;
  font-weight: 900;
}

.summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.payment-choice {
  display: grid;
  gap: 10px;
}

.payment-choice label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
}

.payment-choice input {
  width: auto;
  margin-top: 4px;
}

.payment-choice strong,
.payment-choice small {
  display: block;
}

.payment-choice small {
  color: var(--muted);
}

.success-card {
  border: 1px solid rgba(18, 183, 106, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: #f0fbf5;
}

.success-summary {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.success-summary div {
  display: grid;
  gap: 2px;
}

.success-summary dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.payment-redirect-card {
  overflow: hidden;
}

.payment-redirect-card .step-count {
  display: inline-block;
  color: var(--teal-dark);
  background: #ecfbf8;
  border-radius: 999px;
  padding: 6px 10px;
}

.redirect-progress {
  height: 12px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #dff8f4;
  box-shadow: inset 0 0 0 1px rgba(0, 172, 164, 0.18);
}

.redirect-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--teal) 0 12px,
      #76decf 12px 24px
    );
  background-size: 34px 34px;
  animation: payment-progress 0.75s linear infinite;
}

.redirect-reassurance {
  color: var(--muted);
  font-weight: 700;
}

@keyframes payment-progress {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 34px 0;
  }
}

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

  .redirect-progress span {
    animation: none !important;
  }

  .package-card,
  .mobile-quote-summary {
    transition: none !important;
  }

  .package-card:hover,
  .package-card:has(input:checked) {
    transform: none;
  }
}

.section {
  padding: clamp(34px, 6vw, 74px) clamp(16px, 4vw, 56px);
}

.intro-strip {
  background: var(--white);
}

.intro-strip p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--slate);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-align: center;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 26px;
  align-items: start;
  scroll-margin-top: 88px;
}

.section-heading {
  margin-bottom: 20px;
}

.add-on-heading {
  margin-top: 42px;
}

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

.package-card,
.addon-card,
.estimate-panel,
.enquiry-form,
.thank-you,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.package-card {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 0;
  padding: 20px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.package-card:hover,
.package-card:has(input:checked) {
  border-color: var(--teal);
  box-shadow: 0 14px 32px rgba(17, 19, 23, 0.1);
  transform: translateY(-1px);
}

.package-card:focus-within,
.addon-card:focus-within,
.payment-choice label:focus-within {
  border-color: var(--teal-dark);
  outline: 3px solid rgba(0, 172, 164, 0.24);
  outline-offset: 3px;
}

.package-card input,
.addon-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selector-dot {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  place-items: center;
  border: 2px solid #9aa4ac;
  border-radius: 50%;
}

.package-card input:checked + .selector-dot {
  border-color: var(--teal-dark);
}

.package-card input:checked + .selector-dot::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-dark);
  content: "";
}

.package-card h3,
.addon-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  margin: 6px 0 14px;
  color: var(--teal-dark);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.18;
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.included-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--slate);
  list-style: none;
}

.included-list li::before,
.estimate-lines p::before {
  color: var(--teal-dark);
  content: "✓ ";
  font-weight: 900;
}

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

.addon-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}

.addon-card:has(input:checked) {
  border-color: var(--teal);
  background: #f3fffc;
}

.addon-card[data-disabled="true"] {
  color: var(--muted);
  background: #f8fafb;
  cursor: default;
}

.check-box {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid #9aa4ac;
  border-radius: 7px;
  color: var(--white);
  font-weight: 900;
}

.addon-card input:checked + .check-box {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.addon-card input:checked + .check-box::after {
  content: "✓";
}

.addon-price {
  grid-column: 2;
  justify-self: start;
  color: var(--teal-dark);
  font-weight: 900;
  min-width: 0;
  overflow-wrap: anywhere;
}

.included-pill {
  grid-column: 2;
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--ink);
  background: rgba(0, 172, 164, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.estimate-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.order-reference {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  border: 1px solid rgba(0, 172, 164, 0.26);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: #f5fbfb;
  font-size: 0.9rem;
  font-weight: 900;
}

.order-reference strong {
  color: var(--ink);
  font-size: 1rem;
}

.estimate-price {
  margin: 14px 0 8px;
  color: var(--teal-dark);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.prepay-note {
  display: grid;
  gap: 2px;
  width: fit-content;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #064d31;
  background: #dff8ea;
  font-weight: 900;
}

.prepay-note strong {
  font-size: 0.84rem;
}

.estimate-note {
  margin: 0 0 14px;
  color: var(--muted);
}

.estimate-lines {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.estimate-lines p {
  margin: 0;
  color: var(--slate);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 5vw, 58px);
  background: #eef3f4;
  color: var(--ink);
}

.form-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
}

.enquiry-form {
  border-color: #d7e0e3;
  padding: clamp(18px, 4vw, 30px);
  color: var(--ink);
  box-shadow: none;
}

.form-summary {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 172, 164, 0.25);
  border-radius: 8px;
  padding: 13px 14px;
  background: #f4fbfb;
}

.form-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-summary strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.form-summary small {
  color: var(--muted);
  font-weight: 800;
}

.form-summary small strong {
  color: var(--ink);
  font-size: inherit;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d2d7;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal-dark);
  outline: 3px solid rgba(0, 172, 164, 0.18);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.full-width {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1.1em;
  color: var(--danger);
  font-size: 0.85rem;
}

.inline-action {
  border: 0;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.vehicle-result-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(0, 172, 164, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: #f5fbfb;
}

.vehicle-result-card strong {
  color: var(--ink);
}

.vehicle-result-card span {
  color: var(--muted);
  font-weight: 800;
}

.form-alert {
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 12px;
  color: var(--danger);
  background: #fff1f0;
  font-weight: 800;
}

.form-success {
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 12px;
  color: #05603a;
  background: #e7f8ef;
  font-weight: 900;
}

.form-button {
  width: 100%;
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 230px);
  gap: 16px;
  align-items: end;
  margin-top: 16px;
}

.calendar-section {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid #d7e0e3;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbfb;
}

.calendar-copy {
  display: grid;
  gap: 5px;
}

.calendar-copy span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.15;
}

.calendar-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.calendar-note {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--slate);
  background: #f5fbfb;
  font-size: 0.92rem;
}

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

.calendar-status,
.empty-slots {
  margin: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--slate);
  background: #f5fbfb;
  font-weight: 800;
}

.calendar-status.is-error {
  color: #7a2525;
  background: #fff2f2;
}

.date-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 132px), 1fr));
  gap: 10px;
}

.date-choice,
.time-slot {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.date-choice {
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 12px;
  text-align: left;
}

.date-choice small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.date-choice:disabled {
  color: #89939d;
  background: #f4f7f8;
  cursor: not-allowed;
}

.date-choice.is-selected,
.time-slot.is-selected {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
  background: #e8fbf9;
  box-shadow: inset 0 0 0 1px rgba(0, 172, 164, 0.18);
}

.slot-panel {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfc;
}

.slot-panel h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
}

.time-slot {
  min-height: 44px;
  padding: 0 10px;
}

.load-more-slots {
  justify-self: start;
}

.load-more-slots:disabled {
  opacity: 0.55;
  cursor: wait;
}

.mobile-quote-summary {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(17, 19, 23, 0.1);
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 32px rgba(17, 19, 23, 0.16);
  backdrop-filter: blur(14px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.mobile-quote-summary.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
}

.mobile-summary-main {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.mobile-summary-side {
  display: grid;
  justify-items: end;
  min-width: 52px;
}

.mobile-quote-summary span,
.mobile-quote-summary small,
.mobile-quote-summary strong {
  display: block;
}

.mobile-quote-summary span,
.mobile-quote-summary small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.mobile-quote-summary strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.mobile-summary-action {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 13px;
  color: var(--white);
  background: var(--teal-dark);
  font: inherit;
  font-weight: 900;
}

.mobile-summary-action:disabled {
  color: #5f6975;
  background: #dce3e8;
  cursor: not-allowed;
}

.thank-you {
  align-self: start;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
}

.thank-you h2 {
  margin-bottom: 12px;
}

.thank-you p {
  margin: 0;
  color: var(--slate);
}

.faq-section {
  background: var(--white);
}

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

details {
  padding: 18px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--slate);
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  color: var(--white);
  background: #0b0d10;
}

@media (max-width: 980px) {
  .hero,
  .booking-layout,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    position: sticky;
    top: 74px;
    z-index: 10;
  }

  .quote-builder-body {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .wizard-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) {
  .hero {
    align-items: start;
  }

  .hero-content {
    position: sticky;
    top: 92px;
    align-self: start;
    max-height: calc(100vh - 112px);
    overflow: hidden;
  }

  .quote-builder-body {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
    align-items: start;
  }

  .summary-card {
    max-height: calc(100vh - 108px);
    overflow: auto;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    align-items: center;
    padding: 12px 14px;
  }

  .brand-logo-wrap {
    width: min(56vw, 230px);
    height: 56px;
  }

  .brand-text {
    display: none;
  }

  .header-call {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 16px 14px 20px;
    gap: 0;
  }

  .hero-content,
  .hero-content .eyebrow,
  .hero-content h1,
  .desktop-hero-panel,
  .hero-copy {
    display: none;
  }

  .hero-content .primary-button,
  .trust-list {
    display: none;
  }

  .hero-service-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "price"
      "reg"
      "points";
    min-height: 0;
    gap: 18px;
    padding: 18px;
  }

  .hero-reg-card {
    max-width: none;
    padding: 0;
  }

  .hero-reg-label strong {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .hero-plate-row {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 8px;
    max-width: 100%;
  }

  .hero-plate-field {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .gb-mark {
    min-height: 50px;
    font-size: 0.76rem;
  }

  .hero-plate-field input {
    padding-inline: 10px;
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .hero-reg-button {
    width: 46px;
    min-height: 52px;
  }

  .hero-price-card {
    justify-self: start;
    width: min(100%, 176px);
    padding: 14px 15px;
  }

  .hero-price-card span,
  .hero-price-card small {
    font-size: 0.85rem;
  }

  .hero-price-card strong {
    font-size: 1.8rem;
  }

  .hero-service-points {
    gap: 8px 12px;
    padding-top: 14px;
  }

  .hero-service-points li {
    gap: 10px;
  }

  .point-icon {
    width: 20px;
    height: 20px;
  }

  .addon-list,
  .field-grid,
  .vehicle-detail-grid,
  .wizard-field-grid,
  .wizard-addon-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-quote-builder {
    gap: 14px;
    border-color: var(--line);
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 18px 44px rgba(17, 19, 23, 0.14);
  }

  .quote-builder-header {
    gap: 10px;
  }

  .quote-builder-header > .eyebrow,
  .quote-builder-header > #quote-builder-title,
  .quote-builder-header > p:not(.mobile-hero-kicker):not(.mobile-price-message) {
    display: none;
  }

  .quote-builder-header .mobile-hero-kicker,
  .quote-builder-header .mobile-price-message {
    display: block;
    margin: 0;
    color: var(--muted);
    font-weight: 850;
  }

  .quote-builder-header .mobile-hero-title {
    display: block;
    color: var(--ink);
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .mobile-quote-steps {
    display: grid;
    gap: 10px;
    margin: 4px 0 2px;
    padding: 0;
    list-style: none;
  }

  .mobile-quote-steps li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--slate);
    font-weight: 850;
  }

  .mobile-quote-steps li::before {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border: 2px solid rgba(0, 172, 164, 0.22);
    border-radius: 999px;
    color: var(--teal-dark);
    background: #e8fbf9;
    font-size: 0;
    font-weight: 900;
    content: "✓";
    font-size: 0.78rem;
  }

  .quote-builder-header .mobile-price-message {
    width: fit-content;
    border: 1px solid rgba(0, 172, 164, 0.34);
    border-radius: 999px;
    padding: 8px 11px;
    color: var(--teal-dark);
    background: #f5fbfb;
  }

  .quote-builder-body {
    gap: 14px;
  }

  .quote-progress {
    margin-inline: -2px;
    padding-bottom: 2px;
  }

  .wizard-plate-row {
    grid-template-columns: minmax(0, 1fr) 48px;
    max-width: none;
  }

  .quote-step-card {
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: var(--white);
  }

  .quote-step-card h3 {
    color: var(--ink);
    font-size: 1.35rem;
  }

  .quote-step-card p {
    color: var(--muted);
  }

  .step-count {
    color: var(--teal);
  }

  .quote-progress {
    display: none;
  }

  .quote-step-card .full-action {
    display: none;
  }

  .text-button {
    color: var(--teal-dark);
  }

  .summary-card {
    border-color: var(--line);
    color: var(--ink);
    background: var(--white);
  }

  .summary-card dd,
  .summary-card .order-reference strong {
    color: var(--ink);
  }

  .summary-card dt,
  .summary-note {
    color: var(--muted);
  }

  .full-action,
  .step-actions .primary-button,
  .step-actions .secondary-button,
  .step-actions .book-button {
    width: 100%;
  }

  .step-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-layout {
    padding-top: 28px;
  }

  .package-card,
  .addon-card {
    padding: 16px;
  }

  .estimate-panel {
    position: static;
    padding: 18px;
  }

  .prepay-note {
    width: 100%;
    border-radius: 8px;
  }

  .estimate-panel .book-button {
    display: none;
  }

  .mobile-quote-summary {
    display: grid;
  }

  .form-section {
    padding-top: 32px;
  }

  .form-copy h2 {
    font-size: 1.55rem;
  }

  .addon-card {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .addon-price,
  .included-pill {
    grid-column: 2;
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
  }
}
