:root {
  --display-font: "Inter Tight", Inter, Arial, sans-serif;
  --text-font: Inter, Arial, sans-serif;
  --ink: #15171b;
  --muted: #5b6470;
  --line: #d9dee5;
  --paper: #f6f7f9;
  --white: #ffffff;
  --red: #cf2e2e;
  --teal: #0f8f8a;
  --steel: #2f3a45;
  --shadow: 0 20px 50px rgba(21, 23, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--text-font);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(15, 17, 20, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 62px;
  height: 48px;
  overflow: hidden;
}

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

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

.brand strong {
  font-family: var(--display-font);
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--white);
}

.header-call {
  position: relative;
  min-width: max-content;
  padding: 11px 16px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(207, 46, 46, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #070d0f;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 58%, rgba(15, 143, 138, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(5, 9, 12, 0.92) 0%, rgba(5, 9, 12, 0.72) 42%, rgba(5, 9, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 9, 12, 0.72) 0%, rgba(5, 9, 12, 0.05) 54%);
}

.hero-content {
  position: relative;
  width: min(650px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 128px);
  padding-top: 74px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.work-band h2,
.find-us-section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 0.98;
}

.hero h1 span {
  color: #14c7bf;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 24px;
  padding: 5px 13px;
  border: 1px solid rgba(110, 216, 212, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #2ee6df;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-location::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #13c8bd;
  box-shadow: 0 0 18px rgba(19, 200, 189, 0.7);
}

.hero-copy {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-review {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 8vw, 126px);
  top: 50%;
  width: min(292px, calc(100% - 36px));
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-28%);
}

.hero-review > span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-review strong {
  display: block;
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
}

.hero-review strong small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-review div {
  margin-top: 8px;
  color: #f6b31a;
  letter-spacing: 0;
}

.hero-review p {
  margin: 12px 0 14px;
  color: #48515d;
  line-height: 1.5;
}

.hero-review > small {
  color: var(--ink);
  font-weight: 800;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(207, 46, 46, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button.whatsapp {
  color: var(--white);
  background: #0f8f8a;
  box-shadow: 0 10px 22px rgba(15, 143, 138, 0.18);
}

.header-call:hover,
.header-call:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.header-call:hover,
.header-call:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: #bd2929;
  box-shadow: 0 14px 26px rgba(207, 46, 46, 0.24);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.button.whatsapp:hover,
.button.whatsapp:focus-visible {
  background: #0d7d79;
  box-shadow: 0 14px 26px rgba(15, 143, 138, 0.24);
}

.header-call:active,
.button:active {
  transform: translateY(-1px);
}

.header-call:focus-visible,
.button:focus-visible,
.contact-methods a:focus-visible {
  outline: 3px solid rgba(15, 143, 138, 0.42);
  outline-offset: 3px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: absolute;
  z-index: 3;
  left: clamp(18px, 8vw, 128px);
  bottom: clamp(26px, 5vw, 58px);
  width: min(620px, calc(100% - 36px));
  background: transparent;
  border: 0;
}

.trust-strip div {
  position: relative;
  min-height: 64px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(36, 38, 43, 0.78);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.trust-strip div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 38px;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), var(--red));
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 14px;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .hero-content {
    width: min(560px, calc(100% - 36px));
    margin-left: clamp(18px, 5vw, 72px);
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(44px, 5vw, 58px);
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-review {
    right: clamp(18px, 4vw, 48px);
    width: 258px;
    padding: 22px;
  }

  .trust-strip {
    left: clamp(18px, 5vw, 72px);
    width: min(560px, calc(100% - 36px));
  }
}

.section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0;
}

.intro-section {
  width: 100%;
  display: block;
  padding: clamp(76px, 9vw, 116px) clamp(18px, 4vw, 54px);
  text-align: center;
  background: var(--white);
}

.intro-section .section-copy,
.intro-section > p {
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.intro-section .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(110, 216, 212, 0.3);
  color: #007d78;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.intro-section h2 {
  max-width: none;
  margin-top: 18px;
  font-size: clamp(32px, 4.4vw, 46px);
}

.section h2,
.work-band h2,
.find-us-section h2,
.contact-section h2 {
  max-width: 800px;
  font-size: clamp(32px, 5vw, 56px);
}

.intro-section > p,
.find-us-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.intro-section > p {
  margin-top: 18px;
  font-size: 17px;
}

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

.services-section {
  max-width: 1232px;
}

.services-section .section-heading {
  margin-bottom: 40px;
}

.services-section .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(110, 216, 212, 0.3);
  color: #007d78;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.services-section h2 {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 48px);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 24px;
  background: var(--white);
  border: 1px solid #d6dde5;
  border-radius: 8px;
  box-shadow: none;
  --icon-bg: #d9f7f6;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.service-card:nth-child(1) {
  --icon-bg: #d9f7f6;
}

.service-card:nth-child(2) {
  --icon-bg: #d9f7f6;
}

.service-card:nth-child(3) {
  --icon-bg: #d9f7f6;
}

.service-card:nth-child(4) {
  --icon-bg: #d9f7f6;
}

.service-card:nth-child(5) {
  --icon-bg: #d9f7f6;
}

