:root {
  --black: #000000;
  --white: #ffffff;
  --surface: #f3f3f3;
  --surface-soft: #f8f8f8;
  --line: #dedede;
  --muted: #545454;
  --blue: #1769e0;
  --yellow: #ffb000;
  --error: #b42318;
  --success: #127a45;
  --content: 1200px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure,
ul,
ol {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

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

.content-width {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  background: #2b2b2b;
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  background: #e9e9e9;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 9px;
  background: url("assets/icons/chevron-down.svg") center / 18px 18px no-repeat;
  transform: rotate(-90deg);
}

.text-link-light {
  color: var(--white);
  border-color: #666666;
}

.text-link-light::after {
  filter: invert(1);
}

.section-label {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.section-label-light {
  color: #b8d0ff;
}

.section-intro {
  padding-top: 104px;
  padding-bottom: 56px;
}

.section-intro h2,
.contact-copy h2,
.about-inner h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-intro > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-intro-wide {
  padding-top: 96px;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: var(--black);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  align-items: center;
  margin-inline: auto;
}

.wordmark {
  flex: 0 0 auto;
  margin-right: 48px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.header-phone,
.location-label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a:hover,
.header-phone:hover {
  background: #292929;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.location-label img,
.header-phone img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  filter: invert(1);
}

.header-cta {
  min-height: 42px;
  margin-left: 8px;
  padding-inline: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle img {
  width: 23px;
  height: 23px;
}

.menu-icon-close {
  display: none;
}

body.nav-open .menu-icon-open {
  display: none;
}

body.nav-open .menu-icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  z-index: 55;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  max-height: calc(100svh - var(--header-height));
  padding: 20px 24px 28px;
  overflow-y: auto;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid #2c2c2c;
}

.mobile-menu a:not(.button) {
  display: flex;
  min-height: 56px;
  align-items: center;
  border-bottom: 1px solid #2c2c2c;
  font-size: 20px;
  font-weight: 700;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 22px;
}

.menu-backdrop {
  position: fixed;
  z-index: 40;
  inset: var(--header-height) 0 0;
  display: none;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

body.nav-open .mobile-menu,
body.nav-open .menu-backdrop {
  display: block;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  color: var(--white);
  background-image: url("assets/chutu-hero-service.png");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(0, 0, 0, 0.76);
}

.hero-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 80px 0;
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: #efefef;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-note {
  margin: 30px 0 0;
  color: #cfcfcf;
  font-size: 13px;
}

.trust-strip {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid #242424;
}

.trust-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  min-height: 108px;
  grid-template-columns: 1.2fr 2fr;
  align-items: center;
  gap: 44px;
  margin-inline: auto;
}

.trust-inner p {
  margin-bottom: 0;
  color: #d5d5d5;
  font-size: 14px;
}

.trust-inner ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0;
  list-style: none;
}

.trust-inner li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
}

.trust-inner li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.customer-path {
  background: var(--white);
}

.path-index {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.path-index li {
  min-height: 92px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.path-index li:last-child {
  border-right: 0;
}

.path-index span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 12px;
}

.story-band {
  display: grid;
  width: 100%;
  max-width: 1440px;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-inline: auto;
}

.story-band-light {
  background: var(--surface);
}

.story-band-dark {
  color: var(--white);
  background: var(--black);
}

.story-media {
  min-height: 620px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-band:first-of-type .story-media img {
  object-position: 48% center;
}

.story-band-dark .story-media img {
  object-position: 58% center;
}

.story-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 76px;
}

.story-step {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.story-band-dark .story-step {
  color: #b8d0ff;
}

.story-copy h3 {
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0;
}

.story-details {
  margin-bottom: 0;
}

.story-details > div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #cfcfcf;
}

.story-band-dark .story-details > div {
  border-color: #3a3a3a;
}

.story-details dt {
  font-size: 14px;
  font-weight: 800;
}

.story-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.story-band-dark .story-details dd {
  color: #cdcdcd;
}

.getting-started {
  padding-bottom: 104px;
  background: var(--surface-soft);
}

.stage-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.stage-tabs button {
  position: relative;
  min-height: 60px;
  padding: 0 16px;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.stage-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: transparent;
  content: "";
}

.stage-tabs button[aria-selected="true"]::after {
  background: var(--black);
}

.stage-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  min-height: 330px;
  margin-bottom: 36px;
}

.stage-panel article {
  padding-top: 12px;
}

.stage-panel img {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
}

.stage-panel h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.stage-panel ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--muted);
}

