
:root {
  --color-ink: #070608;
  --color-graphite: #141414;
  --color-panel: #ecebeb;
  --color-panel-strong: #dedddd;
  --color-muted: #727272;
  --color-line: #d7d5d3;
  --color-white: #ffffff;
  --color-orange: #f47a20;
  --color-orange-dark: #a04f47;
  --color-night: #07101f;
  --shadow-large: 0 28px 80px rgb(7 6 8 / 18%);
  --shadow-soft: 0 16px 50px rgb(7 6 8 / 10%);
  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 22px;
  --content-gutter: clamp(18px, 5vw, 86px);
  --page-gutter: 0px;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  overflow-x: hidden;
}

body,
button,
a {
  font-family: 'Montserrat', system-ui, sans-serif;
}

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

button {
  border: 0;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgb(7 6 8 / 3%) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--color-white);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 74px;
  padding: 16px var(--content-gutter);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 128px;
  line-height: 0;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a,
.nav-phone,
.ghost-action,
.primary-action,
.inquiry-button {
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--color-ink);
}

.nav-phone,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.nav-phone {
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  border-color: var(--color-ink);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 74px);
  padding: 42px var(--page-gutter) 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.pricing-story h2,
.faq-panel h2,
.works-section h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--color-ink);
}

.hero-copy h1 {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(3.1rem, 3.9rem, 4.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #4f4d4d;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.ghost-action,
.inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-action,
.inquiry-button {
  gap: 10px;
  padding: 0 22px;
  background: var(--color-ink);
  color: var(--color-white);
}

.primary-action:hover,
.primary-action:focus-visible,
.inquiry-button:hover,
.inquiry-button:focus-visible {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.ghost-action {
  padding: 0 20px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  color: var(--color-ink);
}

.ghost-action:hover,
.ghost-action:focus-visible {
  border-color: var(--color-ink);
  transform: translateY(-2px);
}

.hero-stage {
  position: relative;
  min-height: 650px;
  padding: 34px;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  background: var(--color-panel);
  overflow: hidden;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-night);
  color: var(--color-white);
  box-shadow: var(--shadow-large);
}

.hero-card img,
.phone-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card::after,
.phone-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(7 16 31 / 88%) 0%,
      rgb(7 16 31 / 45%) 44%,
      rgb(7 16 31 / 8%) 100%
    ),
    linear-gradient(180deg, rgb(0 0 0 / 0%) 48%, rgb(0 0 0 / 72%) 100%);
}

.hero-card-main {
  top: 34px;
  left: 34px;
  width: min(560px, 58%);
  height: 290px;
}

.hero-card-overlap {
  right: 30px;
  bottom: 38px;
  width: min(670px, 68%);
  height: 365px;
}

.card-utility,
.hero-card-content {
  position: relative;
  z-index: 2;
}

.card-utility {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  color: rgb(255 255 255 / 78%);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card-content {
  position: absolute;
  left: 48px;
  bottom: 38px;
  max-width: 430px;
}

.hero-card-content h2 {
  margin: 0;
  font-size: clamp(2.6rem, 3.1rem, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-card-content p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.7;
}

.hero-card-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 9px 18px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.hero-card-content li svg {
  color: var(--color-orange);
}

.slider-dots {
  display: flex;
  gap: 9px;
  margin-top: 24px;
}

.slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / 30%);
}

.slider-dots .dot-active {
  width: 26px;
  background: var(--color-orange);
}

.phone-preview {
  position: absolute;
  top: 48px;
  width: 132px;
  height: 254px;
  overflow: hidden;
  border: 7px solid #101010;
  border-radius: 28px;
  background: #050505;
  box-shadow: 0 22px 40px rgb(7 6 8 / 28%);
}

