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

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

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

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

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

:root {
  --bg: #0A071B;
  --surface: #1B182B;
  --surface-2: #393142;
  --text: #A89FA7;
  --white: #FFFFFF;
  --accent: #BB3247;
  --stroke: #2B2436;
  --max-width: 1120px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 24px rgba(8, 6, 18, 0.2);
  --shadow-card: 0 20px 40px rgba(8, 6, 18, 0.28);
  --shadow-soft-light: 0 12px 28px rgba(15, 12, 24, 0.12);
  --shadow-card-light: 0 18px 40px rgba(15, 12, 24, 0.16);
  --card-shadow: var(--shadow-soft);
  --card-shadow-hover: var(--shadow-card);
  --icon-size: clamp(64px, 6vw, 84px);
  --icon-img-size: clamp(34px, 3.6vw, 48px);
  --icon-radius: 16px;
  --icon-bg: rgba(187, 50, 71, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(1200px 700px at 15% -10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(255, 255, 255, 0.04), transparent 65%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--white);
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 1000;
}

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

.container {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 7vw, 96px) 0;
  border-top: 1px solid var(--stroke);
}

.section--light {
  background: linear-gradient(180deg, #F7F6FA 0%, #F1EEF6 100%);
  color: #1B182B;
  border-top-color: #E2DEE8;
  --card-shadow: var(--shadow-soft-light);
  --card-shadow-hover: var(--shadow-card-light);
  --icon-bg: rgba(187, 50, 71, 0.12);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: #0A071B;
}

.section--light p,
.section--light .list li {
  color: #1B182B;
}

.section--light p.lead {
  color: #1B182B;
}

.section--light a {
  color: #0A071B;
}

.section--light a:hover {
  color: var(--accent);
}

.section--light .btn {
  color: var(--white);
}

.section--light .btn:not(.btn-outline):hover {
  color: var(--white);
}

.section--light .btn-outline {
  color: var(--accent);
}

.section--light .btn-outline:hover {
  color: var(--accent);
}

.section--light .card,
.section--light .review-card,
.section--light .pricing-card,
.section--light .form-card,
.section--light .map-panel {
  background: #FFFFFF;
  border-color: #E2DEE8;
  color: #1B182B;
}

.section--light .cta-inline {
  border-color: #E2DEE8;
}

.section--light .review-card .review-label {
  color: #6B6570;
}

.section--light input,
.section--light textarea,
.section--light select {
  background: #FFFFFF;
  border-color: #D6D0DA;
  color: #0A071B;
}

.form-status {
  margin: 12px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  min-height: 1.2em;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: inherit;
}

.form-status.is-success {
  color: #11673b;
}

.form-status.is-error {
  color: #b3261e;
}

.section--light .form-status {
  color: #1B182B;
}

.section--light .cta-banner {
  background: var(--surface);
  border-color: var(--surface-2);
  color: var(--text);
}

.section--light .cta-banner h2 {
  color: var(--white);
}

.section--light .cta-banner p {
  color: var(--text);
}

.section--tight {
  padding: clamp(48px, 6vw, 72px) 0;
}

@supports (content-visibility: auto) {
  .page-home .section,
  .page-lift-maintenance .section,
  .page-lift-repairs .section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(187, 50, 71, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.brand-strip__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 18px;
}

.brand-strip {
  overflow-x: hidden;
}

.brand-strip--navy {
  background: #141226;
}

.brand-strip--navy .brand-strip__marquee {
  background:
    linear-gradient(180deg, rgba(20, 18, 38, 0.35) 0%, rgba(20, 18, 38, 0) 28%),
    linear-gradient(0deg, rgba(20, 18, 38, 0.35) 0%, rgba(20, 18, 38, 0) 28%),
    #F5F4F7;
  border-top-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.brand-strip--navy .brand-strip__item img {
  opacity: 0.9;
  filter: none;
}

.page-home .brand-strip {
  padding-bottom: 28px;
}

.page-home .brand-strip + .section--light {
  padding-top: 36px;
  border-top: 0;
}

.brand-strip__header h2 {
  margin-bottom: 8px;
}

.brand-strip__marquee {
  position: relative;
  display: flex;
  gap: 48px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  padding: 26px 0;
  border-top: 1px solid #E2DEE8;
  border-bottom: 1px solid #E2DEE8;
  cursor: default;
}

.brand-strip__marquee::-webkit-scrollbar {
  display: none;
}

.brand-strip__track {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
  min-width: max-content;
  animation: brand-marquee 24s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.brand-strip__marquee.is-paused {
  cursor: grabbing;
}

.brand-strip__marquee.is-js .brand-strip__track {
  animation: none;
}

.brand-strip__marquee.is-js {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (hover: none) and (pointer: coarse) {
  .brand-strip__marquee.is-js {
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    cursor: grab;
  }
}

.brand-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.brand-strip__item img {
  height: clamp(28px, 3.5vw, 44px);
  width: auto;
  opacity: 0.75;
  filter: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.brand-strip__item--schindler img {
  height: clamp(34px, 4.2vw, 56px);
}

.brand-strip__item:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

p {
  margin: 0 0 18px;
  text-wrap: pretty;
}

p.lead {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #0A071B;
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  overflow: visible;
  --nav-height: 110px;
}

.topbar {
  font-size: 0.8rem;
  color: var(--text);
  border-bottom: 1px solid var(--stroke);
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-text--mobile {
  display: none;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--nav-height);
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 210;
  height: 100%;
  padding: 0;
  line-height: 0;
  overflow: visible;
  margin-left: -60px;
}

.brand img {
  width: auto;
  height: 68px;
  max-height: none;
  object-fit: contain;
  display: block;
  transform: scale(1);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-link {
  color: var(--text);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-item > .nav-link::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 6px;
  color: var(--text);
}

.nav-item > .nav-link.is-active::after {
  color: var(--accent);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #111024;
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 200;
}

.dropdown a,
.dropdown-link {
  color: var(--text);
  padding: 6px 8px;
  border-radius: 8px;
  border-bottom: 0;
}

.dropdown-link {
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-link::after {
  content: "▸";
  font-size: 0.7rem;
  color: var(--text);
  transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover::after,
.dropdown-link.is-active::after {
  color: var(--white);
}

.dropdown a.is-active,
.dropdown-link.is-active {
  background: rgba(187, 50, 71, 0.18);
  color: var(--white);
}

.dropdown a:hover,
.dropdown-link:hover {
  background: rgba(187, 50, 71, 0.18);
  color: var(--white);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu__panel {
  position: absolute;
  left: calc(100% + 10px);
  top: -10px;
  background: #111024;
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 210;
}

.dropdown-submenu.is-open .dropdown-submenu__panel {
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    display: flex;
  }

  .dropdown-submenu:hover .dropdown-submenu__panel,
  .dropdown-submenu:focus-within .dropdown-submenu__panel {
    display: flex;
  }
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(187, 50, 71, 0.35);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  color: var(--accent);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  padding: 96px 0 72px;
}

.hero--full {
  position: relative;
  min-height: calc(100vh - var(--header-height, 140px));
  min-height: calc(100svh - var(--header-height, 140px));
  padding: clamp(64px, 7vw, 88px) 0 clamp(48px, 6vw, 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}

.hero--full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 7, 27, 0.82) 0%, rgba(10, 7, 27, 0.72) 58%, rgba(10, 7, 27, 0.64) 100%);
  z-index: 1;
}

.hero--full .hero-copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero .tag {
  margin-bottom: 16px;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.page-home .hero--full {
  border-bottom: none;
}

.page-home .hero--full::after {
  background: linear-gradient(120deg, rgba(10, 7, 27, 0.86) 0%, rgba(10, 7, 27, 0.78) 55%, rgba(10, 7, 27, 0.7) 100%);
}

.page-home .hero-media-bg {
  display: block;
  padding: 0;
  pointer-events: none;
}

.page-home .hero-media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(0.9) brightness(0.82) contrast(1.05);
}

.page-durant-os .hero-media-bg img {
  filter: saturate(0.9) brightness(0.7) contrast(1.05);
}


.hero-media-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-lift-repairs .hero-media-bg video {
  object-position: center 72%;
  transform: scale(0.96);
  transform-origin: center 72%;
}

.page-lift-repairs .hero-media video {
  object-position: center 72%;
}

.page-24-7-emergency-call-outs .hero-media-bg img {
  object-position: left center;
}

.page-lift-repairs .hero-media-bg img {
  object-position: center;
  filter: saturate(0.9) brightness(0.72) contrast(1.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
}

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

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-highlights {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.hero-highlights--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

@media (max-width: 640px) {
  .hero-highlights--two-col {
    grid-template-columns: 1fr;
  }
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(187, 50, 71, 0.2);
}

.trust-note {
  margin: 0 0 28px;
  color: var(--text);
  font-weight: 500;
  max-width: 620px;
}

.repair-request__copy {
  display: grid;
  gap: 24px;
}

.repair-request__intro,
.repair-request__steps {
  display: grid;
  gap: 12px;
}

.repair-request__intro > *,
.repair-request__steps > * {
  margin: 0;
}

.repair-request__copy .trust-note {
  margin: 0;
}

.faq-section .trust-note {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-badge img {
  width: clamp(96px, 18vw, 140px);
  height: clamp(96px, 18vw, 140px);
  object-fit: contain;
}

.safecontractor-section .grid {
  align-items: center;
}

.safecontractor-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.safecontractor-badge img {
  width: clamp(260px, 34vw, 440px);
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s ease;
  transform: translateZ(0);
}

.safecontractor-badge:hover img {
  transform: scale(1.06);
}

.footer-badge {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.footer-badge:hover {
  transform: scale(1.06);
}

.section--light .trust-note {
  color: #1B182B;
}

.grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vehicle-info .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(22px, 3.5vw, 36px);
}

.info-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 34px);
  display: grid;
  gap: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, rgba(187, 50, 71, 0.9) 0%, rgba(187, 50, 71, 0) 65%);
}

.info-card__header {
  display: grid;
  gap: 8px;
}

.info-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.info-card .lead {
  margin: 0;
  color: var(--white);
}

.list--compact {
  gap: 8px;
}

.vehicle-related .info-card--wide {
  width: 100%;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
}

.link-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--surface-2);
  background: #171326;
  color: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 220px;
  min-width: 220px;
}

.link-card__title {
  font-weight: 600;
  color: var(--white);
}

.link-card__meta {
  font-size: 0.95rem;
  color: var(--text);
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(187, 50, 71, 0.6);
  box-shadow: var(--card-shadow-hover);
}

.section--light .info-card {
  background: #FFFFFF;
  border-color: #E2DEE8;
}

.section--light .info-card::before {
  background: linear-gradient(90deg, rgba(187, 50, 71, 0.65) 0%, rgba(187, 50, 71, 0) 65%);
}

.section--light .info-card .lead {
  color: #1B182B;
}

.section--light .link-card {
  background: #FFFFFF;
  border-color: #E2DEE8;
}

.section--light .link-card__title {
  color: #0A071B;
}

.section--light .link-card__meta {
  color: #5F5D6A;
}

.faq-grid {
  gap: clamp(12px, 2vw, 20px);
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-size: 1.02rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(187, 50, 71, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "-";
  background: rgba(187, 50, 71, 0.22);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
}

.section--light .faq-item {
  background: #FFFFFF;
  border-color: #E2DEE8;
  color: #1B182B;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: rgba(187, 50, 71, 0.12);
  color: var(--white);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.section--light .faq-item summary:hover,
.section--light .faq-item summary:focus-visible {
  background: rgba(187, 50, 71, 0.08);
  color: #0A071B;
}

.fault-categories .card h3 {
  text-align: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.card-action {
  margin-top: auto;
}

.faq-card {
  padding: 18px;
}

.card h3 {
  margin: 0;
  line-height: 1.2;
}

.card p {
  margin: 0;
}

.faq-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.icon {
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: var(--icon-radius);
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  margin: 0 auto;
}

.icon img {
  width: var(--icon-img-size);
  height: var(--icon-img-size);
  object-fit: contain;
}

.services-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  --icon-size: clamp(92px, 8vw, 124px);
  --icon-img-size: clamp(60px, 5.5vw, 86px);
  --icon-radius: 0;
  --icon-bg: transparent;
}

.services-grid .card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  text-align: center;
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --services-delay: 0s;
}

.services-grid .card.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--services-delay);
  will-change: transform, opacity;
}

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

.services-grid .card.reveal .icon {
  transform: translateY(16px);
  transition: transform 0.9s ease;
  transition-delay: calc(var(--services-delay) + 0.1s);
}

.services-grid .card.reveal.is-visible .icon {
  transform: translateY(0);
}

.services-grid .card p {
  margin-bottom: 0;
}

.services-grid .service-areas {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}

.section--light .services-grid .service-areas {
  color: #3B3447;
}

.services-grid .service-areas a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(187, 50, 71, 0.4);
  text-underline-offset: 2px;
}

.services-grid .service-areas a:hover {
  color: var(--accent);
  text-decoration-color: rgba(187, 50, 71, 0.75);
}

.services-grid .icon img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.services-grid .card:hover .icon img {
  transform: scale(1.08);
}

.services-grid a.service-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
}

.services-grid .card:nth-child(1),
.services-grid .card:nth-child(2) {
  grid-column: span 6;
}

.services-grid .card:nth-child(1) {
  --services-delay: 0.05s;
}

.services-grid .card:nth-child(2) {
  --services-delay: 0.12s;
}

.services-grid .card:nth-child(3) {
  --services-delay: 0.18s;
}

.services-grid .card:nth-child(4) {
  --services-delay: 0.24s;
}

.services-grid .card:nth-child(5) {
  --services-delay: 0.3s;
}

.services-grid .card:nth-child(6) {
  --services-delay: 0.36s;
}

.services-grid .card:nth-child(7) {
  --services-delay: 0.42s;
}

.services-grid .card:nth-child(8) {
  --services-delay: 0.48s;
}

.services-grid .card:nth-child(9) {
  --services-delay: 0.54s;
}

.services-grid--six .card:nth-child(1),
.services-grid--six .card:nth-child(2) {
  grid-column: span 4;
}

.services-grid--four .card {
  grid-column: span 6;
}

.page-durant-os .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.page-durant-os .services-grid .card {
  grid-column: auto;
}

.page-durant-os .services-grid .card:nth-child(1),
.page-durant-os .services-grid .card:nth-child(2) {
  grid-column: auto;
}

.page-durant-os .services-grid .card:nth-child(6) {
  --services-delay: 0.36s;
}

.page-durant-os .services-grid .card:nth-child(7) {
  --services-delay: 0.42s;
}

.page-durant-os .services-grid .card:nth-child(8) {
  --services-delay: 0.48s;
}

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

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.list li.list-item--social {
  padding-left: 0;
}

.list li.list-item--social::before {
  content: none;
}

.related-services__types {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--surface-2);
}

.section--light .related-services__types {
  border-top-color: #E2DEE8;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.social-link .social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover .social-icon {
  opacity: 1;
  transform: translateY(-1px);
}

.list.reveal li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.list.reveal li:nth-child(1) {
  transition-delay: 0.06s;
}

.list.reveal li:nth-child(2) {
  transition-delay: 0.12s;
}

.list.reveal li:nth-child(3) {
  transition-delay: 0.18s;
}

.list.reveal li:nth-child(4) {
  transition-delay: 0.24s;
}

.list.reveal li:nth-child(5) {
  transition-delay: 0.3s;
}

.list.reveal li:nth-child(6) {
  transition-delay: 0.36s;
}

.list.reveal li:nth-child(7) {
  transition-delay: 0.42s;
}

.list.reveal li:nth-child(8) {
  transition-delay: 0.48s;
}

.list.reveal li:nth-child(9) {
  transition-delay: 0.54s;
}

.grid:not(.services-grid) > .reveal {
  --reveal-delay: 0s;
}

.grid:not(.services-grid) > .reveal:nth-child(1) {
  --reveal-delay: 0.06s;
}

.grid:not(.services-grid) > .reveal:nth-child(2) {
  --reveal-delay: 0.12s;
}

.grid:not(.services-grid) > .reveal:nth-child(3) {
  --reveal-delay: 0.18s;
}

.grid:not(.services-grid) > .reveal:nth-child(4) {
  --reveal-delay: 0.24s;
}

.grid:not(.services-grid) > .reveal:nth-child(5) {
  --reveal-delay: 0.3s;
}

.grid:not(.services-grid) > .reveal:nth-child(6) {
  --reveal-delay: 0.36s;
}

.grid:not(.services-grid) > .reveal:nth-child(7) {
  --reveal-delay: 0.42s;
}

.grid:not(.services-grid) > .reveal:nth-child(8) {
  --reveal-delay: 0.48s;
}

.grid:not(.services-grid) > .reveal:nth-child(9) {
  --reveal-delay: 0.54s;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #E2DEE8;
  background: #F7F5FA;
  color: #2C2934;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 12, 24, 0.12);
}

.reviews-arrow:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

.reviews-carousel {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  .reviews-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
  }
}