.service-card:nth-child(6) {
  --icon-bg: #d9f7f6;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  background: #fbfdfd;
  border-color: rgba(15, 143, 138, 0.45);
  box-shadow: 0 18px 38px rgba(21, 23, 27, 0.1);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card:hover .icon,
.service-card:focus-within .icon {
  background: #ccf3f2;
  transform: translateY(-2px);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--icon-bg);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.icon svg {
  width: 29px;
  height: 29px;
}

.badge-icon path,
.badge-icon rect,
.badge-icon circle {
  transition: transform 180ms ease, opacity 180ms ease;
}

.wrench-badge .badge-main,
.panel-badge .badge-main {
  fill: #5f6ee8;
}

.wrench-badge .wrench-dot {
  fill: #9fe7e4;
}

.car-badge .badge-main {
  fill: #2f80ed;
}

.car-badge .badge-window {
  fill: #b9e7ff;
}

.car-badge .badge-tyre {
  fill: #384554;
}

.palette-badge .badge-main {
  fill: #ffb4c7;
}

.paint-one {
  fill: #ff6b6b;
}

.paint-two {
  fill: #f6c744;
}

.paint-three {
  fill: #28b8a8;
}

.paint-four {
  fill: #7c5cff;
}

.panel-badge .panel-window {
  fill: #bac2ff;
}

.panel-badge .panel-gap,
.panel-badge .panel-highlight {
  fill: none;
  stroke: #efe8ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.barrier-badge .badge-main {
  fill: #f7c948;
}

.barrier-badge .barrier-stripe,
.barrier-badge .barrier-leg {
  fill: none;
  stroke: #2f3a45;
  stroke-linecap: round;
  stroke-width: 2;
}

.check-badge .badge-main {
  fill: #29c77f;
}

.check-badge .check-mark,
.check-badge .badge-shine {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card:hover .badge-icon .badge-main,
.service-card:focus-within .badge-icon .badge-main {
  transform: translateY(-0.5px);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.25;
}

.service-card p,
.process-list span {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.service-card p {
  font-size: 14px;
}

.quote-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.quote-link:hover,
.quote-link:focus-visible {
  color: var(--red);
  transform: translateX(3px);
}

.work-band {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 54px);
  background: var(--white);
  color: var(--ink);
}

.work-band .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(110, 216, 212, 0.3);
  color: #007d78;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.work-band .section-heading,
.work-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.work-band h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 48px);
}

.work-intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.work-panel {
  position: relative;
  min-height: 385px;
  display: flex;
  align-items: end;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #071013;
  box-shadow: 0 18px 38px rgba(21, 23, 27, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
  transform-style: preserve-3d;
}

.work-panel:hover,
.work-panel:focus-visible {
  transform: translateY(-6px);
  filter: saturate(1.03);
  box-shadow: 0 30px 70px rgba(21, 23, 27, 0.24);
}

.work-panel:focus-visible {
  outline: 3px solid rgba(110, 216, 212, 0.62);
  outline-offset: 4px;
}

.work-face {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  backface-visibility: hidden;
  transition: transform 360ms ease, opacity 180ms ease;
}

.work-front {
  transform: rotateY(0deg);
  padding: 0;
}

.work-front::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 12, 0.03) 30%, rgba(5, 9, 12, 0.84) 100%),
    linear-gradient(90deg, rgba(5, 9, 12, 0.36), rgba(5, 9, 12, 0.05));
}

.work-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.01);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms ease;
}

.work-panel:hover .work-front img,
.work-panel:focus-visible .work-front img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.05);
}

.work-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.work-back {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  transform: rotateY(180deg);
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(15, 143, 138, 0.08), rgba(207, 46, 46, 0.04)),
    #14191e;
  padding: 28px 24px 24px;
}

.work-panel.is-flipped .work-front {
  transform: rotateY(180deg);
  opacity: 0;
}

.work-panel.is-flipped .work-back {
  transform: rotateY(0deg);
  opacity: 1;
}

.work-face strong {
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
}

.work-face small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.work-copy small,
.work-back > small {
  color: #6ed8d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-back ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.work-back li {
  position: relative;
  padding-left: 18px;
}

.work-back li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #13c8bd;
  transform: translateY(-50%);
}

.work-face em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  transition: color 220ms ease, transform 220ms ease;
}