.phone-preview span {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 24px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.phone-preview-left {
  right: 242px;
}

.phone-preview-right {
  right: 64px;
}

.intro-section,
.tint-section,
.split-section,
.works-section,
.contact-section {
  width: 100%;
}

.intro-section {
  padding: 88px var(--page-gutter) 44px;
}

.hero-copy,
.section-heading,
.intro-grid {
  margin-inline: var(--content-gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.pricing-story h2,
.faq-panel h2,
.works-section h2 {
  font-size: clamp(2rem, 2.6rem, 3.15rem);
  line-height: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.intro-media {
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-panel);
}

.intro-media img {
  width: 100%;
  height: 385px;
  object-fit: cover;
}

.intro-text {
  padding: 34px;
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-line);
}

.intro-text h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.intro-text p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.8;
}

.benefit-list {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.benefit-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-graphite);
  font-size: 0.78rem;
  font-weight: 800;
}

.benefit-list svg {
  color: var(--color-orange);
}

.tint-section {
  padding: 80px var(--page-gutter) 44px;
}

.tint-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 22px;
  padding: 44px;
  border-radius: 0;
  background: var(--color-panel);
}

.tint-workspace,
.characteristics,
.price-card,
.faq-panel,
.pricing-story {
  border-radius: var(--radius-small);
  background: var(--color-white);
}

.tint-workspace {
  overflow: hidden;
  min-width: 0;
}

.tint-tabs {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(4, minmax(62px, 0.8fr));
  align-items: stretch;
  min-height: 64px;
  border-bottom: 1px solid var(--color-line);
}

.tab-title,
.tint-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #9b9998;
  font-size: 0.78rem;
  font-weight: 800;
}

.tab-title {
  justify-content: flex-start;
  padding-left: 28px;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.tint-tabs button {
  position: relative;
  cursor: pointer;
}

.tint-tabs button::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.tint-tabs button.is-active {
  color: var(--color-ink);
}

.tint-tabs button.is-active::after {
  background: var(--color-ink);
}

.vehicle-preview {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 375px;
  overflow: hidden;
  background: #f9f9f8;
}

.vehicle-preview img {
  width: 100%;
  height: 100%;
  min-height: 375px;
  object-fit: cover;
  object-position: center;
}

.vehicle-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 0%) 45%,
    rgb(255 255 255 / 92%) 100%
  );
}

.tint-copy {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 22px;
  align-items: end;
}

.tint-copy h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.tint-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.6;
}

.characteristics {
  padding: 34px 28px;
}

.characteristics h3 {
  margin: 14px 0 24px;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.characteristics ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.characteristics li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6d6a68;
  font-size: 0.76rem;
  font-weight: 700;
}

.characteristics li svg {
  color: #aaa5a2;
}

.inquiry-button {
  width: 100%;
  margin-top: 28px;
  border-radius: 8px;
}

.assembly-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
  color: #8e8a88;
  font-size: 0.7rem;
  font-weight: 700;
}