.review-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.review-slide .review-card {
  width: var(--review-card-width, 80%);
  max-width: 860px;
}

.reviews-shell {
  background: #FFFFFF;
  border: 1px solid #E2DEE8;
  border-radius: 0;
  padding: clamp(24px, 4vw, 36px) 0;
  box-shadow: var(--card-shadow);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.reviews-inner {
  width: min(var(--max-width), 90vw);
  margin: 0 auto 12px;
}

.reviews-lead {
  margin: 6px 0 20px;
  color: #2B2733;
}

.reviews-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  --review-card-width: 80%;
  --review-arrow-offset: -4px;
}

.reviews-carousel-wrap .reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.reviews-swipe-hint {
  display: none;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: #6B6675;
  letter-spacing: 0.02em;
}

.reviews-carousel-wrap .reviews-arrow[data-review-prev] {
  left: max(12px, calc((100% - var(--review-card-width)) / 2 - var(--review-arrow-offset)));
}

.reviews-carousel-wrap .reviews-arrow[data-review-next] {
  right: max(12px, calc((100% - var(--review-card-width)) / 2 - var(--review-arrow-offset)));
}

.review-card {
  background: #111024;
  border: 1px solid var(--surface-2);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card .review-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 10px;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: #F5C542;
}

.review-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.review-card p + p {
  font-weight: 600;
  color: #2B2733;
  font-size: 0.92rem;
}