.work-face em::after {
  content: "↻";
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  transition: transform 260ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.work-panel:hover .work-front em,
.work-panel:focus-visible .work-front em {
  color: #31d7ff;
  transform: translateX(2px);
}

.work-panel:hover .work-front em::after,
.work-panel:focus-visible .work-front em::after {
  color: #071013;
  border-color: #31d7ff;
  background: #31d7ff;
  transform: rotate(35deg);
}

.work-back em {
  margin-top: auto;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 7px;
  color: #071013;
  background: #13c8bd;
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 800;
}

.work-back em::after {
  order: -1;
  width: auto;
  height: auto;
  border: 0;
  color: currentColor;
  background: transparent;
  font-size: 14px;
}

.work-panel:hover .work-back em,
.work-panel:focus-visible .work-back em {
  color: #071013;
  transform: translateY(-1px);
  background: #31d7ff;
}

.gallery-section {
  overflow: hidden;
  padding: clamp(74px, 9vw, 118px) 0 clamp(80px, 9vw, 124px);
  background: #070d0f;
  color: var(--white);
}

.gallery-section .section-heading,
.gallery-note {
  width: min(1080px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.gallery-section .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(15, 143, 138, 0.42);
  color: #2ee6df;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.gallery-section h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(34px, 4.8vw, 52px);
}

.gallery-slider {
  position: relative;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 26px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  scroll-margin-top: 96px;
  width: min(1080px, calc(100vw - 36px));
  height: clamp(380px, 42vw, 520px);
  flex: 0 0 auto;
  scroll-snap-align: center;
  overflow: hidden;
  background: #111820;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-4px);
  filter: saturate(1.04);
  border-color: rgba(110, 216, 212, 0.34);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1b2026;
}

.gallery-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 13, 15, 0), rgba(7, 13, 15, 0.88));
}

.gallery-card span {
  display: block;
  margin-bottom: 8px;
  color: #2ee6df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.gallery-card p,
.gallery-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.gallery-note {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 58, 69, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(21, 23, 27, 0.18);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
  background: #f8fafc;
  box-shadow: 0 20px 38px rgba(21, 23, 27, 0.22);
}

.gallery-arrow:focus-visible {
  outline: 3px solid rgba(15, 143, 138, 0.42);
  outline-offset: 3px;
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.process-section {
  width: min(1120px, calc(100% - 36px));
  text-align: center;
}

.process-section .section-heading {
  margin-bottom: 46px;
}

.process-section .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(110, 216, 212, 0.3);
  color: #007d78;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.process-section h2 {
  max-width: none;
  margin: 18px auto 0;
  font-size: clamp(32px, 4vw, 44px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
  text-align: left;
}

.process-list li {
  position: relative;
  min-height: 204px;
  padding: 34px 34px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--red));
  opacity: 0;
  transition: opacity 180ms ease;
}

.process-list li:hover,
.process-list li:focus-within {
  transform: translateY(-6px);
  border-color: rgba(15, 143, 138, 0.34);
  box-shadow: 0 20px 38px rgba(21, 23, 27, 0.1);
}

.process-list li:hover::after,
.process-list li:focus-within::after {
  opacity: 1;
}

.process-list li::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 10px;
  color: rgba(19, 200, 189, 0.32);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.process-list li:hover::before,
.process-list li:focus-within::before {
  transform: translateY(-2px);
  color: rgba(19, 200, 189, 0.48);
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
}

.testimonial-band {
  overflow: hidden;
  padding: clamp(66px, 9vw, 110px) 0;
  background: #20262d;
  color: var(--white);
}

.reviews-heading {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.reviews-heading h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.04;
}

.testimonial-band .eyebrow {
  color: #6ed8d4;
}

.google-rating {
  min-width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.google-rating strong,
.google-rating span,
.google-rating small {
  display: block;
}

.google-rating strong {
  font-size: 40px;
  line-height: 1;
}

.google-rating span,
.review-stars {
  color: #f5c84c;
  letter-spacing: 0;
}

.google-rating small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.review-link:hover,
.review-link:focus-visible {
  transform: translateY(-2px);
  background: #b92525;
  box-shadow: 0 16px 28px rgba(207, 46, 46, 0.28);
}

.review-link:focus-visible {
  outline: 3px solid rgba(110, 216, 212, 0.42);
  outline-offset: 3px;
}

.review-slider {
  position: relative;
  width: 100%;
}

.review-slider::before,
.review-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(24px, 8vw, 130px);
  pointer-events: none;
}

.review-slider::before {
  left: 0;
  background: linear-gradient(90deg, #20262d, rgba(32, 38, 45, 0));
}

.review-slider::after {
  right: 0;
  background: linear-gradient(270deg, #20262d, rgba(32, 38, 45, 0));
}

.review-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 8px 18px 12px;
  animation: review-slide 32s linear infinite;
}

.review-slider:hover .review-track,
.review-slider:focus-within .review-track {
  animation-play-state: paused;
}

.review-card {
  width: min(360px, 82vw);
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.review-stars {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.review-card span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes review-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.contact-section {
  width: 100%;
  display: block;
  padding: clamp(76px, 9vw, 116px) clamp(18px, 4vw, 54px);
  background: #eef2f6;
}

.find-us-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button.location-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(21, 23, 27, 0.06);
}

.button.location-secondary:hover,
.button.location-secondary:focus-visible {
  border-color: rgba(15, 143, 138, 0.45);
  background: #f8fafc;
  box-shadow: 0 12px 24px rgba(21, 23, 27, 0.1);
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-preview {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 143, 138, 0.12), transparent 28%),
    linear-gradient(135deg, #eef2f6, #dce3eb);
}

.map-preview::before,
.map-preview::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(47, 58, 69, 0.08);
}

.map-preview::before {
  width: 130%;
  height: 34px;
  left: -15%;
  top: 54%;
  transform: rotate(-16deg);
}

.map-preview::after {
  width: 34px;
  height: 140%;
  left: 44%;
  top: -20%;
  transform: rotate(12deg);
}

.map-road {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(47, 58, 69, 0.12);
}

.map-road.main {
  width: 130%;
  height: 10px;
  left: -10%;
  top: 41%;
  transform: rotate(23deg);
}

.map-road.cross {
  width: 10px;
  height: 120%;
  left: 61%;
  top: -10%;
  transform: rotate(-18deg);
}

.map-road.side {
  width: 80%;
  height: 8px;
  right: -16%;
  bottom: 24%;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 8px solid var(--red);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: translate(-50%, -70%) rotate(-45deg);
  box-shadow: 0 16px 28px rgba(207, 46, 46, 0.25);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--red);
}

