:root {
  --black: #070d12;
  --near-black: #0b1218;
  --charcoal: #101820;
  --section: #0d151b;
  --strip: #081118;
  --brand-blue: #0aa8c0;
  --brand-blue-dark: #087f9a;
  --brand-blue-soft: #87d6ea;
  --brand-blue-muted: #0f5262;
  --brand-blue-card: #123845;
  --brand-blue-card-light: #16556a;
  --orange: var(--brand-blue);
  --orange-dark: var(--brand-blue-dark);
  --bronze: var(--brand-blue-muted);
  --card-brown: var(--brand-blue-card);
  --card-brown-light: var(--brand-blue-card-light);
  --line: #20323a;
  --line-bright: #1c7890;
  --text: #f4f1eb;
  --muted: #b9b3a9;
  --dim: #7f7a73;
  --font-heading: "Bebas Neue", "Arial Narrow", "Oswald", "Anton", Impact, sans-serif;
  --font-body: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
  --container: 1200px;
  --section-y: 96px;
  --section-heading-gap: 48px;
  --heading-track: 0.045em;
  --hero-image: url("IMG_9647.JPG");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -48px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 42px;
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 10;
}

.utility-bar {
  background: var(--orange);
  color: #effcff;
  font-size: 11px;
  font-weight: 800;
  height: 34px;
  letter-spacing: 0.02em;
}

.utility-bar__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 34px;
}

.utility-bar p {
  color: #d8f8ff;
  margin: 0;
  opacity: 0.9;
}

.utility-bar__phone {
  justify-self: start;
}

.utility-bar__button {
  background: #effcff;
  border-radius: 2px;
  color: #063947;
  font-size: 10px;
  font-weight: 900;
  justify-self: end;
  letter-spacing: 0.08em;
  padding: 8px 17px;
  text-transform: uppercase;
}

.main-header {
  background: #0f171d;
  border-bottom: 1px solid #20323a;
}

.main-header__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 190px 1fr 260px;
  min-height: 78px;
}

.logo {
  align-items: center;
  display: inline-flex;
  width: max-content;
}

.logo__image {
  display: block;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  width: 150px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 31px;
  justify-content: center;
}

.nav__link,
.header-actions__phone,
.footer a,
.footer p {
  color: var(--muted);
  font-size: 11px;
}

.nav__link {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 0;
}

