@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/oswald-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4f5f6;
  --surface: #ffffff;
  --ink: #0a0e13;
  --ink-soft: #4f5965;
  --dark: #0b0f14;
  --dark-2: #121820;
  --line: #d9dde2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #ef5b20;
  --accent-strong: #d9470f;
  --accent-pale: #fff0e9;
  --success: #137a45;
  --error: #b42318;
  --container: 1240px;
  --header-height: 82px;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 70px rgba(10, 14, 19, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid #ffb28f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

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

.section {
  padding: 128px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #58616c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.eyebrow.light {
  color: #aab3bd;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: #fff;
  transition: background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 14, 19, .94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  color: var(--accent);
}

.brand-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand-word {
  color: #fff;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1;
}

.brand-word span {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.desktop-nav a {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 2px;
  background: var(--accent);
  content: "";
  transition: left .2s ease, right .2s ease;
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 800;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(239, 91, 32, .16);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .98) 0%, rgba(5, 8, 12, .85) 37%, rgba(5, 8, 12, .2) 72%, rgba(5, 8, 12, .25) 100%),
    linear-gradient(0deg, rgba(5, 8, 12, .72) 0%, transparent 44%),
    url("../images/carfix-hero.webp") center / cover no-repeat;
  transform: scale(1.045);
  animation: hero-settle 1.8s var(--ease) both;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.hero-glow {
  position: absolute;
  top: 18%;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(239, 91, 32, .13);
  filter: blur(90px);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  padding-top: 112px;
  padding-bottom: 100px;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, .66);
  opacity: 1;
  animation: rise-in .75s .25s var(--ease) both;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(62px, 8.2vw, 126px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .91;
  text-transform: uppercase;
}

.hero h1 > * {
  opacity: 1;
  animation: rise-in .9s var(--ease) both;
}

.outline-word {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .78);
  animation-delay: .12s;
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.6vw, 20px);
  opacity: 1;
  animation: rise-in .8s .35s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  opacity: 1;
  animation: rise-in .8s .45s var(--ease) both;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 0 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--accent-strong);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .1);
}

.hero-meta {
  display: flex;
  gap: 54px;
  margin-top: 55px;
  opacity: 1;
  animation: rise-in .8s .58s var(--ease) both;
}

.hero-meta > div {
  position: relative;
  padding-left: 18px;
}

.hero-meta > div::before {
  position: absolute;
  inset: 3px auto 3px 0;
  width: 2px;
  background: rgba(239, 91, 32, .78);
  content: "";
}

.meta-label {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .43);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 13px;
  font-weight: 700;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 5vw, 80px);
  bottom: 68px;
  width: 120px;
  color: rgba(255, 255, 255, .7);
}

.hero-badge svg {
  overflow: visible;
}