.location-card dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.location-card dl div {
  padding: 20px 22px;
  background: var(--white);
}

.location-card dt {
  margin-bottom: 6px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.location-card a {
  color: var(--ink);
}

.location-card a:hover,
.location-card a:focus-visible {
  color: var(--red);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  width: min(860px, 100%);
  margin: 22px auto 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-methods a {
  width: fit-content;
  border-radius: 6px;
  color: var(--teal);
  transition: transform 180ms ease, color 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  color: var(--red);
  transform: translateY(-2px);
}

.contact-copy {
  width: min(860px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(207, 46, 46, 0.11);
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-section h2 {
  max-width: none;
  margin: 18px auto 0;
  font-size: clamp(34px, 4.6vw, 48px);
}

.contact-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(21, 23, 27, 0.08);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #cbd2dc;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input[type="file"] {
  min-height: auto;
  padding: 10px;
  color: var(--muted);
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 16px;
  padding: 11px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #13c8bd;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  box-shadow: none;
}

input[type="file"]::file-selector-button:hover {
  transform: translateY(-1px);
  background: #10b2a8;
  box-shadow: 0 8px 16px rgba(19, 200, 189, 0.16);
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

input.field-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(207, 46, 46, 0.12);
}

textarea {
  resize: vertical;
}

.form-alert {
  display: none;
  padding: 12px 14px;
  border: 1px solid rgba(207, 46, 46, 0.35);
  border-radius: 6px;
  color: #8d1e1e;
  background: rgba(207, 46, 46, 0.08);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-alert.is-visible {
  display: block;
}

.phone-popup {
  position: fixed;
  z-index: 40;
  right: clamp(16px, 4vw, 34px);
  bottom: calc(clamp(16px, 4vw, 34px) + 66px);
  max-width: min(360px, calc(100% - 32px));
  padding: 15px 18px;
  border: 1px solid rgba(207, 46, 46, 0.34);
  border-radius: 8px;
  color: #8d1e1e;
  background: #fff6f6;
  box-shadow: 0 18px 40px rgba(21, 23, 27, 0.2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.floating-whatsapp {
  position: fixed;
  z-index: 35;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #20c967;
  box-shadow: 0 18px 36px rgba(32, 201, 103, 0.32);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.floating-whatsapp::before {
  content: "Chat now";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-width: max-content;
  padding: 8px 11px;
  border-radius: 7px;
  color: var(--white);
  background: #111820;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(21, 23, 27, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  border: 6px solid transparent;
  border-left-color: #111820;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  background: #17b85a;
  box-shadow: 0 24px 44px rgba(32, 201, 103, 0.38);
}

.floating-whatsapp:hover::before,
.floating-whatsapp:hover::after,
.floating-whatsapp:focus-visible::before,
.floating-whatsapp:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(15, 143, 138, 0.42);
  outline-offset: 3px;
}

.damage-selector {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.damage-selector legend {
  padding: 0 6px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.damage-selector p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.vehicle-layout {
  position: relative;
  width: min(100%, 720px);
  min-height: 390px;
  margin: 0 auto;
  border: 1px solid #d3dae3;
  border-radius: 16px;
  overflow: hidden;
  background: #eef2f6;
}

.vehicle-shell {
  position: absolute;
  inset: 56px 92px;
  border: 3px solid #9aa3ac;
  border-radius: 56px;
  background: transparent;
  box-shadow: none;
}

.vehicle-shell::before,
.vehicle-shell::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 28px;
  border: 2px solid #858e98;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.vehicle-shell::before {
  top: 12px;
  transform: skewX(10deg);
}

.vehicle-shell::after {
  bottom: 12px;
  transform: skewX(-10deg);
}

.windscreen,
.roof-panel {
  position: absolute;
  z-index: 1;
  left: 28%;
  right: 28%;
  border-radius: 0;
  border: 2px solid #858e98;
  background: rgba(255, 255, 255, 0.86);
}

.windscreen.front {
  top: 32px;
  height: 62px;
  transform: skewX(-10deg);
}

.roof-panel {
  top: 104px;
  bottom: 104px;
  transform: skewX(-8deg);
}

.windscreen.rear {
  bottom: 32px;
  height: 62px;
  transform: skewX(10deg);
}

.bonnet-line,
.boot-line {
  position: absolute;
  left: 16%;
  right: 16%;
  height: 1px;
  background: rgba(37, 49, 61, 0.22);
}

.bonnet-line {
  top: 70px;
}

.boot-line {
  bottom: 70px;
}

.car-wheel {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #69727c;
  box-shadow: none;
}

.car-wheel.front-left {
  top: 40px;
  left: 70px;
}

.car-wheel.front-right {
  top: 40px;
  right: 70px;
}

.car-wheel.rear-left {
  bottom: 40px;
  left: 70px;
}

.car-wheel.rear-right {
  right: 70px;
  bottom: 40px;
}

.car-mirror {
  display: none;
}

.car-mirror.left {
  left: -16px;
  transform: rotate(-18deg);
}

.car-mirror.right {
  right: -16px;
  transform: rotate(18deg);
}

.car-light {
  display: none;
}

.car-light.front-left {
  top: 14px;
  left: 26%;
  background: rgba(255, 255, 255, 0.88);
}

.car-light.front-right {
  top: 14px;
  right: 26%;
  background: rgba(255, 255, 255, 0.88);
}

.car-light.rear-left {
  bottom: 14px;
  left: 26%;
  background: rgba(207, 46, 46, 0.72);
}

.car-light.rear-right {
  right: 26%;
  bottom: 14px;
  background: rgba(207, 46, 46, 0.72);
}

.panel-marker {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 10px;
  border: 2px solid #858e98;
  border-radius: 0;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: none;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.panel-marker:hover,
.panel-marker:focus-visible {
  border-color: #13c8bd;
  background: #e8fbfa;
  box-shadow: 0 10px 20px rgba(15, 143, 138, 0.12);
}

.panel-marker:focus-visible {
  outline: 3px solid rgba(15, 143, 138, 0.34);
  outline-offset: 2px;
}

.panel-marker.is-selected {
  border-color: #0f8f8a;
  background: #13c8bd;
  color: #071013;
  box-shadow: 0 12px 24px rgba(15, 143, 138, 0.18);
}

.front-bumper {
  top: 74px;
  left: 50%;
  width: 40%;
  min-height: 30px;
  transform: translateX(-50%);
}

.front-bumper:hover,
.front-bumper:focus-visible {
  transform: translateX(-50%);
}

.bonnet {
  top: 105px;
  left: 50%;
  width: 36%;
  min-height: 58px;
  transform: translateX(-50%);
}

.bonnet:hover,
.bonnet:focus-visible {
  transform: translateX(-50%);
}

.roof {
  top: 170px;
  left: 50%;
  width: 30%;
  min-height: 72px;
  transform: translateX(-50%);
}

.roof:hover,
.roof:focus-visible {
  transform: translateX(-50%);
}

.boot {
  bottom: 105px;
  left: 50%;
  width: 36%;
  min-height: 58px;
  transform: translateX(-50%);
}

.boot:hover,
.boot:focus-visible {
  transform: translateX(-50%);
}

.rear-bumper {
  bottom: 74px;
  left: 50%;
  width: 40%;
  min-height: 30px;
  transform: translateX(-50%);
}

.rear-bumper:hover,
.rear-bumper:focus-visible {
  transform: translateX(-50%);
}

.left-front-wing {
  top: 112px;
  left: 15%;
  width: 18%;
  min-height: 70px;
  transform: rotate(-8deg);
}

.left-front-door {
  top: 190px;
  left: 16%;
  width: 18%;
  min-height: 70px;
  transform: rotate(-4deg);
}

.left-rear-door {
  bottom: 190px;
  left: 16%;
  width: 18%;
  min-height: 70px;
  transform: rotate(4deg);
}

.left-rear-quarter {
  bottom: 112px;
  left: 15%;
  width: 18%;
  min-height: 70px;
  transform: rotate(8deg);
}

.right-front-wing {
  top: 112px;
  right: 15%;
  width: 18%;
  min-height: 70px;
  transform: rotate(8deg);
}

.right-front-door {
  top: 190px;
  right: 16%;
  width: 18%;
  min-height: 70px;
  transform: rotate(4deg);
}

.right-rear-door {
  bottom: 190px;
  right: 16%;
  width: 18%;
  min-height: 70px;
  transform: rotate(-4deg);
}

.right-rear-quarter {
  bottom: 112px;
  right: 15%;
  width: 18%;
  min-height: 70px;
  transform: rotate(-8deg);
}

.selected-panels {
  display: flex;
  gap: 8px;
  align-items: start;
  padding: 12px;
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.selected-panels strong {
  color: var(--steel);
}

.legal-page {
  padding-top: 74px;
}

.legal-hero {
  padding: clamp(82px, 12vw, 140px) clamp(18px, 7vw, 96px) clamp(52px, 7vw, 82px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.9), rgba(8, 10, 13, 0.68)),
    linear-gradient(135deg, #20262d, #111418);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.legal-content {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0;
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.14;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.site-footer {
  padding: 50px clamp(18px, 4vw, 54px) 36px;
  color: rgba(255, 255, 255, 0.78);
  background: #101010;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px;
  gap: clamp(42px, 9vw, 120px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo strong {
  display: grid;
  gap: 2px;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.footer-logo small {
  color: #6ed8d4;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.footer-contact {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-contact span {
  width: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #6ed8d4;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 32px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 116px;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 80% 42%, rgba(15, 143, 138, 0.12), transparent 26%),
      linear-gradient(90deg, rgba(5, 9, 12, 0.9), rgba(5, 9, 12, 0.58)),
      linear-gradient(0deg, rgba(5, 9, 12, 0.78), rgba(5, 9, 12, 0.16));
  }

  .hero-review {
    position: relative;
    right: auto;
    top: auto;
    width: min(720px, calc(100% - 36px));
    margin: 28px auto 0;
    transform: none;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(720px, calc(100% - 36px));
    margin: 22px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip,
  .intro-section,
  .service-grid,
  .work-grid,
  .process-list,
  .reviews-heading,
  .find-us-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    display: grid;
    align-items: start;
  }

  .work-panel {
    min-height: 320px;
  }

  .work-face {
    inset: 0;
  }

  .work-face strong {
    font-size: 20px;
  }

  .work-copy,
  .work-back {
    padding: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 38px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-review {
    padding: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 42px 18px 30px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-contact li {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-strip div {
    min-height: auto;
    padding: 16px 18px;
  }

  .service-card {
    min-height: auto;
  }

  .damage-selector {
    padding: 14px;
  }

  .vehicle-layout {
    min-height: 330px;
  }

  .vehicle-shell {
    inset: 42px 36px;
    border-radius: 42px;
  }

  .panel-marker {
    min-height: 42px;
    padding: 5px 6px;
    font-size: 10px;
  }

  .front-bumper {
    top: 58px;
    left: 50%;
    width: 42%;
  }

  .bonnet {
    top: 88px;
    left: 50%;
    width: 34%;
    min-height: 50px;
  }

  .roof {
    top: 144px;
    left: 50%;
    width: 30%;
    min-height: 60px;
  }

  .boot {
    bottom: 88px;
    left: 50%;
    width: 34%;
    min-height: 50px;
  }

  .rear-bumper {
    bottom: 58px;
    left: 50%;
    width: 42%;
  }

  .left-front-wing {
    top: 92px;
    left: 8%;
    width: 24%;
    min-height: 56px;
  }

  .left-front-door {
    top: 154px;
    left: 9%;
    width: 24%;
    min-height: 54px;
  }

  .left-rear-door {
    bottom: 154px;
    left: 9%;
    width: 24%;
    min-height: 54px;
  }

  .left-rear-quarter {
    bottom: 92px;
    left: 8%;
    width: 24%;
    min-height: 56px;
  }

  .right-front-wing {
    top: 92px;
    right: 8%;
    width: 24%;
    min-height: 56px;
  }

  .right-front-door {
    top: 154px;
    right: 9%;
    width: 24%;
    min-height: 54px;
  }

  .right-rear-door {
    bottom: 154px;
    right: 9%;
    width: 24%;
    min-height: 54px;
  }

  .right-rear-quarter {
    bottom: 92px;
    right: 8%;
    width: 24%;
    min-height: 56px;
  }
}

.vehicle-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "front front front"
    "lfw bonnet rfw"
    "lfd roof rfd"
    "lrd boot rrd"
    "lrq rear rrq";
  gap: 10px;
  width: min(100%, 620px);
  min-height: auto;
  margin: 0 auto;
  padding: 16px;
  border-radius: 12px;
  background: #eef2f6;
}

.vehicle-shell {
  display: none;
}

.panel-marker,
.panel-marker:hover,
.panel-marker:focus-visible {
  position: static;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cdd5df;
  border-radius: 8px;
  transform: none;
  background: #ffffff;
  color: var(--steel);
  box-shadow: none;
  font-size: 13px;
}

.panel-marker:hover,
.panel-marker:focus-visible {
  border-color: #13c8bd;
  background: #eefdfc;
}

.panel-marker.is-selected {
  border-color: #0f8f8a;
  background: #13c8bd;
  color: #071013;
  box-shadow: none;
}

.front-bumper {
  grid-area: front;
}

.bonnet {
  grid-area: bonnet;
}

.roof {
  grid-area: roof;
}

.boot {
  grid-area: boot;
}

.rear-bumper {
  grid-area: rear;
}

.left-front-wing {
  grid-area: lfw;
}

.left-front-door {
  grid-area: lfd;
}

.left-rear-door {
  grid-area: lrd;
}

.left-rear-quarter {
  grid-area: lrq;
}

.right-front-wing {
  grid-area: rfw;
}

.right-front-door {
  grid-area: rfd;
}

.right-rear-door {
  grid-area: rrd;
}

.right-rear-quarter {
  grid-area: rrq;
}

@media (max-width: 620px) {
  .vehicle-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "front front"
      "bonnet roof"
      "boot rear"
      "lfw rfw"
      "lfd rfd"
      "lrd rrd"
      "lrq rrq";
    gap: 8px;
    padding: 12px;
  }

  .panel-marker,
  .panel-marker:hover,
  .panel-marker:focus-visible {
    min-height: 44px;
    font-size: 12px;
  }
}

.vehicle-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  grid-template-areas:
    ". front ."
    "lfw bonnet rfw"
    "lfd roof rfd"
    "lrd boot rrd"
    "lrq rear rrq";
  gap: 8px 10px;
  width: min(100%, 660px);
  min-height: 390px;
  margin: 0 auto;
  padding: 58px 72px 54px;
  border: 1px solid #d3dae3;
  border-radius: 16px;
  overflow: hidden;
  background: #eef2f6;
}

.vehicle-layout::before {
  content: "";
  position: absolute;
  inset: 44px 48px;
  border: 3px solid #9aa3ac;
  border-radius: 58px;
  pointer-events: none;
}

.vehicle-layout::after {
  content: "";
  position: absolute;
  inset: 72px 78px;
  border-top: 2px solid rgba(133, 142, 152, 0.65);
  border-bottom: 2px solid rgba(133, 142, 152, 0.65);
  pointer-events: none;
}

.vehicle-shell {
  display: none;
}

.panel-marker,
.panel-marker:hover,
.panel-marker:focus-visible {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 48px;
  padding: 9px 10px;
  border: 2px solid #858e98;
  border-radius: 3px;
  transform: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--steel);
  box-shadow: none;
  font-size: 13px;
}

.panel-marker:hover,
.panel-marker:focus-visible {
  border-color: #13c8bd;
  background: #eefdfc;
}

.panel-marker.is-selected {
  border-color: #0f8f8a;
  background: #13c8bd;
  color: #071013;
  box-shadow: none;
}

.front-bumper {
  grid-area: front;
  min-height: 30px;
}

.bonnet {
  grid-area: bonnet;
  min-height: 58px;
}

.roof {
  grid-area: roof;
  min-height: 74px;
}

.boot {
  grid-area: boot;
  min-height: 58px;
}

.rear-bumper {
  grid-area: rear;
  min-height: 30px;
}

.left-front-wing {
  grid-area: lfw;
  transform: rotate(-5deg);
}

.left-front-door {
  grid-area: lfd;
}

.left-rear-door {
  grid-area: lrd;
}

.left-rear-quarter {
  grid-area: lrq;
  transform: rotate(5deg);
}

.right-front-wing {
  grid-area: rfw;
  transform: rotate(5deg);
}

.right-front-door {
  grid-area: rfd;
}

.right-rear-door {
  grid-area: rrd;
}

.right-rear-quarter {
  grid-area: rrq;
  transform: rotate(-5deg);
}

@media (max-width: 620px) {
  .vehicle-layout {
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 7px;
    min-height: 330px;
    padding: 44px 22px 40px;
  }

  .vehicle-layout::before {
    inset: 32px 12px;
    border-radius: 38px;
  }

  .vehicle-layout::after {
    inset: 58px 28px;
  }

  .panel-marker,
  .panel-marker:hover,
  .panel-marker:focus-visible {
    min-height: 40px;
    padding: 6px 5px;
    font-size: 10px;
  }

  .bonnet,
  .boot {
    min-height: 46px;
  }

  .roof {
    min-height: 58px;
  }
}

/* Restored top-view vehicle selector */
.vehicle-layout {
  position: relative;
  display: block;
  width: 100%;
  min-height: 430px;
  margin: 0;
  padding: 0;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(47, 58, 69, 0.055) 50%, transparent 51%),
    radial-gradient(circle at 50% 16%, rgba(15, 143, 138, 0.08), transparent 26%),
    #ffffff;
}

.vehicle-layout::before,
.vehicle-layout::after {
  content: none;
}

.vehicle-shell {
  position: absolute;
  display: block;
  inset: 24px 30%;
  border: 3px solid #25313d;
  border-radius: 48% 48% 36% 36% / 12% 12% 18% 18%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(37, 49, 61, 0.12) 49%, rgba(37, 49, 61, 0.12) 51%, transparent 52%),
    linear-gradient(180deg, #f7fafc 0%, #e9eff5 18%, #dce5ee 50%, #eef2f6 82%, #f7fafc 100%);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(21, 23, 27, 0.12);
}

.vehicle-shell::before,
.vehicle-shell::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #25313d;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.08);
}

.vehicle-shell::before {
  top: 28px;
  transform: none;
}

.vehicle-shell::after {
  bottom: 28px;
  transform: none;
}

.windscreen,
.roof-panel {
  position: absolute;
  z-index: auto;
  left: 17%;
  right: 17%;
  border: 1px solid rgba(15, 143, 138, 0.28);
  border-radius: 8px;
}

.windscreen.front {
  top: 86px;
  height: 48px;
  background: linear-gradient(180deg, rgba(15, 143, 138, 0.28), rgba(37, 49, 61, 0.14));
  transform: perspective(120px) rotateX(-10deg);
}

.roof-panel {
  top: 146px;
  bottom: 146px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(37, 49, 61, 0.1) 49%, rgba(37, 49, 61, 0.1) 51%, transparent 52%),
    rgba(255, 255, 255, 0.58);
}

.windscreen.rear {
  bottom: 86px;
  height: 48px;
  background: linear-gradient(0deg, rgba(15, 143, 138, 0.24), rgba(37, 49, 61, 0.14));
  transform: perspective(120px) rotateX(10deg);
}

.bonnet-line,
.boot-line {
  position: absolute;
  left: 16%;
  right: 16%;
  height: 1px;
  background: rgba(37, 49, 61, 0.22);
}

.bonnet-line {
  top: 70px;
}

.boot-line {
  bottom: 70px;
}

.car-wheel {
  position: absolute;
  width: 19px;
  height: 58px;
  border-radius: 8px;
  background: #111820;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.car-wheel.front-left {
  top: 86px;
  left: -15px;
}

.car-wheel.front-right {
  top: 86px;
  right: -15px;
}

.car-wheel.rear-left {
  bottom: 86px;
  left: -15px;
}

.car-wheel.rear-right {
  right: -15px;
  bottom: 86px;
}

.car-mirror {
  position: absolute;
  display: block;
  top: 136px;
  width: 18px;
  height: 24px;
  border-radius: 999px;
  background: #25313d;
}

.car-mirror.left {
  left: -16px;
  transform: rotate(-18deg);
}

.car-mirror.right {
  right: -16px;
  transform: rotate(18deg);
}

.car-light {
  position: absolute;
  display: block;
  width: 18px;
  height: 8px;
  border-radius: 999px;
}

.car-light.front-left {
  top: 14px;
  left: 26%;
  background: rgba(255, 255, 255, 0.88);
}

.car-light.front-right {
  top: 14px;
  right: 26%;
  background: rgba(255, 255, 255, 0.88);
}

.car-light.rear-left {
  bottom: 14px;
  left: 26%;
  background: rgba(207, 46, 46, 0.72);
}

.car-light.rear-right {
  right: 26%;
  bottom: 14px;
  background: rgba(207, 46, 46, 0.72);
}

.panel-marker,
.panel-marker:hover,
.panel-marker:focus-visible {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(37, 49, 61, 0.18);
  border-radius: 999px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(21, 23, 27, 0.1);
  backdrop-filter: blur(8px);
}

.panel-marker:hover,
.panel-marker:focus-visible {
  border-color: rgba(207, 46, 46, 0.55);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 22px rgba(21, 23, 27, 0.14);
}

.panel-marker.is-selected {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(207, 46, 46, 0.28);
}

.front-bumper {
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.bonnet {
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.roof {
  top: 198px;
  left: 50%;
  transform: translateX(-50%);
}

.boot {
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.rear-bumper {
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.front-bumper:hover,
.front-bumper:focus-visible,
.bonnet:hover,
.bonnet:focus-visible,
.roof:hover,
.roof:focus-visible,
.boot:hover,
.boot:focus-visible,
.rear-bumper:hover,
.rear-bumper:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.left-front-wing {
  top: 122px;
  left: 32%;
  transform: none;
}

.left-front-door {
  top: 172px;
  left: 32%;
  transform: none;
}

.left-rear-door {
  bottom: 172px;
  left: 32%;
  transform: none;
}

.left-rear-quarter {
  bottom: 122px;
  left: 32%;
  transform: none;
}

.right-front-wing {
  top: 122px;
  right: 32%;
  transform: none;
}

.right-front-door {
  top: 172px;
  right: 32%;
  transform: none;
}

.right-rear-door {
  bottom: 172px;
  right: 32%;
  transform: none;
}

.right-rear-quarter {
  bottom: 122px;
  right: 32%;
  transform: none;
}

@media (max-width: 620px) {
  .vehicle-layout {
    min-height: 520px;
  }

  .vehicle-shell {
    inset: 118px 21% 106px;
  }

  .panel-marker,
  .panel-marker:hover,
  .panel-marker:focus-visible {
    min-width: 54px;
    min-height: 30px;
    padding: 6px 7px;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .panel-marker::after {
    content: attr(data-short);
    font-size: 10px;
    font-weight: 900;
  }

  .front-bumper {
    top: 126px;
  }

  .bonnet {
    top: 166px;
  }

  .roof {
    top: 246px;
  }

  .boot {
    bottom: 156px;
  }

  .rear-bumper {
    bottom: 116px;
  }

  .left-front-wing {
    top: 196px;
    left: 13%;
  }

  .left-front-door {
    top: 242px;
    left: 12%;
  }

  .left-rear-door {
    top: 288px;
    bottom: auto;
    left: 12%;
  }

  .left-rear-quarter {
    top: 334px;
    bottom: auto;
    left: 13%;
  }

  .right-front-wing {
    top: 196px;
    right: 13%;
  }

  .right-front-door {
    top: 242px;
    right: 12%;
  }

  .right-rear-door {
    top: 288px;
    bottom: auto;
    right: 12%;
  }

  .right-rear-quarter {
    top: 334px;
    bottom: auto;
    right: 13%;
  }
}

@media (max-width: 390px) {
  .damage-selector {
    padding: 14px;
  }

  .vehicle-layout {
    min-height: 500px;
  }

  .vehicle-shell {
    inset-inline: 24%;
  }

  .panel-marker,
  .panel-marker:hover,
  .panel-marker:focus-visible {
    min-width: 48px;
    padding-inline: 5px;
  }

  .panel-marker::after {
    font-size: 9px;
  }
}