.vehicle-prices {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  min-height: 212px;
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  background: linear-gradient(180deg, #fafafa 0%, #f1f0ef 100%);
}

.price-card h3 {
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.price-card p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 900;
}

.price-card span,
.price-card del {
  color: #9c9895;
  font-size: 0.68rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 70px var(--page-gutter) 44px;
}

.pricing-story,
.faq-panel {
  min-height: 520px;
  padding: 44px;
  box-shadow: inset 0 0 0 1px var(--color-line);
}

.pricing-story {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.faq-panel {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pricing-story p {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.8;
}

.price-table {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.price-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-small);
}

.price-table span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-table strong {
  font-size: 0.84rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--color-line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  color: #9f9b98;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list p {
  margin: -4px 0 22px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.7;
}

.works-section {
  padding: 76px var(--page-gutter) 54px;
}

.centered {
  display: block;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.centered .section-kicker {
  justify-content: center;
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  grid-auto-rows: 245px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-ink);
  color: var(--color-white);
}

.gallery-card-featured {
  grid-row: span 2;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.gallery-card:nth-child(3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(0 0 0 / 0%) 44%,
    rgb(0 0 0 / 76%) 100%
  );
}

.gallery-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.gallery-card span {
  color: var(--color-orange);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 7px 0 0;
  font-size: 1rem;
  font-weight: 900;
}

.contact-section {
  padding: 68px var(--page-gutter) 0;
}

.map-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  overflow: hidden;
  border-radius: 0;
  background: #f0efed;
}

.map-grid {
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(
        23deg,
        transparent 45%,
        rgb(160 79 71 / 18%) 46%,
        transparent 48%
      )
      0 0 / 180px 120px,
    linear-gradient(
        155deg,
        transparent 42%,
        rgb(7 6 8 / 8%) 43%,
        transparent 45%
      )
      0 0 / 150px 130px,
    linear-gradient(90deg, rgb(7 6 8 / 5%) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgb(7 6 8 / 5%) 1px, transparent 1px) 0 0 / 54px 54px;
}

.map-band svg {
  position: relative;
  z-index: 2;
  color: var(--color-ink);
  filter: drop-shadow(0 9px 16px rgb(7 6 8 / 20%));
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 34px;
  padding: 46px;
  background: var(--color-ink);
  color: var(--color-white);
}

.footer-panel p,
.footer-panel a {
  display: block;
  max-width: 280px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.8;
}

.footer-panel a:hover {
  color: var(--color-white);
}

.footer-panel h2 {
  margin: 0 0 10px;
  color: rgb(255 255 255 / 90%);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand {
  width: 118px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  color: rgb(255 255 255 / 78%);
  font-size: 0.7rem;
  font-weight: 800;
}

.topbar-dark {
  background: rgb(7 6 8 / 92%);
  color: var(--color-white);
  box-shadow: 0 1px 0 rgb(255 255 255 / 8%);
}

.topbar-dark .desktop-nav {
  color: rgb(255 255 255 / 68%);
}

.topbar-dark .desktop-nav a:hover,
.topbar-dark .desktop-nav a:focus-visible,
.topbar-dark .desktop-nav a[aria-current='page'],
.desktop-nav a[aria-current='page'] {
  color: var(--color-orange);
}

.topbar-dark .nav-phone {
  border-color: rgb(255 255 255 / 18%);
  color: var(--color-white);
}

.topbar-dark .menu-button {
  border-color: rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 8%);
  color: var(--color-white);
}

.service-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgb(7 6 8 / 3%) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--color-white);
  color: var(--color-ink);
}

.service-shell .section-kicker {
  color: var(--color-orange);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 42px 0 82px;
}

.service-hero-copy {
  margin-inline-start: var(--content-gutter);
}

.service-hero h1 {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: clamp(3rem, 3.6vw, 4.1rem);
  font-weight: 900;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.service-hero p {
  max-width: 580px;
  margin: 24px 0 0;
  color: #4f4d4d;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.service-cta:hover,
.service-cta:focus-visible {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.service-content-media {
  margin: 0;
  overflow: hidden;
  background: var(--color-panel);
}

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

.service-showcase-stage {
  position: relative;
  min-height: 650px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  background: var(--color-panel);
}

.service-screen {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-night);
  color: var(--color-white);
  box-shadow: var(--shadow-large);
}

.service-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(7 16 31 / 88%) 0%,
      rgb(7 16 31 / 48%) 46%,
      rgb(7 16 31 / 8%) 100%
    ),
    linear-gradient(180deg, rgb(0 0 0 / 0%) 44%, rgb(0 0 0 / 72%) 100%);
}

.service-screen-main {
  top: 34px;
  left: 34px;
  width: min(760px, 72%);
  height: 430px;
}

.service-phone-screen {
  top: 54px;
  right: 64px;
  width: 154px;
  height: 306px;
  border: 7px solid #101010;
  border-radius: 30px;
}

.service-floating-screen {
  right: 36px;
  bottom: 46px;
  width: min(540px, 54%);
  height: 305px;
}