.stage-panel li {
  margin-bottom: 9px;
  padding-left: 3px;
}

.vehicle-care {
  padding: 100px 0 112px;
  color: var(--white);
  background: var(--black);
}

.section-intro-dark {
  padding: 0 0 64px;
}

.section-intro-dark > p:last-child {
  color: #cfcfcf;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.care-grid article {
  padding-top: 28px;
  border-top: 1px solid #404040;
}

.care-grid span {
  display: block;
  margin-bottom: 32px;
  color: #b8d0ff;
  font-size: 13px;
  font-weight: 800;
}

.care-grid h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.care-grid p {
  min-height: 104px;
  margin-bottom: 20px;
  color: #cfcfcf;
  line-height: 1.75;
}

.help-centre {
  padding-bottom: 112px;
  background: var(--white);
}

.faq-tools {
  padding: 28px;
  background: var(--surface);
}

.faq-search {
  display: flex;
  height: 58px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 18px;
  background: var(--white);
  border: 2px solid transparent;
}

.faq-search:focus-within {
  border-color: var(--blue);
}

.faq-search img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.faq-search input {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-filters button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #c8c8c8;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.faq-filters button:hover,
.faq-filters button.is-active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.faq-count {
  margin: 28px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 74px;
  padding: 24px 52px 24px 0;
  background-image: url("assets/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 20px 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background-image: url("assets/icons/chevron-up.svg");
}

.faq-answer {
  max-width: 820px;
  padding: 0 52px 28px 0;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.faq-empty {
  padding: 56px 0 20px;
  text-align: center;
}

.faq-empty h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.faq-empty p {
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  gap: 88px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-copy > p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 26px;
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.75;
}

.contact-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid #707070;
  font-size: 20px;
  font-weight: 700;
}

.contact-phone img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.contact-copy ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: #cfcfcf;
}

.contact-copy li {
  margin-bottom: 9px;
}

.contact-guide {
  display: grid;
  gap: 24px;
  padding: 40px;
  color: var(--black);
  background: var(--white);
}

.contact-guide-label {
  margin-bottom: -12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-guide h3 {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.25;
}

.contact-guide ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-guide li {
  display: grid;
  min-height: 58px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.contact-guide li span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.contact-guide .button {
  width: 100%;
}

.about-section {
  padding: 104px 0;
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.about-inner h2 {
  margin-bottom: 0;
  font-size: 44px;
}

.about-copy {
  align-self: end;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-copy .company-name {
  margin-bottom: 0;
  color: var(--black);
  font-weight: 700;
}

.site-footer {
  padding: 80px 0 42px;
  color: var(--white);
  background: var(--black);
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 28px;
  font-weight: 800;
}

.footer-help {
  display: block;
  width: fit-content;
  margin-bottom: 72px;
  padding-bottom: 4px;
  border-bottom: 1px solid #555555;
  font-size: 16px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin-bottom: 78px;
}

.footer-columns section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-columns h2 {
  margin-bottom: 22px;
  font-size: 18px;
}

.footer-columns a,
.footer-columns button {
  min-height: 42px;
  padding: 0;
  color: #e5e5e5;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}

.footer-columns a:hover,
.footer-columns button:hover,
.legal-links button:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
}

.footer-locale {
  display: flex;
  gap: 24px;
}

.footer-locale span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.footer-locale img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  filter: invert(1);
}

.footer-meta p {
  margin-bottom: 0;
  color: #bcbcbc;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 34px;
}

.footer-bottom > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-bottom p,
.footer-bottom a {
  margin-bottom: 0;
  color: #999999;
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links button {
  min-height: 44px;
  padding: 0;
  color: #bcbcbc;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.legal-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: min(720px, calc(100svh - 40px));
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 8px;
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.dialog-header button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
}

.dialog-header img {
  width: 22px;
  height: 22px;
}

.dialog-content {
  max-height: calc(100svh - 150px);
  padding: 28px;
  overflow-y: auto;
  color: var(--muted);
  line-height: 1.8;
}

.dialog-content p:last-child {
  margin-bottom: 0;
}

.foundation-card,
.foundation-citation {
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.foundation-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.foundation-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.foundation-test-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 4px 8px;
  color: #085a36;
  background: #dff5e8;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.foundation-citation {
  margin-top: 16px;
  border-left: 4px solid var(--blue);
}

.foundation-citation dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.foundation-citation dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.foundation-citation dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .desktop-nav a {
    padding-inline: 9px;
  }

  .location-label {
    display: none;
  }

  .story-copy {
    padding: 54px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-shade {
    width: 70%;
  }

  .hero h1 {
    font-size: 54px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .path-index {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .story-band {
    min-height: 540px;
  }

  .story-media {
    min-height: 540px;
  }

  .story-copy {
    padding: 44px;
  }

  .story-copy h3 {
    font-size: 32px;
  }

  .story-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stage-panel,
  .care-grid {
    gap: 32px;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .foundation-citation dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .content-width,
  .header-inner,
  .hero-inner,
  .trust-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .wordmark {
    margin-right: 16px;
    font-size: 21px;
  }

  .header-phone,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 680px;
    background-position: 58% center;
  }

  .hero-shade {
    width: 100%;
    background: rgba(0, 0, 0, 0.68);
  }

  .hero-inner {
    min-height: 680px;
    justify-content: flex-end;
    padding: 72px 0 56px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-lede {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-note {
    margin-top: 22px;
  }

  .trust-inner ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  .section-intro,
  .section-intro-wide {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .section-intro h2,
  .contact-copy h2,
  .about-inner h2 {
    font-size: 38px;
    line-height: 1.16;
  }

  .section-intro > p:last-child {
    font-size: 16px;
  }

  .path-index {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    overflow-x: visible;
  }

  .path-index li {
    display: grid;
    min-height: 64px;
    grid-template-columns: 48px 1fr;
    align-items: center;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-index li:last-child {
    border-bottom: 0;
  }

  .path-index span {
    margin-bottom: 0;
  }

  .story-band {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .story-copy {
    padding: 48px 24px 54px;
  }

  .story-copy h3 {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .story-band-dark .story-copy {
    order: 2;
  }

  .story-band-dark .story-media {
    order: 1;
  }

  .getting-started {
    padding-bottom: 72px;
  }

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

  .stage-tabs button {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
  }

  .stage-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }

  .stage-panel article {
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .stage-panel img {
    margin-bottom: 18px;
  }

  .vehicle-care {
    padding: 72px 0 80px;
  }

  .section-intro-dark {
    padding-top: 0;
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .care-grid p {
    min-height: 0;
  }

  .help-centre {
    padding-bottom: 80px;
  }

  .faq-tools {
    padding: 16px;
  }

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

  .faq-filters button {
    padding-inline: 10px;
  }

  .faq-item summary {
    min-height: 70px;
    padding: 21px 44px 21px 0;
    background-position: right 8px center;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 32px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-guide {
    padding: 24px;
  }

  .about-section {
    padding: 72px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-help {
    margin-bottom: 56px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 56px;
  }

  .footer-meta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-locale {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .legal-links {
    width: 100%;
    justify-content: space-between;
  }

  .dialog-header {
    padding: 0 20px;
  }

  .dialog-content {
    padding: 22px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .menu-backdrop,
  .hero-actions,
  .faq-tools,
  .contact-guide .button,
  .legal-links {
    display: none !important;
  }

  .hero {
    min-height: 0;
    color: var(--black);
    background: none;
  }

  .hero-shade {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    padding-block: 32px;
  }
}