.hero-badge text {
  fill: currentColor;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.hero-badge textPath {
  animation: badge-spin 18s linear infinite;
  transform-origin: center;
}

.badge-bolt {
  fill: var(--accent);
  stroke: none;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 54%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue span {
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.scroll-cue span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.service-ticker {
  overflow: hidden;
  border-block: 1px solid #20262e;
  background: #11171e;
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 66px;
}

.section-heading h2,
.aqua-copy h2,
.trust-copy h2,
.faq-copy h2,
.contact-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
  text-transform: uppercase;
}

.section-heading h2 em,
.aqua-copy h2 em,
.trust-copy h2 em,
.faq-copy h2 em,
.contact-info h2 em {
  color: var(--accent);
  font-style: normal;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 17px;
}

.services {
  position: relative;
}

.services::before {
  position: absolute;
  top: 0;
  right: 4%;
  color: rgba(10, 14, 19, .025);
  content: "CARFIX";
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  pointer-events: none;
}

.services-intro {
  max-width: 470px;
  margin: 0 0 2px;
}

.services-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.vehicle-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
  padding: 6px 12px;
  color: #4f5965;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .925fr .925fr;
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 448px;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  padding: 28px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  z-index: 2;
  border-color: #b7bec6;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(10, 14, 19, .08);
  border-radius: 50%;
  content: "";
  transition: transform .5s var(--ease);
}

.service-card:hover::after {
  transform: scale(1.18);
}

.service-card-large {
  grid-row: span 2;
  min-height: 912px;
  background: var(--dark);
  color: #fff;
}

.service-card-large::before {
  position: absolute;
  inset: 0;
  opacity: .3;
  background:
    radial-gradient(circle at 85% 20%, rgba(239, 91, 32, .42), transparent 26%),
    linear-gradient(135deg, transparent 65%, rgba(255, 255, 255, .035) 65%);
  content: "";
}

.service-card-accent {
  background: var(--accent);
  color: #fff;
}

.service-card-accent::after {
  border-color: rgba(255, 255, 255, .23);
}

.service-card-wide {
  grid-column: 1 / -1;
  min-height: 318px;
  background: #e8ebee;
}

.service-card-head {
  display: flex;
  min-height: 64px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-number {
  color: #7b858f;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
}

.service-card-accent .service-number,
.service-card-large .service-number {
  color: rgba(255, 255, 255, .5);
}

.service-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card-large .service-icon {
  width: 76px;
  height: 76px;
}

.service-card-accent .service-icon,
.service-card-large .service-icon {
  stroke: #fff;
}

.service-card-body {
  display: flex;
  flex-direction: column;
}

.service-card-large .service-card-body {
  margin-block: auto;
}

.service-kicker {
  margin: 0 0 12px;
  color: #777f88;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-card-large h3 {
  max-width: 430px;
  font-size: clamp(40px, 4vw, 58px);
}

.service-summary {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-card-large .service-kicker,
.service-card-accent .service-kicker {
  color: rgba(255, 255, 255, .64);
}

.service-card-large .service-summary,
.service-card-accent .service-summary {
  color: rgba(255, 255, 255, .7);
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-list-double {
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.service-list li {
  position: relative;
  padding-left: 17px;
  color: #27303a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.service-list li::before {
  position: absolute;
  top: .55em;
  left: 1px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

.service-card-large .service-list li,
.service-card-accent .service-list li {
  color: rgba(255, 255, 255, .84);
}

.service-card-large .service-list li::before,
.service-card-accent .service-list li::before {
  background: #fff;
}

.service-symptom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 20px;
}

.service-symptom span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-symptom p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.service-card-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  align-self: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-top: auto;
  border: 1px solid rgba(10, 14, 19, .16);
  padding: 0 14px 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.service-card-large .service-card-link,
.service-card-accent .service-card-link {
  border-color: rgba(255, 255, 255, .28);
}

.service-card-link:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.service-card-large .service-card-link:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.service-card-accent .service-card-link:hover {
  border-color: #fff;
  background: #fff;
  color: var(--accent-strong);
}

.service-card-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-aircon,
.service-diagnostic {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(390px, 1.35fr) auto;
  align-items: center;
  gap: 54px;
}

.service-aircon {
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 91, 32, .24), transparent 26%),
    linear-gradient(125deg, rgba(255, 255, 255, .045), transparent 54%),
    var(--dark);
  color: #fff;
}

.service-aircon::before {
  position: absolute;
  right: 21%;
  bottom: -58px;
  color: rgba(255, 255, 255, .025);
  content: "A/C";
  font-family: var(--font-display);
  font-size: 190px;
  font-weight: 700;
  line-height: 1;
}

.service-aircon::after {
  border-color: rgba(255, 255, 255, .14);
}

.service-diagnostic {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .22)),
    #e8ebee;
}

.service-aircon .service-card-head,
.service-diagnostic .service-card-head {
  min-height: 58px;
  margin-bottom: 18px;
}

.service-aircon .service-icon,
.service-diagnostic .service-icon {
  width: 54px;
  height: 54px;
}

.service-aircon h3,
.service-diagnostic h3 {
  margin-bottom: 10px;
  font-size: clamp(31px, 3vw, 43px);
}

.service-aircon .service-number {
  color: rgba(255, 255, 255, .5);
}

.service-aircon .service-icon {
  stroke: #fff;
}

.service-aircon .service-kicker {
  color: rgba(255, 255, 255, .64);
}

.service-aircon .service-summary {
  color: rgba(255, 255, 255, .72);
}

.service-process {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(10, 14, 19, .12);
  padding: 13px 0;
}

.service-process li:last-child {
  border-bottom: 1px solid rgba(10, 14, 19, .12);
}

.service-process > li > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

.service-process strong,
.service-process small {
  display: block;
}

.service-process strong {
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.4;
}

.service-process small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.service-aircon .service-process li {
  border-color: rgba(255, 255, 255, .16);
}

.service-aircon .service-process > li > span {
  color: var(--accent);
}

.service-aircon .service-process strong {
  color: #fff;
}

.service-aircon .service-process small {
  color: rgba(255, 255, 255, .64);
}

.service-card-link-accent {
  min-height: 54px;
  align-self: end;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.service-card-link-accent:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.aquablast {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.aquablast::after {
  position: absolute;
  right: -5%;
  bottom: -15%;
  color: rgba(255, 255, 255, .018);
  content: "AQUA";
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 700;
  line-height: .8;
}

.aquablast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 96px;
}

.aqua-visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #151c24;
}

.aqua-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, .12), transparent 44%, rgba(5, 8, 12, .78)),
    linear-gradient(90deg, rgba(5, 8, 12, .2), transparent 34%);
  content: "";
  pointer-events: none;
}