.service-floating-screen img {
  object-position: center;
}

.service-screen-content,
.service-phone-screen span {
  position: relative;
  z-index: 2;
}

.service-screen-content {
  position: absolute;
  left: clamp(26px, 4vw, 54px);
  right: clamp(24px, 5vw, 86px);
  bottom: clamp(28px, 4vw, 54px);
}

.service-screen-content h2 {
  max-width: 520px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.4rem, 3.5vw, 4.55rem);
  font-weight: 900;
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.service-screen-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 9px 18px;
  max-width: 520px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-screen-content li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-screen-content li svg {
  color: var(--color-orange);
}

.service-phone-screen span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-section-heading {
  max-width: 900px;
  padding: 0 var(--content-gutter);
}

.service-section-heading h2,
.service-content-copy h2,
.service-closing h2 {
  margin: 14px 0 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 3.35rem, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-section-heading p {
  max-width: 720px;
  color: var(--color-muted);
  font-weight: 600;
  line-height: 1.8;
}

.service-pricing {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--color-panel);
}

.service-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  padding: 0 var(--content-gutter);
}

.service-price-card {
  min-height: 240px;
  padding: clamp(24px, 4vw, 54px);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.service-price-card span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-price-card h3 {
  margin: 18px 0 0;
  color: var(--color-orange);
  font-size: clamp(1.1rem, 1.55rem, 1.8rem);
  font-weight: 900;
  line-height: 1.14;
}

.service-price-card p {
  margin: 24px 0 0;
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.service-content-stack {
  display: grid;
  gap: clamp(58px, 8vw, 120px);
  padding: clamp(70px, 9vw, 140px) var(--content-gutter);
  background: var(--color-white);
}

.service-content-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-line);
}

.service-content-copy,
.service-content-media {
  min-width: 0;
}

.service-content-block:not(.has-image) {
  grid-template-columns: minmax(0, 0.78fr);
}

.service-content-block.is-reversed .service-content-copy {
  order: 2;
}

.service-content-copy p {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.85;
}

.service-content-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.service-content-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-graphite);
  font-weight: 700;
  line-height: 1.5;
}

.service-content-copy li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--color-orange);
}

.service-content-media,
.service-content-media img {
  min-height: 340px;
}

.service-content-media,
.service-content-media img {
  border-radius: var(--radius-small);
}

.service-closing {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 90px) var(--content-gutter);
  background: var(--color-ink);
  color: var(--color-white);
}

.service-closing > svg {
  color: var(--color-orange);
}

.service-closing p {
  max-width: 760px;
  color: rgb(255 255 255 / 68%);
  font-weight: 600;
  line-height: 1.8;
}

.service-closing h2 {
  color: var(--color-white);
}

.service-closing .service-cta {
  margin-top: 0;
  background: var(--color-orange);
  color: var(--color-white);
}

.footer-panel-dark {
  background: #080808;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  flex: 0 0 auto;
  color: var(--color-orange);
}

.wrap-lab-section,
.fleet-hero,
.tint-service-hero,
.pricing-hero,
.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(74px, 9vw, 136px) var(--content-gutter);
}

.wrap-lab-section {
  background: var(--color-white);
}

.wrap-lab-media,
.fleet-photo,
.tint-service-hero figure,
.pricing-hero img,
.about-collage,
.caliper-color-block img {
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
}

.wrap-lab-media img,
.fleet-photo img,
.tint-service-hero img,
.pricing-hero img,
.about-collage img,
.caliper-color-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap-lab-media {
  min-height: 520px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.wrap-lab-copy h2,
.fleet-benefit-board h2,
.tint-config-copy h2,
.caliper-color-block h2,
.quote-band h2,
.about-values h2 {
  margin: 14px 0 0;
  color: var(--color-ink);
  font-size: clamp(2.1rem, 3.2vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.wrap-lab-copy p,
.fleet-benefit-board p,
.tint-config-copy p,
.caliper-color-block p,
.quote-band p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-weight: 600;
  line-height: 1.85;
}

.finish-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.finish-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-ribbon,
.caliper-detail-grid,
.about-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
}

.process-ribbon article,
.caliper-detail-grid article,
.about-stat-row article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--color-ink);
  color: var(--color-white);
}