.reviews-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.reviews-title {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-logo {
  height: 30px;
  width: auto;
}

.reviews-heading h2 {
  margin: 0;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  pointer-events: none;
}

.star-rating svg {
  width: 1em;
  height: 1em;
  fill: #F5C542;
  transition: opacity 0.2s ease;
  transform-origin: center;
  cursor: default;
}

.star-rating svg.is-popping {
  animation: star-pop 0.45s ease-out 0.2s;
}

@keyframes star-pop {
  0% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 0 rgba(245, 197, 66, 0));
  }
  40% {
    transform: scale(1.55);
    filter: drop-shadow(0 0 12px rgba(245, 197, 66, 0.6));
  }
  70% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(245, 197, 66, 0.4));
  }
  100% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 0 rgba(245, 197, 66, 0));
  }
}

.cta-banner {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.cta-inline--centered {
  margin: 0 auto;
  position: relative;
  top: -10px;
}

.section--cta-center {
  padding: 0;
  min-height: clamp(220px, 22vw, 280px);
  display: flex;
  align-items: center;
}

.section--cta-center > .container {
  width: min(var(--max-width), 90vw);
}

.cta-inline__text h2 {
  margin-bottom: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.pricing-card {
  background: #141226;
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.pricing-card h3 {
  margin-bottom: 6px;
}

.pricing-meta {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 12px;
}

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

.risk-section .card {
  text-align: center;
}

.section--light .pricing-meta {
  color: #1B182B;
}

.pricing-section {
  display: grid;
  gap: 6px;
}

.pricing-section + .pricing-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-section h4 {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.pricing-section .list {
  gap: 8px;
}

.section--light .pricing-section + .pricing-section {
  border-top-color: #E2DEE8;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

form {
  display: grid;
  gap: 14px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--surface-2);
  background: #0f0d1f;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(187, 50, 71, 0.6);
  box-shadow: 0 0 0 3px rgba(187, 50, 71, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-panel {
  background: linear-gradient(135deg, #141226 0%, #1a1630 60%, #22203a 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-2);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 14px;
  font-size: 0.95rem;
}

.page-contact-us .contact-hero {
  padding: 40px 0;
}

.page-contact-us .contact-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.page-contact-us .contact-hero p.lead {
  font-size: 1rem;
  margin-bottom: 12px;
}

.page-contact-us .contact-hero__grid {
  gap: 18px;
}

.page-contact-us .contact-hero .hero-highlights {
  color: #0A071B;
}

.page-contact-us .form-card {
  padding: 18px;
}

.page-contact-us .form-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 10px;
}

.page-contact-us form {
  gap: 10px;
}

.page-contact-us input,
.page-contact-us textarea,
.page-contact-us select {
  padding: 10px 12px;
  font-size: 0.95rem;
}

.page-contact-us textarea {
  min-height: 110px;
}

.page-contact-us .map-panel {
  padding: 16px;
  margin-top: 0;
}

.page-contact-us .map-grid {
  gap: 8px;
  font-size: 0.9rem;
}

.back-to-top {
  padding: 24px 0;
}

.back-to-top .container {
  display: flex;
  justify-content: flex-end;
}

.back-to-top__link {
  border-color: var(--stroke);
  color: var(--text);
  background: transparent;
}

.back-to-top__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-brand .footer-badge {
  margin: 0 auto;
}

.footer-bottom {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social .social-icon {
  width: 26px;
  height: 26px;
}

.footer-social--contact {
  padding-left: 22px;
}

.footer-social .social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

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

@media (max-width: 960px) {
  .site-header {
    backdrop-filter: none;
  }
  .nav-item::after {
    display: none;
  }

  .reviews-carousel {
    scroll-padding-inline: 0;
  }

  .reviews-carousel-wrap {
    --review-card-width: 90%;
    --review-arrow-offset: -2px;
  }

  .review-slide .review-card {
    width: var(--review-card-width, 90%);
  }

  .reviews-carousel-wrap .reviews-arrow {
    display: none;
  }

  .reviews-swipe-hint {
    display: block;
  }

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

  .hero--full {
    padding: clamp(56px, 10vw, 72px) 0 clamp(40px, 8vw, 56px);
    min-height: calc(100vh - var(--header-height, 120px));
    min-height: calc(100svh - var(--header-height, 120px));
  }

  .page-home .hero-media-bg {
    padding: 0;
    justify-content: center;
  }

  .page-home .hero-media-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
  }


  .brand-strip__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-strip__marquee {
    padding: 12px 0;
  }

  .brand-strip__track {
    gap: 36px;
    animation-duration: 20s;
  }


  .hero--full::after {
    background: linear-gradient(180deg, rgba(10, 7, 27, 0.92) 0%, rgba(10, 7, 27, 0.7) 60%, rgba(10, 7, 27, 0.5) 100%);
  }

  .page-home .hero--full::after {
    background: linear-gradient(180deg, rgba(10, 7, 27, 0.94) 0%, rgba(10, 7, 27, 0.72) 55%, rgba(10, 7, 27, 0.2) 100%);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .services-grid .card {
    grid-column: auto;
  }

  .services-grid .service-areas {
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
  }

  .services-grid .card:nth-child(4),
  .services-grid .card:nth-child(5) {
    grid-column: auto;
  }

  .services-grid .card:nth-child(1),
  .services-grid .card:nth-child(2),
  .services-grid--six .card:nth-child(1),
  .services-grid--six .card:nth-child(2),
  .services-grid--four .card {
    grid-column: auto;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-offset, var(--header-height, 150px));
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100svh - var(--nav-offset, var(--header-height, 150px)));
    background: rgba(10, 7, 27, 0.98);
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px 24px 32px;
    transform: translateY(-12px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid var(--stroke);
    opacity: 0;
    pointer-events: none;
    z-index: 220;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    font-size: 1.05rem;
  }

  .nav-links > .nav-link,
  .nav-links > .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
  }

  .nav-links > .nav-link:last-child,
  .nav-links > .nav-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .nav-links > .nav-link {
    padding: 12px 0;
    font-weight: 600;
  }

  .nav-links.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item > .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-weight: 600;
  }

  .nav-item > .nav-link::after {
    content: "▾";
    font-size: 0.8rem;
    color: var(--text);
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .dropdown {
    position: static;
    display: none;
    background: transparent;
    border: 0;
    padding: 6px 0 0 12px;
    min-width: 0;
    box-shadow: none;
    gap: 8px;
  }

  .nav-item.is-open .dropdown {
    display: grid;
  }

  .nav-item:not(.is-open):focus-within .dropdown {
    display: none;
  }

  .nav-item.is-open > .nav-link::after {
    transform: rotate(180deg);
    color: var(--accent);
  }

  .dropdown a,
  .dropdown-link {
    padding: 6px 0;
    font-size: 0.98rem;
  }

  .dropdown-submenu {
    width: 100%;
  }

  .dropdown-submenu__panel {
    position: static;
    display: none;
    background: transparent;
    border: 0;
    padding: 6px 0 0 12px;
    min-width: 0;
    box-shadow: none;
    gap: 8px;
  }

  .dropdown-submenu.is-open .dropdown-submenu__panel {
    display: grid;
  }

  .dropdown-submenu.is-open > .dropdown-link::after {
    transform: rotate(90deg);
    color: var(--accent);
  }

  .nav-link {
    border-bottom: 0;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    font-size: 0.7rem;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar-text--desktop {
    display: none;
  }

  .topbar-text--mobile {
    display: block;
  }

  .nav-row {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0 12px;
    gap: 16px;
  }

  .brand {
    margin-left: 0;
    height: auto;
  }

  .brand img {
    height: 50px;
  }

  .nav-links {
    padding: 20px 20px 28px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-actions .btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .menu-toggle {
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .services-grid .service-areas {
    font-size: 0.8rem;
    line-height: 1.35;
    margin: 0;
  }


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

  .services-grid .card {
    min-height: auto;
  }
}

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

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

  .btn {
    transition: none;
  }

  .star-rating svg {
    transition: none;
  }

  .star-rating svg.is-popping {
    animation: none;
  }

  .brand-strip__track {
    animation: none;
  }

  .list.reveal li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-grid .card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    box-shadow: none;
  }

  .services-grid .card.reveal .icon {
    transform: none;
    transition: none;
  }
}
:root {
  --bg: #0A071B;
