:root {
  --navy-950: #071321;
  --navy-900: #0b1d2f;
  --navy-800: #13314e;
  --blue-700: #165c92;
  --blue-600: #1f73b7;
  --blue-100: #eaf4fb;
  --yellow-500: #f4c542;
  --yellow-400: #ffd75a;
  --green-600: #1b8b5a;
  --ink: #132236;
  --muted: #5d6b7a;
  --line: #dfe7ef;
  --soft: #f3f7fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(11, 29, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 19, 33, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Keep decorative elements and fixed controls from ever creating horizontal scroll. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

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

button,
a,
summary {
  font: inherit;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
  border-radius: 4px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.65rem);
  max-width: 11ch;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 29, 47, 0.08);
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand__mark svg > path:first-child {
  fill: var(--navy-900);
}

.brand__mark .brand__road {
  fill: var(--yellow-500);
}

.brand__text {
  display: grid;
  line-height: 1.02;
}

.brand__text strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand__text span {
  margin-top: 4px;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.primary-nav a {
  padding-block: 12px;
  color: #30445a;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--blue-600);
}

.button svg,
.mobile-call-bar svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button--header {
  min-height: 46px;
  background: var(--navy-900);
  color: var(--white);
}

.button--primary {
  background: var(--yellow-500);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(244, 197, 66, 0.22);
}

.button--primary:hover {
  background: var(--yellow-400);
  box-shadow: 0 18px 38px rgba(244, 197, 66, 0.3);
}

.button--large {
  min-height: 68px;
  padding: 12px 27px;
  font-size: 1.12rem;
}

.button--large span {
  display: grid;
}

.button--large small {
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(31, 115, 183, 0.35), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #123b5e);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -350px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.025), 0 0 0 144px rgba(255, 255, 255, 0.018);
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 72%);
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  align-items: center;
  gap: 80px;
  padding-block: 90px 96px;
}

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: var(--yellow-400);
}

.eyebrow,
.kicker {
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8e9f6;
}

.eyebrow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow-400);
  box-shadow: 0 0 0 6px rgba(255, 215, 90, 0.12);
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: #d7e4ee;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  color: var(--white);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  margin: 34px 0 0;
  padding: 0;
  color: #d8e5ef;
  font-size: 0.9rem;
  list-style: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow-400);
}

.hero-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.hero-card__icon {
  width: 160px;
  margin: 0 auto 24px;
}

.hero-card__icon circle {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.13);
}

.hero-card__car {
  fill: var(--white);
}

.hero-card__bolt {
  fill: var(--yellow-400);
}

.hero-card__label {
  margin-bottom: 2px;
  color: #c4d8e8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card > a {
  position: relative;
  display: inline-block;
  color: var(--yellow-400);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.hero-card > p:last-child {
  position: relative;
  max-width: 28ch;
  margin: 15px auto 0;
  color: #d6e3ed;
  font-size: 0.93rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip__grid > div {
  min-height: 120px;
  display: grid;
  place-content: center;
  padding: 24px 38px;
  text-align: center;
}

.trust-strip__grid > div + div {
  border-left: 1px solid var(--line);
}

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

.trust-strip strong {
  color: var(--navy-900);
  font-size: 1.22rem;
}

.trust-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-block: 110px;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #d7e4ee;
}

.section--dark::after {
  content: "";
  position: absolute;
  top: -260px;
  left: -260px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: rgba(31, 115, 183, 0.13);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

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

.service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(11, 29, 47, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c4d8e8;
  box-shadow: 0 22px 54px rgba(11, 29, 47, 0.1);
}

.service-card--featured {
  border-top: 5px solid var(--yellow-500);
}

.service-card__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--blue-100);
}

.service-card__icon svg {
  width: 46px;
  height: 46px;
}

.service-card__icon path,
.service-card__icon circle {
  fill: var(--navy-900);
}

.service-card__icon .service-card__accent {
  fill: var(--yellow-500);
}

.service-card__icon .service-card__cutout {
  fill: var(--blue-100);
}


.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--muted);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--blue-700);
  font-weight: 850;
  text-decoration: none;
}

.service-card > a span {
  transition: transform 160ms ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.process-intro h2 {
  color: var(--white);
}

.process-intro > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 30px;
}

.kicker--light {
  color: var(--yellow-400);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.process-list li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.13rem;
}