.process-ribbon span,
.caliper-detail-grid span {
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-ribbon h3,
.caliper-detail-grid h3 {
  margin: 22px 0 0;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-ribbon p,
.caliper-detail-grid p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.75;
}

.price-mosaic,
.price-board {
  padding: clamp(70px, 9vw, 128px) 0;
  background: var(--color-panel);
}

.price-mosaic-grid,
.price-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  padding: 0 var(--content-gutter);
}

.price-mosaic-grid article,
.price-board-grid article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.price-mosaic-grid span,
.price-board-grid span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-mosaic-grid h3,
.price-board-grid h3 {
  margin: 18px 0 0;
  color: var(--color-orange);
  font-size: clamp(1.12rem, 1.6vw, 1.8rem);
  font-weight: 900;
  line-height: 1.14;
}

.price-mosaic-grid p,
.price-board-grid p {
  margin: 24px 0 0;
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.price-board-grid small {
  display: inline-flex;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-hero {
  min-height: calc(100vh - 74px);
}

.fleet-copy h1,
.tint-service-hero h1,
.pricing-hero h1,
.about-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: clamp(3rem, 4.5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.fleet-copy p,
.tint-service-hero p,
.pricing-hero p,
.about-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #4f4d4d;
  font-weight: 600;
  line-height: 1.85;
}

.fleet-photo {
  position: relative;
  min-height: 560px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fleet-photo figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-small);
  background: rgb(7 6 8 / 86%);
  color: var(--color-white);
  backdrop-filter: blur(14px);
}

.fleet-photo figcaption span {
  color: var(--color-orange);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-photo figcaption strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.fleet-benefit-board {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(70px, 8vw, 120px) var(--content-gutter);
  background: var(--color-panel);
}

.fleet-checks {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.fleet-checks span,
.tint-config-side span,
.tint-benefit-list span,
.about-values span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-graphite);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.55;
}

.fleet-checks svg,
.tint-config-side svg,
.tint-benefit-list svg,
.about-values svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--color-orange);
}

.fleet-case-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.7fr)) minmax(360px, 1.4fr);
  gap: 1px;
  background: var(--color-line);
}

.fleet-case-strip article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--color-white);
}

.fleet-case-strip article span {
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.fleet-case-strip h3 {
  margin: 24px 0 0;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-case-strip p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.7;
}

.fleet-case-strip figure {
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  background: var(--color-ink);
}

.fleet-case-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tint-service-hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  background: var(--color-white);
}

.tint-service-hero figure {
  position: absolute;
  top: clamp(120px, 16vh, 170px);
  right: 0;
  bottom: 74px;
  width: min(760px, 58vw);
  min-height: 550px;
  margin: 0;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
}

.tint-service-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
}

.tint-hero-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow:
    inset 0 0 0 1px var(--color-line),
    var(--shadow-soft);
}

.tint-hero-card h1 {
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: clamp(3rem, 4.5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.tint-hero-card p {
  margin: 24px 0 0;
  color: #4f4d4d;
  font-weight: 600;
  line-height: 1.85;
}

.tint-hero-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-line);
}

.tint-hero-levels span {
  display: grid;
  place-items: center;
  min-height: 46px;
  background: var(--color-panel);
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.tint-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  padding: clamp(54px, 7vw, 92px) var(--content-gutter);
  background: var(--color-panel);
}