.aqua-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(.88) contrast(1.03);
  transform: scale(1.01);
  transition: transform .8s var(--ease);
}

.aqua-visual:hover .aqua-photo {
  transform: scale(1.045);
}

.aqua-photo-tag,
.aqua-visual figcaption {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.aqua-photo-tag {
  top: 22px;
  left: 22px;
  background: var(--accent);
  padding: 8px 11px;
  color: #fff;
}

.aqua-visual figcaption {
  right: 22px;
  bottom: 20px;
  margin: 0;
  color: #fff;
}

.aqua-copy h2 {
  font-size: clamp(55px, 6vw, 88px);
}

.aqua-copy .lead {
  max-width: 550px;
  margin: 28px 0 0;
  color: #abb4bd;
  font-size: 18px;
}

.check-list {
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 0;
  color: #e6e9ec;
}

.check-list li span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
}

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

.text-link span {
  color: var(--accent);
  font-size: 20px;
}

.process {
  background: #fff;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 78px 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 34px 0;
  transition: padding-left .25s var(--ease), background-color .25s ease;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li:hover {
  background: linear-gradient(90deg, var(--accent-pale), transparent 70%);
  padding-left: 18px;
}

.process-index {
  color: #89929d;
  font-family: var(--font-display);
  font-size: 14px;
}

.process-icon {
  display: grid;
  width: 56px;
  height: 56px;
  background: #f0f2f4;
  place-items: center;
}

.process-icon svg {
  width: 25px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-list h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.trust {
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
}

.trust-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.trust-copy p:last-child {
  max-width: 480px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.trust-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(-8px);
}

.trust-card::after {
  position: absolute;
  right: -50px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border: 34px solid #f2f4f5;
  border-radius: 50%;
  content: "";
}

.trust-card > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 52px 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-card p {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq {
  position: relative;
  overflow: hidden;
  background: #e8ebee;
}

.faq::before {
  position: absolute;
  right: -2%;
  bottom: -8%;
  color: rgba(10, 14, 19, .025);
  content: "FAQ";
  font-family: var(--font-display);
  font-size: 24vw;
  font-weight: 700;
  line-height: .8;
  pointer-events: none;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 96px;
}

.faq-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.faq-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.faq-copy .text-link {
  margin-top: 30px;
}

.faq-list {
  border-top: 1px solid rgba(10, 14, 19, .18);
}

.faq-item {
  border-bottom: 1px solid rgba(10, 14, 19, .18);
}

.faq-item summary {
  display: grid;
  min-height: 104px;
  grid-template-columns: 46px 1fr 48px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
}

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

.faq-index {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

.faq-question {
  max-width: 670px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .2s ease;
}

.faq-toggle {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(10, 14, 19, .2);
  place-items: center;
  transition: border-color .2s ease, background-color .2s ease;
}

.faq-toggle i {
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition: opacity .2s ease, transform .25s var(--ease);
}

.faq-toggle i:last-child {
  transform: rotate(90deg);
}

.faq-item summary:hover .faq-question,
.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-item summary:hover .faq-toggle,
.faq-item[open] .faq-toggle {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.faq-item[open] .faq-toggle i:last-child {
  opacity: 0;
  transform: rotate(180deg);
}

.faq-answer {
  max-width: 760px;
  margin-left: 66px;
  padding: 0 70px 32px 0;
}

.faq-answer p {
  margin: 0;
  color: #424c57;
  font-size: 15px;
  line-height: 1.75;
}

.faq-answer a {
  border-bottom: 1px solid var(--accent);
  color: var(--accent-strong);
  font-weight: 800;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.contact::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.contact-info h2 {
  font-size: clamp(58px, 6.5vw, 92px);
}

.contact-phone {
  display: inline-block;
  margin-top: 42px;
  border-bottom: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.3;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 52px;
}

.contact-details > div {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}

.contact-details span,
.footer-label {
  display: block;
  margin-bottom: 8px;
  color: #8e99a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 14px;
}

.map-link {
  display: grid;
  grid-template-columns: 50px 1fr 24px;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  border: 1px solid var(--line-dark);
  padding: 16px;
  transition: border-color .2s ease, background .2s ease;
}

.map-link:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
}

.map-pin {
  display: grid;
  width: 50px;
  height: 50px;
  background: var(--accent);
  place-items: center;
}

.map-pin svg {
  width: 24px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.map-link strong,
.map-link small {
  display: block;
}

.map-link strong {
  font-size: 14px;
}

.map-link small {
  color: #909ba6;
  font-size: 12px;
}

.map-arrow {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.booking-card {
  background: #fff;
  color: var(--ink);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}

.booking-head > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-head h2 {
  margin: 13px 0 36px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  font-weight: 800;
}

.form-field label span {
  color: #89929b;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ccd2d8;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 94px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 91, 32, .13);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #959da6;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: #626c77;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.4;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.consent a {
  border-bottom: 1px solid var(--accent);
  color: var(--accent-strong);
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-message {
  display: grid;
  gap: 4px;
  margin: -12px 0 24px;
  border-left: 3px solid;
  padding: 12px 14px;
  font-size: 13px;
}

.form-message span {
  color: #5c6670;
}

.form-success {
  border-color: var(--success);
  background: #ecf9f1;
}

.form-error {
  border-color: var(--error);
  background: #fff1f0;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
}

.site-footer {
  border-top: 1px solid #1d242c;
  background: #080b0f;
  color: #fff;
  padding: 74px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr 1fr;
  gap: 50px;
}

.brand-footer {
  min-height: auto;
}

.site-footer p {
  margin: 18px 0 0;
  color: #7f8994;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a:not(.brand) {
  min-height: 28px;
  color: #c5cbd1;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-cta > span:first-child {
  color: #7f8994;
  font-size: 12px;
}

.footer-cta a {
  border-bottom: 1px solid var(--accent);
  font-family: var(--font-display);
  font-size: 23px !important;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #1d242c;
  margin-top: 58px;
  padding-top: 20px;
  color: #6f7984;
  font-size: 11px;
}

.legal-page {
  background: #fff;
}

.legal-header {
  background: var(--dark);
  color: #fff;
}

.legal-header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: border-color .2s ease, background-color .2s ease;
}

.legal-back:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.legal-back svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 112px 0 96px;
}

.legal-hero::after {
  position: absolute;
  right: -2%;
  bottom: -18%;
  color: rgba(10, 14, 19, .025);
  content: "CARFIX";
  font-family: var(--font-display);
  font-size: 19vw;
  font-weight: 700;
  line-height: .8;
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .95;
  text-transform: uppercase;
}

.legal-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.legal-hero .container > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-updated {
  display: block;
  margin-top: 30px;
  color: #707a84;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-content {
  padding: 104px 0 124px;
}

.legal-grid {
  display: grid;
  grid-template-columns: .38fr 1fr;
  align-items: start;
  gap: 96px;
}

.legal-aside {
  position: sticky;
  top: 32px;
  display: grid;
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}

.legal-aside span {
  margin-bottom: 12px;
  color: #737d87;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-aside strong {
  font-size: 15px;
  line-height: 1.6;
}

.legal-aside a {
  min-height: 44px;
  align-content: center;
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
}

.legal-article {
  border-top: 1px solid var(--line);
}

.legal-article > section {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) 1fr;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.legal-article h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-article p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.legal-article p a {
  border-bottom: 1px solid var(--accent);
  color: var(--accent-strong);
  font-weight: 800;
}

.legal-footer {
  background: var(--dark);
  color: #8f98a2;
  padding: 26px 0;
  font-size: 12px;
}

.legal-footer .container {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer a {
  color: #fff;
  font-weight: 800;
}

.legal-footer a:hover {
  color: var(--accent);
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise-in {
  from { opacity: 1; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-settle {
  from { opacity: 1; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.045); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

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

@keyframes scroll-line {
  0% { transform: translateX(-105%); }
  50%, 100% { transform: translateX(105%); }
}

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

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    padding: 13px;
    cursor: pointer;
    place-content: center;
    gap: 7px;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(10, 14, 19, .98);
    transition: max-height .35s var(--ease), padding .35s var(--ease);
  }

  .mobile-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding: 20px;
  }

  .mobile-nav a {
    display: flex;
    min-height: 55px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: var(--font-display);
    font-size: 23px;
    text-transform: uppercase;
  }

  .mobile-nav .mobile-phone {
    margin-top: 15px;
    border: 0;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 16px;
  }

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

  .service-card-large {
    min-height: 912px;
  }

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .service-aircon,
  .service-diagnostic {
    grid-template-columns: minmax(250px, .85fr) 1.15fr;
    gap: 34px 46px;
  }

  .service-aircon .service-card-link,
  .service-diagnostic .service-card-link {
    grid-column: 2;
    justify-self: start;
  }

  .aquablast-grid,
  .contact-grid {
    gap: 55px;
  }

  .trust-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 55px;
  }

  .legal-grid {
    gap: 55px;
  }
}

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

  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    gap: 10px;
  }

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

  .brand-word {
    font-size: 23px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(5, 8, 12, .98) 0%, rgba(5, 8, 12, .73) 50%, rgba(5, 8, 12, .25) 100%),
      url("../images/carfix-hero.webp") 64% center / cover no-repeat;
  }

  .hero-content {
    flex: 0 0 calc(100vw - 28px);
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.8vw, 58px);
    line-height: .95;
  }

  .outline-word {
    -webkit-text-stroke-width: 1px;
  }

  .hero-copy {
    max-width: 520px;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 16px;
    margin-top: 35px;
  }

  .hero-badge,
  .scroll-cue {
    display: none;
  }

  .ticker-track {
    padding: 16px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .aqua-copy h2,
  .trust-copy h2,
  .faq-copy h2,
  .contact-info h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .section-heading > p,
  .services-intro > p {
    font-size: 15px;
  }

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

  .service-card,
  .service-card-large,
  .service-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 24px;
  }

  .service-card {
    gap: 22px;
  }

  .service-card-large .service-card-body {
    margin-block: 12px;
  }

  .service-card-large h3 {
    font-size: clamp(39px, 12vw, 50px);
  }

  .service-list-double {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .service-symptom {
    margin-top: 24px;
  }

  .service-aircon,
  .service-diagnostic {
    display: flex;
    gap: 24px;
  }

  .service-aircon .service-card-link,
  .service-diagnostic .service-card-link {
    align-self: flex-start;
  }

  .service-process {
    width: 100%;
  }

  .aquablast-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .aquablast-grid {
    gap: 46px;
  }

  .aqua-visual {
    order: 2;
  }

  .trust-copy {
    position: static;
  }

  .faq-copy {
    position: static;
  }

  .faq-grid {
    gap: 46px;
  }

  .faq-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 15px;
  }

  .faq-item summary {
    min-height: 92px;
    grid-template-columns: 32px 1fr 44px;
    gap: 10px;
    padding: 16px 0;
  }

  .faq-question {
    font-size: clamp(21px, 6.7vw, 26px);
  }

  .faq-toggle {
    width: 44px;
    height: 44px;
  }

  .faq-answer {
    margin-left: 42px;
    padding: 0 0 28px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .legal-header-inner {
    min-height: 70px;
  }

  .legal-back {
    width: 48px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .legal-back svg {
    color: #fff;
  }

  .legal-hero {
    padding: 78px 0 70px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .legal-hero .container > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 16px;
  }

  .legal-content {
    padding: 76px 0 92px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .legal-aside {
    position: static;
  }

  .legal-article > section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .legal-article h2 {
    font-size: 23px;
  }

  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .process-list li {
    grid-template-columns: 42px 54px 1fr;
    gap: 14px;
  }

  .process-list li:hover {
    padding-left: 6px;
  }

  .process-icon {
    width: 48px;
    height: 48px;
  }

  .contact-grid {
    gap: 58px;
  }

  .contact-details {
    gap: 15px;
  }

  .contact-phone {
    font-size: 34px;
  }

  .booking-card {
    margin-inline: -4px;
  }

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

  .footer-grid > div:first-child,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
    margin-top: 42px;
    padding-bottom: 70px;
  }

  .mobile-call {
    position: fixed;
    z-index: 900;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-call svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 44px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .map-link {
    grid-template-columns: 46px 1fr;
  }

  .map-arrow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