.nav__link--active,
.nav__link:hover,
.footer a:hover {
  color: var(--orange);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.header-actions__phone {
  white-space: nowrap;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.button,
.quote-form button {
  align-items: center;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 7px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 44px;
  padding: 0 24px;
  text-transform: uppercase;
}

.button--small {
  font-size: 10px;
  min-height: 38px;
  padding: 0 18px;
}

.button--outline {
  background: rgba(10, 12, 16, 0.56);
  border-color: #4b4b49;
  color: #fff;
}

.hero {
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(7, 9, 13, 0.89) 38%, rgba(7, 9, 13, 0.72) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  min-height: 729px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(104deg, transparent 0 54%, rgba(255, 255, 255, 0.035) 54.2% 54.8%, transparent 55% 100%),
    radial-gradient(ellipse at 72% 72%, rgba(10, 168, 192, 0.16), transparent 36%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: 62px;
  grid-template-columns: minmax(0, 1fr) 438px;
  min-height: 729px;
  padding-bottom: 92px;
  padding-top: 92px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.eyebrow--ruled,
.eyebrow--centered {
  align-items: center;
  display: flex;
  gap: 11px;
}

.eyebrow--ruled::before,
.eyebrow--centered::before,
.eyebrow--centered::after {
  background: var(--orange);
  content: "";
  display: inline-block;
  height: 1px;
  opacity: 0.75;
  width: 42px;
}

.eyebrow--centered {
  justify-content: center;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: var(--heading-track);
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(72px, 6.9vw, 96px);
  max-width: 650px;
}

.hero-title__line,
.final-cta__line {
  display: block;
}

.hero-title__line {
  white-space: nowrap;
}

.hero-title__accent,
.mobile-service h2 span,
.final-cta__accent {
  color: var(--orange);
}

.hero__text {
  color: #d6d1c7;
  font-size: 17px;
  line-height: 1.68;
  margin: 25px 0 0;
  max-width: 600px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.stats {
  display: flex;
  gap: 42px;
  margin: 58px 0 0;
}

.stats div {
  min-width: 86px;
}

.stats dt {
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.stats dd {
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 6px 0 0;
  text-transform: uppercase;
}

.quote-card {
  background: linear-gradient(180deg, rgba(13, 28, 36, 0.97), rgba(7, 15, 21, 0.97));
  border: 1px solid #1f6c80;
  border-radius: 7px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
  padding: 32px 29px 27px;
}

.quote-card h2 {
  font-size: 26px;
}

.quote-card > p {
  color: var(--muted);
  font-size: 11px;
  margin: 4px 0 19px;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form label {
  color: #c4beb5;
  display: grid;
  font-size: 10px;
  font-weight: 900;
  gap: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select {
  appearance: none;
  background-color: var(--bronze);
  border: 1px solid #2d8da3;
  border-radius: 3px;
  color: #effcff;
  min-height: 40px;
  padding: 0 16px;
  width: 100%;
}

.quote-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brand-blue-soft) 50%), linear-gradient(135deg, var(--brand-blue-soft) 50%, transparent 50%);
  background-position: calc(100% - 15px) 17px, calc(100% - 10px) 17px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.quote-form input::placeholder {
  color: #aee7f2;
  opacity: 0.72;
}

.quote-form button {
  margin-top: 4px;
  width: 100%;
}

.quote-form small {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.section {
  padding: var(--section-y) 0;
}

.services,
.process,
.reviews {
  background: var(--section);
}

.section-heading {
  margin-bottom: var(--section-heading-gap);
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.mobile-service h2,
.final-cta h2 {
  font-size: clamp(56px, 5.8vw, 72px);
}

.section-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0;
}

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

.service-card {
  background-color: #141414;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  min-height: 324px;
  overflow: hidden;
  position: relative;
}

.service-card::after {
  background: linear-gradient(180deg, rgba(5, 6, 9, 0.04) 0%, rgba(7, 8, 12, 0.24) 34%, rgba(7, 8, 12, 0.82) 66%, rgba(7, 8, 12, 0.99) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.service-card__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: var(--service-image-position, center);
  position: absolute;
  width: 100%;
}

.service-card--repair .service-card__image { object-position: center 45%; }
.service-card--replacement .service-card__image { object-position: center 46%; }
.service-card--side .service-card__image { object-position: 48% 48%; }
.service-card--mobile .service-card__image { object-position: 28% center; }
.service-card--adas .service-card__image { object-position: 55% 38%; }
.service-card--insurance .service-card__image { object-position: center 42%; }

.service-card__content {
  bottom: 0;
  left: 0;
  padding: 0 24px 28px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.service-card__icon {
  color: var(--orange);
  display: block;
  font-size: 13px;
  margin-bottom: 11px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 9px;
}

.service-card p {
  color: #c9c4bd;
  font-size: 13px;
  line-height: 1.58;
  margin: 0 0 18px;
}

.service-card a {
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  background: #0c0e13;
  border-bottom: 1px solid #20323a;
  border-top: 1px solid #1d3440;
  padding: 26px 0;
}

.trust-strip__inner {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip article {
  align-items: center;
  display: flex;
  gap: 11px;
}

.trust-strip article > span {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.trust-strip h2 {
  font-size: 20px;
}

.trust-strip p {
  color: var(--muted);
  font-size: 11px;
  margin: 4px 0 0;
}

.process {
  padding-bottom: 104px;
  padding-top: 96px;
}

.process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 50px auto 0;
  max-width: 840px;
  position: relative;
}

.process-grid::before {
  border-top: 2px dotted #1c7890;
  content: "";
  left: 19%;
  opacity: 0.55;
  position: absolute;
  right: 19%;
  top: 40px;
}

.process-step {
  padding: 0 34px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-step__icon {
  align-items: center;
  background: var(--card-brown-light);
  border: 1px solid #1c7890;
  border-radius: 50%;
  color: var(--orange);
  display: inline-flex;
  font-size: 25px;
  height: 64px;
  justify-content: center;
  margin: 0 auto 28px;
  width: 64px;
}

.process-step__icon::after {
  align-items: center;
  background: #0f2731;
  border: 1px solid #2d8da3;
  border-radius: 50%;
  color: var(--orange);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: flex;
  font-size: 8px;
  font-weight: 900;
  height: 17px;
  justify-content: center;
  position: absolute;
  transform: translate(28px, -28px);
  width: 17px;
}

.process-grid {
  counter-reset: step;
}

.process-step h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.mobile-service {
  background: #080a0f;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 620px;
}

.mobile-service__image {
  background: linear-gradient(90deg, rgba(4, 6, 10, 0.08), rgba(6, 8, 13, 0.74)),
    url("IMG_9646.JPG");
  background-position: center;
  background-size: cover;
}

.mobile-service__content {
  align-self: center;
  max-width: 540px;
  padding: 76px 54px 76px 82px;
}

.mobile-service h2 {
  max-width: 390px;
}

.mobile-service__content > p:not(.eyebrow) {
  color: #c9c4bd;
  font-size: 15px;
  line-height: 1.68;
  margin: 24px 0 30px;
}

.mobile-service__actions {
  align-items: center;
  display: flex;
  gap: 18px;
}

.mobile-service small {
  color: var(--muted);
  font-size: 11px;
}

.reviews {
  padding-bottom: 98px;
  padding-top: 96px;
}

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

.review-card {
  background: var(--card-brown);
  border: 1px solid var(--line-bright);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 224px;
  padding: 31px 31px 27px;
}

.stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0.13em;
  margin-bottom: 16px;
}

.review-card blockquote {
  color: #eee7df;
  font-size: 14px;
  font-style: italic;
  line-height: 1.62;
  margin: 0 0 22px;
}

.review-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.review-card strong {
  color: #fff;
  font-size: 12px;
}

.review-card span {
  color: var(--muted);
  font-size: 10px;
}

.final-cta {
  background: #090b11;
  border-bottom: 1px solid var(--line);
  min-height: 430px;
  padding: 96px 0 92px;
}

.final-cta__inner {
  align-items: center;
  display: grid;
  gap: 86px;
  grid-template-columns: minmax(0, 1fr) 380px;
}

.final-cta h2 {
  max-width: 390px;
}

.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  margin: 24px 0 0;
  max-width: 440px;
}

.final-cta__actions {
  display: grid;
  gap: 12px;
  width: 100%;
}

.final-cta__actions .button {
  min-height: 54px;
  width: 100%;
}

.footer {
  background: #081118;
  padding-top: 52px;
}

.footer__inner {
  display: grid;
  gap: 62px;
  grid-template-columns: 1.35fr 1fr 1fr 1.45fr;
  padding-bottom: 46px;
}

.footer__brand .logo__image {
  width: 112px;
}

.footer__brand p {
  line-height: 1.7;
  margin: 18px 0 19px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 17px;
}

.social-links a {
  color: var(--dim);
  font-weight: 900;
}

.footer__column {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer__column h2 {
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 21px;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.footer__contact p {
  line-height: 1.55;
  margin: 0;
}

.footer__contact span {
  color: var(--orange);
}

.footer__bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
}

.footer__bottom p {
  margin: 0;
}

.footer__credit-link {
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer__credit-link:hover,
.footer__credit-link:focus-visible {
  color: var(--orange);
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .container {
    padding: 0 28px;
  }

  .main-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions__phone {
    display: none;
  }

  .hero__inner {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  h1 {
    font-size: clamp(64px, 6.8vw, 82px);
  }

  .trust-strip__inner {
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .quote-card {
    max-width: 540px;
  }
}

@media (max-width: 880px) {
  .utility-bar {
    height: auto;
  }

  .utility-bar__inner {
    gap: 8px;
    grid-template-columns: 1fr;
    height: auto;
    justify-items: center;
    padding-bottom: 8px;
    padding-top: 8px;
    text-align: center;
  }

  .utility-bar__phone,
  .utility-bar__button {
    justify-self: center;
  }

  .main-header__inner {
    grid-template-columns: auto auto;
    min-height: 70px;
  }

  .nav-toggle-label {
    display: grid;
    gap: 5px;
    justify-self: end;
  }

  .nav-toggle-label span {
    background: var(--text);
    display: block;
    height: 2px;
    width: 28px;
  }

  .nav {
    background: #0f171d;
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    padding: 12px 0 20px;
  }

  .nav a {
    padding: 10px 0;
  }

  .nav__link {
    width: 100%;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner,
  .service-grid,
  .trust-strip__inner,
  .process-grid,
  .review-grid,
  .final-cta__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(60px, 15vw, 78px);
  }

  .stats {
    flex-wrap: wrap;
    margin-top: 46px;
  }

  .quote-card {
    max-width: 540px;
  }

  .service-card {
    min-height: 300px;
  }

  .trust-strip article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .process-grid {
    gap: 36px;
  }

  .process-grid::before {
    border-left: 2px dotted #1c7890;
    border-top: 0;
    bottom: 15%;
    left: 50%;
    right: auto;
    top: 10%;
  }

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

  .mobile-service__image {
    min-height: 360px;
  }

  .mobile-service__content {
    max-width: none;
    padding: 58px 28px;
  }


  .footer__inner {
    gap: 34px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding-bottom: 18px;
    padding-top: 18px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .hero__buttons,
  .mobile-service__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .quote-form button {
    width: 100%;
  }

  .quote-card {
    padding: 25px 20px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .mobile-service h2,
  .final-cta h2 {
    font-size: 50px;
  }

  .hero-title__line {
    white-space: normal;
  }
}

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

.service-hero {
  background-color: #071018;
  background-image: var(--service-hero-image);
  background-position: center;
  background-size: cover;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.service-hero::before {
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(7, 9, 13, 0.86) 44%, rgba(7, 9, 13, 0.45) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.service-hero__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: var(--service-image-position, center);
  position: absolute;
  width: 100%;
}

.service-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  max-width: 780px;
  padding-bottom: 88px;
  padding-top: 88px;
  position: relative;
  z-index: 2;
}

.service-hero p:not(.eyebrow) {
  color: #d6d1c7;
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 650px;
}

.service-detail {
  background: var(--section);
}

.service-detail__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.service-copy h2,
.service-sidebar h2 {
  font-size: 42px;
  margin: 0 0 18px;
}

.service-copy p,
.service-copy li,
.service-sidebar p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding-left: 22px;
}

.service-copy li::marker {
  color: var(--orange);
}

.service-sidebar {
  align-self: start;
  background: var(--card-brown);
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  padding: 30px;
}

.service-sidebar strong {
  color: var(--orange);
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-top: 18px;
  text-transform: uppercase;
}

.adas-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
}

.adas-feature-list span {
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: #effcff;
  font-size: 12px;
  padding: 8px 12px;
}

.related-services {
  background: #090b11;
}

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

.related-card {
  background: #0f171d;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}

.related-card span {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: var(--heading-track);
  text-transform: uppercase;
}

.related-card small {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .service-grid,
  .service-detail__grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .service-hero__inner {
    padding-bottom: 64px;
    padding-top: 64px;
  }
}

@media (min-width: 881px) {
  .nav {
    gap: 18px;
  }

  .nav__link {
    white-space: nowrap;
  }
}

/* Mobile-first UX, SEO content sections, and simplified navigation */
html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}

a,
button,
.nav-toggle-label,
.quote-form input,
.quote-form select {
  min-height: 44px;
}

.nav__item {
  align-items: center;
  display: inline-flex;
  line-height: 1;
  position: relative;
}

.nav__dropdown {
  background: #0f171d;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  display: none;
  left: 50%;
  min-width: 245px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  z-index: 30;
}

.nav__dropdown a {
  border-radius: 5px;
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  padding: 11px 12px;
}

.nav__dropdown a:hover,
.nav__dropdown a:focus-visible {
  background: rgba(10, 168, 192, 0.12);
  color: var(--orange);
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  display: block;
}

.about,
.contact {
  background: #090f15;
}

.about__grid,
.contact__grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: start;
}

.about h2,
.contact h2 {
  font-size: clamp(46px, 5vw, 64px);
  max-width: 680px;
}

.about p,
.contact__details p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.certification-callout {
  background: rgba(10, 168, 192, 0.12);
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  padding: 18px;
}

.certification-callout strong,
.contact__cards strong {
  color: var(--orange);
}

.about__cards,
.contact__cards {
  display: grid;
  gap: 14px;
}

.about__cards article,
.contact__cards p {
  background: var(--card-brown);
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  margin: 0;
  padding: 20px;
}

.about__cards span {
  color: var(--orange);
  font-size: 22px;
}

.about__cards h3 {
  font-size: 28px;
  margin: 8px 0;
}

.contact__cards a,
.contact__cards strong {
  display: block;
}

.map {
  border: 0;
  border-radius: 8px;
  height: 260px;
  margin-top: 18px;
  width: 100%;
}

.mobile-sticky-actions {
  display: none;
}

@media (max-width: 880px) {
  .nav__item,
  .nav__item .nav__link {
    width: 100%;
    text-align: center;
  }

  .nav__dropdown {
    background: rgba(10, 168, 192, 0.08);
    border: 0;
    box-shadow: none;
    display: grid;
    left: auto;
    min-width: 0;
    padding: 0 0 8px;
    position: static;
    transform: none;
    width: 100%;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    order: -1;
  }

  .mobile-sticky-actions {
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 100;
  }

  .mobile-sticky-actions a {
    align-items: center;
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 54px;
    text-transform: uppercase;
  }

  body {
    padding-bottom: 54px;
  }
}

@media (max-width: 560px) {
  .stats {
    gap: 20px;
  }

  .quote-form input,
  .quote-form select {
    min-height: 46px;
  }

  .footer__bottom {
    font-size: 12px;
  }
}

.adas-gallery {
  background: linear-gradient(180deg, rgba(8, 17, 24, 0.96), rgba(13, 21, 27, 0.98));
  border-top: 1px solid rgba(28, 120, 144, 0.22);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 720px;
}

.adas-gallery__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: var(--section-heading-gap);
}

.adas-gallery__item {
  background: #0f171d;
  border: 1px solid rgba(28, 120, 144, 0.34);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  margin: 0;
  overflow: hidden;
}

.adas-gallery__item--large {
  grid-row: span 2;
}

.adas-gallery__item img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.adas-gallery__item--large img {
  aspect-ratio: 3 / 4;
}

.adas-gallery__item figcaption {
  background: rgba(7, 13, 18, 0.92);
  border-top: 1px solid rgba(28, 120, 144, 0.24);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 18px;
}

@media (max-width: 768px) {
  .adas-gallery__grid {
    grid-template-columns: 1fr;
  }

  .adas-gallery__item--large {
    grid-row: auto;
  }

  .adas-gallery__item img,
  .adas-gallery__item--large img {
    aspect-ratio: 4 / 3;
  }
}

.honeypot {
  left: -10000px;
  position: absolute;
}

.form-consent,
.form-status {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.form-status--success { color: var(--brand-blue-soft); }
.form-status--error { color: #ffb4a8; }

#help-bot-launcher,
.help-bot-launcher,
.chatbot-trigger,
.chat-widget-button,
.helpbot {
  bottom: 24px !important;
  display: contents !important;
  inset: auto 24px 24px auto !important;
  left: auto !important;
  margin: 0 !important;
  pointer-events: none;
  position: fixed !important;
  right: 24px !important;
  top: auto !important;
  transform: none !important;
  z-index: 99999 !important;
}

.helpbot__launcher,
.helpbot__form button,
.helpbot__quick button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.helpbot__launcher {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  bottom: 24px !important;
  left: auto !important;
  pointer-events: auto;
  position: fixed !important;
  right: 24px !important;
  top: auto !important;
  border: 2px solid #effcff;
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.38);
  color: #effcff;
  min-height: 52px;
  min-width: 52px;
  padding: 0 22px;
  margin: 0;
  transform: none !important;
  transition: box-shadow 220ms ease;
}

.helpbot__panel {
  background: #0f171d;
  bottom: 88px !important;
  left: auto !important;
  position: fixed !important;
  right: 24px !important;
  top: auto !important;
  border: 1px solid rgba(135, 214, 234, 0.45);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  color: var(--text);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  max-height: min(640px, calc(100vh - 130px - env(safe-area-inset-bottom, 0px)));
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 240ms ease, transform 240ms ease;
  width: min(380px, calc(100vw - 28px - env(safe-area-inset-right, 0px)));
}

.helpbot--open .helpbot__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.helpbot__panel--closing {
  pointer-events: none;
}

.helpbot__panel header {
  align-items: center;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  color: #effcff;
  display: flex;
  gap: 8px;
  padding: 12px 14px;
}

.helpbot__brand {
  align-items: center;
  background: #effcff;
  border-radius: 10px;
  display: flex;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  width: 44px;
}

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

.helpbot__panel h2 {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0;
  margin: 0;
}

.helpbot__panel header button {
  background: rgba(7, 13, 18, 0.25);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 8px;
  color: #fff;
  min-height: 38px;
  min-width: 38px;
  transition: background 180ms ease, transform 180ms ease;
}

.helpbot__messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  overflow-y: auto;
  padding: 14px;
}

.helpbot__msg {
  border-radius: 14px;
  line-height: 1.45;
  margin: 0;
  max-width: 88%;
  padding: 10px 12px;
}

.helpbot__welcome {
  animation: helpbot-welcome-in 280ms ease both;
  display: grid;
  gap: 10px;
  max-width: 94%;
}

.helpbot__welcome strong {
  color: #effcff;
  font-size: 15px;
}

.helpbot__welcome span {
  display: block;
}

@keyframes helpbot-welcome-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .helpbot__launcher,
  .helpbot__welcome {
    animation: none;
  }

  .helpbot__launcher,
  .helpbot__panel,
  .helpbot__panel header button,
  .helpbot__quick button,
  .helpbot__form button {
    transition: none;
  }
}

.helpbot__msg--bot {
  align-self: flex-start;
  background: #16252e;
  border: 1px solid rgba(135, 214, 234, 0.18);
}

.helpbot__msg--user {
  align-self: flex-end;
  background: var(--brand-blue);
  color: #041116;
}

.helpbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
}

.helpbot__quick button {
  background: #effcff;
  border: 1px solid rgba(135, 214, 234, 0.65);
  border-radius: 999px;
  color: #05131a;
  flex: 1 1 auto;
  min-height: 40px;
  padding: 9px 12px;
  transition: background 180ms ease, transform 180ms ease;
}

.helpbot__form {
  border-top: 1px solid rgba(135, 214, 234, 0.22);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 12px;
}

.helpbot__form label {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.helpbot__form input {
  background: #081118;
  border: 1px solid rgba(135, 214, 234, 0.4);
  border-radius: 10px;
  color: var(--text);
  min-height: 44px;
  padding: 0 12px;
}

.helpbot__form button {
  background: var(--brand-blue);
  border-radius: 10px;
  color: #041116;
  min-height: 44px;
  padding: 0 14px;
  transition: filter 180ms ease, transform 180ms ease;
}

.helpbot__panel header button:hover,
.helpbot__quick button:hover,
.helpbot__form button:hover {
  transform: translateY(-1px);
}

.helpbot__panel header button:active,
.helpbot__quick button:active,
.helpbot__form button:active {
  transform: translateY(1px) scale(0.98);
}

.helpbot__panel header button:hover {
  background: rgba(135, 214, 234, 0.14);
}

.helpbot__quick button:hover {
  background: var(--brand-blue-soft);
}

.helpbot__form button:hover {
  filter: brightness(1.08);
}

.helpbot__status {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.helpbot button:focus-visible,
.helpbot input:focus-visible,
.lead-form input:focus-visible,
.lead-form select:focus-visible {
  outline: 3px solid var(--brand-blue-soft);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  #help-bot-launcher,
  .help-bot-launcher,
  .chatbot-trigger,
  .chat-widget-button,
  .helpbot {
    bottom: 16px !important;
    inset: auto 16px 16px auto !important;
    left: auto !important;
    right: 16px !important;
    top: auto !important;
    transform: none !important;
  }

  .helpbot__launcher {
    bottom: 16px !important;
    right: 16px !important;
  }

  .helpbot__panel {
    bottom: 80px !important;
    right: 16px !important;
    max-height: calc(100vh - 88px - env(safe-area-inset-bottom, 0px));
    width: min(380px, calc(100vw - 32px - env(safe-area-inset-right, 0px)));
  }

  .helpbot__messages {
    min-height: 220px;
  }

  .helpbot__quick button {
    flex-basis: calc(50% - 8px);
    min-height: 48px;
  }
}