.tint-config-main,
.tint-config-side {
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.tint-config-main {
  overflow: hidden;
}

.tint-mini-tabs {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(4, minmax(62px, 0.8fr));
  min-height: 64px;
  border-bottom: 1px solid var(--color-line);
}

.tint-mini-tabs strong,
.tint-mini-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9b9998;
  font-size: 0.78rem;
  font-weight: 800;
}

.tint-mini-tabs strong {
  justify-content: flex-start;
  padding-left: 28px;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.tint-config-main img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.tint-config-copy {
  padding: clamp(28px, 4vw, 44px);
}

.tint-config-side {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px 28px;
}

.tint-config-side h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.tint-benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
}

.tint-benefit-list span {
  min-height: 110px;
  padding: 28px;
  background: var(--color-white);
}

.caliper-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  background: var(--color-ink);
}

.caliper-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.caliper-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 6 8 / 90%), transparent 68%);
}

.caliper-panel {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: clamp(86px, 10vw, 150px) var(--content-gutter);
  color: var(--color-white);
}

.caliper-panel h1 {
  margin: 18px 0 0;
  color: var(--color-white);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.caliper-panel p {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 74%);
  font-weight: 600;
  line-height: 1.85;
}

.caliper-color-block {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(70px, 8vw, 126px) var(--content-gutter);
  background: var(--color-white);
}

.caliper-color-block img {
  min-height: 430px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.caliper-swatches {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.caliper-swatches span {
  width: 46px;
  height: 46px;
  border: 4px solid var(--color-white);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgb(7 6 8 / 12%),
    var(--shadow-soft);
}

.pricing-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--color-white);
}

.pricing-hero img {
  position: absolute;
  top: clamp(128px, 18vh, 190px);
  right: 0;
  width: min(760px, 58vw);
  height: min(470px, 52vh);
  min-height: 430px;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  object-fit: cover;
  box-shadow: var(--shadow-large);
}

.pricing-ticket {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-small);
  background: rgb(255 255 255 / 92%);
  box-shadow:
    inset 0 0 0 1px var(--color-line),
    var(--shadow-soft);
}

.pricing-ticket h1 {
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: clamp(3rem, 4.5vw, 5.6rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.pricing-ticket p {
  margin: 24px 0 0;
  color: #4f4d4d;
  font-weight: 600;
  line-height: 1.85;
}

.pricing-ticket-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-line);
}

.pricing-ticket-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 0 16px;
  align-items: center;
  background: var(--color-white);
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-ticket-list strong {
  color: var(--color-ink);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.price-board {
  background: var(--color-white);
}

.price-board-grid article:nth-child(1),
.price-board-grid article:nth-child(4) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.price-board-grid article:nth-child(3),
.price-board-grid article:nth-child(6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: clamp(54px, 7vw, 92px) var(--content-gutter);
  background: var(--color-panel);
}

.about-editorial {
  min-height: calc(100vh - 74px);
}

.about-collage {
  position: relative;
  min-height: 590px;
  overflow: visible;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  box-shadow: none;
}

.about-collage img:first-child {
  position: absolute;
  inset: 0 0 92px 0;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  box-shadow: var(--shadow-large);
}

.about-collage img:last-child {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: min(420px, 58%);
  height: 260px;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-large);
}

.about-stat-row {
  background: var(--color-ink);
}

.about-stat-row article {
  display: grid;
  place-items: center;
  min-height: 190px;
  text-align: center;
}

.about-stat-row span {
  color: var(--color-orange);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 900;
}