.process-list p {
  margin: 0;
  color: #c7d8e5;
  font-size: 0.94rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 95px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.7), transparent 20%),
    linear-gradient(145deg, #eaf4fb, #d7e9f5);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(11, 29, 47, 0.08);
  border-radius: 22px;
}

.about-visual svg {
  position: relative;
  z-index: 1;
  width: 90%;
}

.about-visual__road {
  fill: #90a8bb;
}

.about-visual__line {
  fill: var(--white);
}

.about-visual__car {
  fill: var(--navy-900);
}

.about-visual__badge {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 34px;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-visual__badge strong,
.about-visual__badge span {
  display: block;
  line-height: 1;
}

.about-visual__badge strong {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-visual__badge span {
  margin-top: 7px;
  font-size: 1.7rem;
  font-weight: 900;
}

.about-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 21px 23px;
  border-left: 5px solid var(--yellow-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--soft);
}

.about-callout svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: var(--blue-600);
}

.about-callout strong,
.about-callout span {
  display: block;
}

.about-callout span {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 29, 47, 0.045);
}

.faq-list summary {
  position: relative;
  padding: 22px 56px 22px 23px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: -4px 23px 23px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.callout {
  position: relative;
  overflow: hidden;
  padding-block: 70px;
  background: var(--blue-700);
  color: var(--white);
}

.callout::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -220px;
  width: 520px;
  height: 520px;
  border: 82px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.callout__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.callout h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.callout p:not(.kicker) {
  margin-bottom: 0;
  color: #dcecf7;
}

.site-footer {
  padding-top: 72px;
  background: var(--navy-950);
  color: #afc0ce;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 70px;
  padding-bottom: 60px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark svg > path:first-child {
  fill: var(--white);
}

.site-footer__summary {
  max-width: 410px;
  margin: 22px 0 0;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__contact address,
.site-footer__links {
  display: grid;
  gap: 9px;
  font-style: normal;
}

.site-footer__contact a {
  color: var(--yellow-400);
  font-size: 1.16rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer__contact span,
.site-footer__links a {
  color: #afc0ce;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__bottom a:hover {
  color: var(--white);
}

.site-footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 3px;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    display: none;
  }

  .button--header {
    justify-self: end;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 78px;
  }

  .hero__content {
    max-width: 760px;
  }

  /* The call card is valuable as a desktop-side visual, but becomes
     redundant once the layout stacks and a persistent call action is present. */
  .hero-card {
    display: none;
  }

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

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

  .process-layout,
  .about-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    max-width: 650px;
  }

  .section-heading--left {
    max-width: 700px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .site-shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text strong {
    font-size: 0.88rem;
  }

  .brand__text span {
    font-size: 0.7rem;
  }

  .button--header {
    display: none;
  }

  .hero__layout {
    min-height: auto;
    padding-block: 64px 70px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: center;
  }

  .hero__trust {
    display: grid;
  }


  .trust-strip__grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-strip__grid > div {
    min-height: 84px;
  }

  .trust-strip__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 78px;
  }

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

  .service-card {
    padding: 28px;
  }

  .process-layout,
  .about-layout,
  .faq-layout {
    gap: 44px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 21px;
  }

  .process-list li > span {
    width: 44px;
    height: 44px;
  }

  .about-visual {
    min-height: 350px;
  }

  .about-visual__badge {
    top: 22px;
    left: 22px;
    width: 96px;
    height: 96px;
  }

  .about-visual__badge span {
    font-size: 1.42rem;
  }

  .callout__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .callout .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 44px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--navy-950);
    box-shadow: 0 -12px 35px rgba(7, 19, 33, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 180ms ease,
      visibility 0s linear 220ms;
  }

  .mobile-call-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-call-bar a {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    background: var(--yellow-500);
    color: var(--navy-950);
    font-weight: 900;
    line-height: 1.05;
    text-decoration: none;
  }

  .mobile-call-bar svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .mobile-call-bar span {
    display: grid;
    min-width: 0;
  }

  .mobile-call-bar small {
    margin-bottom: 3px;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

@media (max-width: 390px) {
  .brand__text strong {
    font-size: 0.8rem;
  }

  .brand__text span {
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: 2.55rem;
  }
}

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

  .mobile-call-bar {
    transition: none;
  }

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