.about-stat-row p {
  margin: 8px 0 0;
  color: rgb(255 255 255 / 74%);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-values {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(70px, 8vw, 124px) var(--content-gutter);
  background: var(--color-white);
}

.about-values > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-values span {
  padding: 18px;
  border-radius: var(--radius-small);
  background: var(--color-panel);
}

:focus-visible {
  outline: 3px solid rgb(244 122 32 / 40%);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-stage {
    min-height: 620px;
    border-radius: 0;
  }

  .phone-preview-left {
    right: 210px;
  }

  .phone-preview-right {
    right: 38px;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-hero-copy {
    max-width: 760px;
  }

  .service-showcase-stage {
    min-height: 620px;
    border-radius: 0;
  }

  .service-screen-main {
    width: min(740px, 72%);
  }
}

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

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-phone {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

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

  .section-heading,
  .intro-grid,
  .split-section,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .tint-panel {
    grid-template-columns: 1fr;
  }

  .vehicle-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-card-featured {
    grid-column: span 2;
    grid-row: span 1;
    border-radius: 0;
  }

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(4) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .gallery-card:nth-child(3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .service-hero,
  .service-content-block,
  .service-closing {
    grid-template-columns: 1fr;
  }

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

  .service-hero-copy {
    max-width: 760px;
    margin-inline: var(--content-gutter);
  }

  .service-content-block:not(.has-image) {
    grid-template-columns: 1fr;
  }

  .service-content-block.is-reversed .service-content-copy {
    order: 0;
  }

  .service-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-showcase-stage {
    min-height: 740px;
  }

  .service-screen-main {
    width: calc(100% - 68px);
    height: 390px;
  }

  .service-phone-screen {
    display: none;
  }

  .service-floating-screen {
    right: 34px;
    left: 34px;
    width: auto;
    height: 290px;
  }

  .service-closing .service-cta {
    justify-self: start;
  }

  .wrap-lab-section,
  .fleet-hero,
  .fleet-benefit-board,
  .tint-service-hero,
  .tint-configurator,
  .caliper-color-block,
  .pricing-hero,
  .quote-band,
  .about-editorial,
  .about-values {
    grid-template-columns: 1fr;
  }

  .process-ribbon,
  .caliper-detail-grid,
  .about-stat-row,
  .tint-benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-case-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fleet-case-strip figure {
    grid-column: 1 / -1;
  }

  .price-mosaic-grid,
  .price-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-collage {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .topbar,
  .hero-section,
  .intro-section,
  .tint-section,
  .split-section,
  .works-section,
  .contact-section {
    --page-gutter: 0px;
  }

  .hero-section {
    padding-top: 20px;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
    line-height: 0.98;
  }

  .brand-mark {
    width: 106px;
  }

  .hero-copy p {
    font-size: 0.92rem;
  }

  .hero-stage {
    min-height: 760px;
    padding: 14px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-card-main,
  .hero-card-overlap {
    height: 320px;
  }

  .hero-card-overlap {
    margin-top: 14px;
  }

  .phone-preview {
    display: none;
  }

  .hero-card-content {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .hero-card-content h2 {
    font-size: 2.45rem;
  }

  .hero-card-content ul {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .tint-section,
  .works-section {
    padding-top: 58px;
  }

  .intro-text,
  .pricing-story,
  .faq-panel {
    padding: 26px;
  }

  .pricing-story,
  .faq-panel,
  .gallery-card {
    border-radius: 0;
  }

  .intro-media img {
    height: 300px;
  }

  .tint-panel {
    padding: 16px;
  }

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

  .tab-title {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 48px;
    padding-left: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .vehicle-preview {
    min-height: 420px;
  }

  .vehicle-preview img {
    min-height: 420px;
  }

  .tint-copy {
    grid-template-columns: 1fr;
  }

  .vehicle-prices,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-featured {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .footer-panel {
    padding: 32px 24px;
  }

  .service-hero {
    gap: 36px;
    padding: 48px 0 64px;
  }

  .service-hero-copy {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0 var(--content-gutter);
  }

  .service-hero h1 {
    font-size: 2.12rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .service-hero p {
    font-size: 0.92rem;
  }

  .service-content-media,
  .service-content-media img {
    min-height: 280px;
  }

  .service-showcase-stage {
    min-height: auto;
    padding: 14px;
    border-radius: 0;
  }

  .service-screen {
    position: relative;
    inset: auto;
    width: 100%;
    border-radius: 12px;
  }

  .service-screen-main {
    height: 370px;
  }

  .service-floating-screen {
    display: none;
  }

  .service-screen-content {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .service-screen-content h2 {
    font-size: 2.2rem;
  }

  .service-screen-content ul {
    grid-template-columns: 1fr;
  }

  .service-section-heading {
    padding: 0 var(--content-gutter);
  }

  .service-section-heading h2,
  .service-content-copy h2,
  .service-closing h2 {
    font-size: 2rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .service-price-grid {
    grid-template-columns: 1fr;
  }

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

  .service-content-stack {
    padding-right: 0;
    padding-left: 0;
  }

  .service-content-block {
    padding: 34px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-content-copy {
    padding: 0 var(--content-gutter);
  }

  .service-closing {
    padding-right: var(--content-gutter);
    padding-left: var(--content-gutter);
  }

  .wrap-lab-section,
  .fleet-hero,
  .fleet-benefit-board,
  .tint-service-hero,
  .tint-configurator,
  .caliper-color-block,
  .pricing-hero,
  .quote-band,
  .about-editorial,
  .about-values {
    padding: 58px var(--content-gutter);
  }

  .fleet-copy h1,
  .tint-service-hero h1,
  .pricing-hero h1,
  .about-copy h1,
  .caliper-panel h1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .wrap-lab-copy h2,
  .fleet-benefit-board h2,
  .tint-config-copy h2,
  .caliper-color-block h2,
  .quote-band h2,
  .about-values h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .wrap-lab-media,
  .fleet-photo,
  .tint-service-hero figure,
  .pricing-hero img,
  .caliper-color-block img {
    min-height: 310px;
    border-radius: var(--radius-small);
  }

  .process-ribbon,
  .caliper-detail-grid,
  .about-stat-row,
  .tint-benefit-list,
  .price-mosaic-grid,
  .price-board-grid,
  .fleet-case-strip,
  .about-values > div:last-child {
    grid-template-columns: 1fr;
  }

  .process-ribbon article,
  .caliper-detail-grid article,
  .about-stat-row article,
  .fleet-case-strip article,
  .tint-benefit-list span {
    min-height: auto;
    padding: 28px var(--content-gutter);
  }

  .price-mosaic-grid,
  .price-board-grid {
    padding: 0 var(--content-gutter);
  }

  .tint-mini-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .tint-mini-tabs strong {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 48px;
    padding-left: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .tint-config-main img {
    height: 310px;
  }

  .tint-service-hero figure,
  .pricing-hero img {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 28px;
    border-radius: var(--radius-small);
  }

  .tint-service-hero figure img,
  .pricing-hero img {
    min-height: 310px;
  }

  .tint-hero-card,
  .pricing-ticket {
    max-width: none;
    padding: 28px;
  }

  .tint-hero-card h1,
  .pricing-ticket h1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .caliper-hero {
    min-height: auto;
  }

  .caliper-hero > img {
    position: relative;
    min-height: 330px;
  }

  .caliper-hero::after {
    display: none;
  }

  .caliper-panel {
    max-width: none;
    padding: 42px var(--content-gutter) 58px;
    background: var(--color-ink);
  }

  .about-collage {
    min-height: 420px;
  }

  .about-collage img:first-child {
    inset: 0 0 80px 0;
  }

  .about-collage img:last-child {
    right: 18px;
    width: min(300px, 72%);
    height: 190px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    display: grid;
  }

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

  .hero-card-content h2 {
    font-size: 2.05rem;
  }

  .price-table div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* --- Vanilla additions: inline SVG icons + mobiel menu --- */

.icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 0;
  left: 0;
  z-index: 39;
  display: none;
  flex-direction: column;
  padding: 10px var(--content-gutter) 26px;
  background: rgb(255 255 255 / 97%);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-nav a[aria-current='page'] {
  color: var(--color-orange);
}
