/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --motion-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration-fast: 220ms;
  --motion-duration-medium: 320ms;
  --motion-shadow-soft: 0 28px 50px rgba(12, 26, 49, 0.12);
  --motion-shadow-strong: 0 32px 58px rgba(4, 20, 35, 0.28);
}

html {
  scroll-behavior: smooth;
}

/* =========================
   FONT (Apple Style)
========================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  color: #10243e;
  background: #f7f8fc;
  line-height: 1.5;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  background:
    radial-gradient(circle at top left, rgba(255, 100, 18, 0.18), transparent 30%),
    linear-gradient(180deg, #08203c 0%, #041423 100%);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(4, 20, 35, 0.28);
  -webkit-font-smoothing: antialiased;
}

/* Container */
.topbar__inner {
  width: 100%;
  margin: 0 auto;
  padding: 10px clamp(24px, 4vw, 56px);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* LEFT */
.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.35;
}

/* Divider */
.divider {
  opacity: 0.25;
}

.topbar__left span,
.topbar__left a {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Links */
.topbar__left a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.28s ease, opacity 0.28s ease, border-color 0.28s ease,
    transform 0.28s ease;
}

.topbar__left a:hover {
  opacity: 1;
  color: #ffb38b;
  border-color: currentColor;
  transform: translateY(-1px);
}

.topbar__left a:focus-visible {
  outline: none;
  border-color: currentColor;
}

/* RIGHT */
.topbar__right {
  display: flex;
  gap: 10px;
}

/* Icons */
.topbar__right a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;

}

.topbar__right a:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 100, 18, 0.18);
  border-color: rgba(255, 100, 18, 0.3);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.topbar__right a:active {
  transform: translateY(0) scale(0.98);
}

.topbar__right a:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .topbar__inner {
    padding: 12px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .topbar__brand,
  .topbar__address,
  .topbar__left .divider {
    display: none;
  }

  .topbar__left {
    gap: 0;
    flex: 1;
  }

  .topbar__right {
    width: auto;
    flex-shrink: 0;
  }
}


/*NAV*/

header {
  position: sticky;
  top: 0;
  z-index: 34;
}

/* =========================
   MAIN NAV
========================= */
.main-nav {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 59, 161, 0.08);
  box-shadow: 0 12px 30px rgba(12, 26, 49, 0.08);
}

.main-nav__inner {
  width: 100%;
  padding: 0.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: 108px;
  height: auto;
  display: block;
}

/* MOBILE BUTTON */
.main-nav__toggle {
  display: none;
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.main-nav__toggle i {
  font-size: 1.8rem;
  color: #003BA1;
  line-height: 1;
}

/* RIGHT SIDE */
.main-nav__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav__item {
  position: relative;
}

/* MAIN LINKS */
.main-nav__list > li > a {
  color: #003BA1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
  transition: color 0.25s ease;
}

.main-nav__list > li > a:hover {
  color: #FF6412;
}

.main-nav__list > li > a[aria-current="page"] {
  color: #FF6412;
}

.main-nav__list > li > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #FF6412;
  border-radius: 999px;
}

/* DROPDOWN ARROW */
.main-nav__item--dropdown > a {
  padding-right: 1rem;
}

.main-nav__item--dropdown > a::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  right: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* DROPDOWN */
.main-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 16rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 161, 0.08);
  border-radius: 0.85rem;
  box-shadow: 0 18px 40px rgba(0, 24, 68, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 30;
}

.main-nav__dropdown li {
  margin: 0;
}

.main-nav__dropdown a {
  display: block;
  padding: 0.8rem 1rem;
  color: #14324a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.main-nav__dropdown a:hover,
.main-nav__dropdown a:focus-visible {
  background-color: rgba(0, 59, 161, 0.06);
  color: #003BA1;
}

.main-nav__item--dropdown:hover .main-nav__dropdown,
.main-nav__item--dropdown:focus-within .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* CTA BUTTON */
.main-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 59, 161, 0.16);
  color: #003ba1;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(12, 26, 49, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease,
    color 0.24s ease, border-color 0.24s ease;
}

.main-nav__cta:hover,
.main-nav__cta:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: #ff6412;
  border-color: rgba(255, 100, 18, 0.32);
}

/* =========================
   HOME HERO
========================= */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 7vw, 6.5rem);
  isolation: isolate;
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-reveal-y: 1.6rem;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  pointer-events: none;
}

.home-hero::before {
  top: 3rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 100, 18, 0.18) 0%, rgba(255, 100, 18, 0) 72%);
}

.home-hero::after {
  right: -7rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(0, 59, 161, 0.16) 0%, rgba(0, 59, 161, 0) 72%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.home-hero__content {
  max-width: 720px;
}

.home-hero.has-motion .home-hero__eyebrow,
.home-hero.has-motion .home-hero__title,
.home-hero.has-motion .home-hero__text,
.home-hero.has-motion .home-hero__note,
.home-hero.has-motion .home-hero__actions {
  opacity: 0;
  transform: translate3d(0, var(--hero-reveal-y), 0);
  will-change: transform, opacity;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.12);
  border: 1px solid rgba(255, 100, 18, 0.22);
  color: #ff6412;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-hero__title {
  margin-top: 1.35rem;
  color: #091a31;
  font-size: clamp(1.64rem, 3.38vw, 3.15rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 800;
  max-width: 10ch;
}

.home-hero__title span {
  display: block;
  color: #003ba1;
}

.home-hero__text {
  margin-top: 1.5rem;
  max-width: 64ch;
  color: rgba(16, 36, 62, 0.82);
  font-size: 1.06rem;
}

.home-hero__note {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 14px 30px rgba(12, 26, 49, 0.08);
  color: #003ba1;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease,
    color 0.24s ease, border-color 0.24s ease;
}

.home-hero__button--primary {
  background: #003ba1;
  border: 1px solid #003ba1;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(0, 59, 161, 0.24);
}

.home-hero__button--primary:hover,
.home-hero__button--primary:focus-visible {
  transform: translateY(-2px);
  background: #002d7d;
  border-color: #002d7d;
  box-shadow: 0 20px 36px rgba(0, 59, 161, 0.28);
}

.home-hero__button--secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 59, 161, 0.16);
  color: #003ba1;
  box-shadow: 0 14px 28px rgba(12, 26, 49, 0.08);
}

.home-hero__button--secondary:hover,
.home-hero__button--secondary:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: #ff6412;
  border-color: rgba(255, 100, 18, 0.32);
}

.home-hero__media {
  position: relative;
  min-height: clamp(27rem, 46vw, 39rem);
}

.home-hero__media::before {
  content: "";
  position: absolute;
  inset: 8% 6% 6% 12%;
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(0, 59, 161, 0.1), rgba(255, 100, 18, 0.14));
}

.home-hero.has-motion .home-hero__media {
  opacity: 0;
  transform: translate3d(0, 2.2rem, 0) scale(0.96);
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.home-hero.has-motion .home-hero__media::before {
  opacity: 0.72;
  transform: scale(0.94);
}

.home-hero__image {
  position: absolute;
  overflow: hidden;
  border-radius: 2rem;
  background: #ffffff;
  border: 1px solid rgba(12, 26, 49, 0.08);
  box-shadow: 0 28px 48px rgba(12, 26, 49, 0.16);
}

.home-hero.has-motion .home-hero__image {
  opacity: 0;
  will-change: transform, opacity;
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.home-hero__image--primary {
  top: 0;
  right: 0;
  width: min(100%, 31rem);
  aspect-ratio: 1 / 1.08;
  transform: rotate(-4deg);
}

.home-hero__image--secondary {
  left: 0;
  bottom: 0;
  width: min(58%, 20rem);
  aspect-ratio: 1 / 1;
  transform: rotate(6deg);
}

.home-hero.has-motion .home-hero__image--primary {
  transform: translate3d(2rem, 2.4rem, 0) rotate(-9deg) scale(0.94);
}

.home-hero.has-motion .home-hero__image--secondary {
  transform: translate3d(-1.8rem, 2.8rem, 0) rotate(10deg) scale(0.94);
}

.home-hero.has-motion.is-visible::before {
  animation: heroAuraOrange 10s ease-in-out infinite alternate;
}

.home-hero.has-motion.is-visible::after {
  animation: heroAuraBlue 12s ease-in-out 0.35s infinite alternate;
}

.home-hero.has-motion.is-visible .home-hero__eyebrow {
  animation: heroRevealUp 0.78s var(--hero-ease) 0.06s forwards;
}

.home-hero.has-motion.is-visible .home-hero__title {
  animation: heroRevealUp 0.9s var(--hero-ease) 0.16s forwards;
}

.home-hero.has-motion.is-visible .home-hero__text {
  animation: heroRevealUp 0.88s var(--hero-ease) 0.3s forwards;
}

.home-hero.has-motion.is-visible .home-hero__note {
  animation: heroRevealUp 0.82s var(--hero-ease) 0.44s forwards;
}

.home-hero.has-motion.is-visible .home-hero__actions {
  animation: heroRevealUp 0.84s var(--hero-ease) 0.58s forwards;
}

.home-hero.has-motion.is-visible .home-hero__media {
  animation: heroRevealMedia 1.05s var(--hero-ease) 0.18s forwards;
}

.home-hero.has-motion.is-visible .home-hero__media::before {
  animation: heroPanelBreath 8.5s ease-in-out 1.05s infinite;
}

.home-hero.has-motion.is-visible .home-hero__image--primary {
  animation: heroCardPrimaryIn 1.05s var(--hero-ease) 0.24s forwards;
}

.home-hero.has-motion.is-visible .home-hero__image--secondary {
  animation: heroCardSecondaryIn 1.08s var(--hero-ease) 0.42s forwards;
}

.home-hero.has-motion.is-visible .home-hero__image--primary img {
  animation: heroImageDriftPrimary 7.8s ease-in-out 1.25s infinite alternate;
}

.home-hero.has-motion.is-visible .home-hero__image--secondary img {
  animation: heroImageDriftSecondary 8.8s ease-in-out 1.45s infinite alternate;
}

@keyframes heroRevealUp {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--hero-reveal-y), 0);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroRevealMedia {
  0% {
    opacity: 0;
    transform: translate3d(0, 2.2rem, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroCardPrimaryIn {
  0% {
    opacity: 0;
    transform: translate3d(2rem, 2.4rem, 0) rotate(-9deg) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
  }
}

@keyframes heroCardSecondaryIn {
  0% {
    opacity: 0;
    transform: translate3d(-1.8rem, 2.8rem, 0) rotate(10deg) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
  }
}

@keyframes heroImageDriftPrimary {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-0.85rem, -0.55rem, 0);
  }
}

@keyframes heroImageDriftSecondary {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(0.7rem, -0.6rem, 0);
  }
}

@keyframes heroPanelBreath {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94) translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: scale(1) translate3d(0, -0.5rem, 0);
  }
}

@keyframes heroAuraOrange {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate3d(1.5rem, -1rem, 0) scale(1.08);
    opacity: 0.72;
  }
}

@keyframes heroAuraBlue {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate3d(-1.25rem, 1rem, 0) scale(1.06);
    opacity: 0.74;
  }
}

/* =========================
   ABOUT PAGE
========================= */
.about-page {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
}

.about-page::before,
.about-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.about-page::before {
  top: 1rem;
  left: -7rem;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(255, 100, 18, 0.16) 0%, rgba(255, 100, 18, 0) 72%);
}

.about-page::after {
  right: -6rem;
  top: 18rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(0, 59, 161, 0.14) 0%, rgba(0, 59, 161, 0) 72%);
}

.about-hero,
.about-story,
.about-locations {
  position: relative;
  z-index: 1;
}

.about-hero__inner,
.about-story__inner,
.about-locations__inner {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: clamp(1.75rem, 4vw, 4rem);
}

.about-hero__content {
  max-width: 46rem;
}

.about-hero,
.about-story,
.about-locations {
  --about-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --about-reveal-y: 1.6rem;
}

.about-hero__eyebrow,
.about-section__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.12);
  border: 1px solid rgba(255, 100, 18, 0.22);
  color: #ff6412;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about-hero.has-motion .about-hero__eyebrow,
.about-hero.has-motion .about-hero__title,
.about-hero.has-motion .about-hero__lead,
.about-hero.has-motion .about-stat,
.about-story.has-motion .about-story__copy,
.about-story.has-motion .about-story__card,
.about-story.has-motion .about-badges li,
.about-story.has-motion .about-certificate,
.about-locations.has-motion .about-locations__intro,
.about-locations.has-motion .about-location-card {
  opacity: 0;
  will-change: transform, opacity;
}

.about-hero.has-motion .about-hero__eyebrow,
.about-hero.has-motion .about-hero__title,
.about-hero.has-motion .about-hero__lead,
.about-story.has-motion .about-story__copy,
.about-story.has-motion .about-story__card,
.about-locations.has-motion .about-locations__intro,
.about-locations.has-motion .about-location-card {
  transform: translate3d(0, var(--about-reveal-y), 0);
}

.about-hero.has-motion .about-stat {
  transform: translate3d(1.2rem, 1.4rem, 0) scale(0.96);
}

.about-story.has-motion .about-badges li {
  transform: translate3d(0, 1rem, 0) scale(0.96);
}

.about-story.has-motion .about-certificate--primary {
  transform: translate3d(1.8rem, 2rem, 0) rotate(-9deg) scale(0.94);
}

.about-story.has-motion .about-certificate--secondary {
  transform: translate3d(-1.5rem, 2.2rem, 0) rotate(10deg) scale(0.94);
}

.about-hero__title {
  margin-top: 1.2rem;
  color: #091a31;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 11ch;
}

.about-hero__title span {
  display: block;
  color: #003ba1;
}

.about-hero__lead {
  margin-top: 1.5rem;
  max-width: 62ch;
  color: rgba(16, 36, 62, 0.82);
  font-size: 1.08rem;
}

.about-hero__stats {
  display: grid;
  gap: 1rem;
}

.about-stat {
  padding: 1.4rem 1.35rem;
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 20px 36px rgba(12, 26, 49, 0.08);
  backdrop-filter: blur(10px);
}

.about-stat__value {
  color: #ff6412;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
}

.about-stat__label {
  margin-top: 0.55rem;
  color: #003ba1;
  font-size: 1rem;
  font-weight: 700;
}

.about-stat__text {
  margin-top: 0.25rem;
  color: rgba(16, 36, 62, 0.72);
  font-size: 0.93rem;
}

.about-story {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.about-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-story__copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 24px 42px rgba(12, 26, 49, 0.08);
}

.about-section__title {
  margin-top: 1rem;
  color: #091a31;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-story__copy .about-section__title + p {
  margin-top: 1.2rem;
}

.about-story__copy p + p {
  margin-top: 1.15rem;
}

.about-story__copy p {
  color: rgba(16, 36, 62, 0.84);
  font-size: 1rem;
}

.about-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.about-badges li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(0, 59, 161, 0.06);
  border: 1px solid rgba(0, 59, 161, 0.1);
  color: #003ba1;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-story__visual {
  position: relative;
}

.about-story__card {
  position: sticky;
  top: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 100, 18, 0.16), transparent 34%),
    linear-gradient(180deg, #08203c 0%, #041423 100%);
  box-shadow: 0 26px 48px rgba(4, 20, 35, 0.24);
  color: rgba(255, 255, 255, 0.82);
}

.about-story__label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.14);
  border: 1px solid rgba(255, 100, 18, 0.24);
  color: #ffb38b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-story__card h3 {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-story__text {
  margin-top: 0.9rem;
  font-size: 0.98rem;
}

.about-certificates {
  position: relative;
  min-height: 28rem;
  margin-top: 1.75rem;
}

.about-certificate {
  position: absolute;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 36px rgba(2, 10, 19, 0.26);
}

.about-certificate img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.about-certificate--primary {
  top: 0;
  right: 0;
  width: min(100%, 25rem);
  aspect-ratio: 0.8 / 1;
  transform: rotate(-4deg);
}

.about-certificate--secondary {
  left: 0;
  bottom: 0;
  width: min(62%, 16rem);
  aspect-ratio: 0.82 / 1;
  transform: rotate(6deg);
}

.about-hero.has-motion.is-visible .about-hero__eyebrow {
  animation: aboutRevealUp 0.78s var(--about-ease) 0.06s forwards;
}

.about-hero.has-motion.is-visible .about-hero__title {
  animation: aboutRevealUp 0.9s var(--about-ease) 0.16s forwards;
}

.about-hero.has-motion.is-visible .about-hero__lead {
  animation: aboutRevealUp 0.88s var(--about-ease) 0.3s forwards;
}

.about-hero.has-motion.is-visible .about-stat:nth-child(1) {
  animation: aboutStatIn 0.82s var(--about-ease) 0.22s forwards;
}

.about-hero.has-motion.is-visible .about-stat:nth-child(2) {
  animation: aboutStatIn 0.82s var(--about-ease) 0.34s forwards;
}

.about-hero.has-motion.is-visible .about-stat:nth-child(3) {
  animation: aboutStatIn 0.82s var(--about-ease) 0.46s forwards;
}

.about-story.has-motion.is-visible .about-story__copy {
  animation: aboutRevealUp 0.92s var(--about-ease) 0.08s forwards;
}

.about-story.has-motion.is-visible .about-story__card {
  animation: aboutRevealUp 0.96s var(--about-ease) 0.2s forwards;
}

.about-story.has-motion.is-visible .about-badges li:nth-child(1) {
  animation: aboutBadgeIn 0.66s var(--about-ease) 0.38s forwards;
}

.about-story.has-motion.is-visible .about-badges li:nth-child(2) {
  animation: aboutBadgeIn 0.66s var(--about-ease) 0.46s forwards;
}

.about-story.has-motion.is-visible .about-badges li:nth-child(3) {
  animation: aboutBadgeIn 0.66s var(--about-ease) 0.54s forwards;
}

.about-story.has-motion.is-visible .about-certificate--primary {
  animation: aboutCertificatePrimaryIn 1s var(--about-ease) 0.26s forwards;
}

.about-story.has-motion.is-visible .about-certificate--secondary {
  animation: aboutCertificateSecondaryIn 1.04s var(--about-ease) 0.4s forwards;
}

.about-locations.has-motion.is-visible .about-locations__intro {
  animation: aboutRevealUp 0.84s var(--about-ease) 0.08s forwards;
}

.about-locations.has-motion.is-visible .about-location-card:nth-child(1) {
  animation: aboutRevealUp 0.86s var(--about-ease) 0.18s forwards;
}

.about-locations.has-motion.is-visible .about-location-card:nth-child(2) {
  animation: aboutRevealUp 0.86s var(--about-ease) 0.3s forwards;
}

@keyframes aboutRevealUp {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--about-reveal-y), 0);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes aboutStatIn {
  0% {
    opacity: 0;
    transform: translate3d(1.2rem, 1.4rem, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aboutBadgeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aboutCertificatePrimaryIn {
  0% {
    opacity: 0;
    transform: translate3d(1.8rem, 2rem, 0) rotate(-9deg) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
  }
}

@keyframes aboutCertificateSecondaryIn {
  0% {
    opacity: 0;
    transform: translate3d(-1.5rem, 2.2rem, 0) rotate(10deg) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
  }
}

.about-locations {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.about-locations__intro {
  max-width: 48rem;
}

.about-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.about-location-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1.8rem;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 20px 38px rgba(12, 26, 49, 0.08);
}

.about-location-card__eyebrow {
  color: #ff6412;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-location-card__title {
  margin-top: 0.7rem;
  color: #091a31;
  font-size: 1.4rem;
  line-height: 1.08;
}

.about-location-card__text {
  margin-top: 0.8rem;
  color: rgba(16, 36, 62, 0.76);
}

/* =========================
   SERVICES
========================= */
.services-page {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
}

.services-page::before,
.services-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.services-page::before {
  top: 1rem;
  left: -7rem;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(255, 100, 18, 0.16) 0%, rgba(255, 100, 18, 0) 72%);
}

.services-page::after {
  right: -6rem;
  top: 16rem;
  width: 17rem;
  height: 17rem;
  background: radial-gradient(circle, rgba(0, 59, 161, 0.14) 0%, rgba(0, 59, 161, 0) 72%);
}

.services-hero,
.service-offerings-section,
.service-section,
.service-keywords-section {
  position: relative;
  z-index: 1;
  --services-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --services-reveal-y: 1.6rem;
}

.services-hero {
  scroll-margin-top: 8rem;
}

.services-hero__inner,
.service-offerings-section__inner,
.service-section__inner,
.service-keywords-section__inner {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.services-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  margin: 36px auto;
}

.services-hero__content {
  max-width: 46rem;
}

.services-hero__title {
  margin-top: 1.2rem;
  color: #091a31;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 11ch;
}

.services-hero__title span {
  display: block;
  color: #003ba1;
}

.services-hero__lead {
  margin-top: 1.5rem;
  max-width: 64ch;
  color: rgba(16, 36, 62, 0.82);
  font-size: 1.08rem;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.services-hero__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-mini-card {
  padding: 1.35rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 20px 36px rgba(12, 26, 49, 0.08);
}

.service-mini-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(0, 59, 161, 0.12), rgba(255, 100, 18, 0.18));
  color: #003ba1;
  box-shadow: inset 0 0 0 1px rgba(0, 59, 161, 0.08);
}

.service-mini-card__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.service-mini-card__title {
  margin-top: 0.95rem;
  color: #091a31;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.12;
}

.service-mini-card__text {
  margin-top: 0.55rem;
  color: rgba(16, 36, 62, 0.74);
  font-size: 0.96rem;
}

.services-hero__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.services-hero__highlights li {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(0, 59, 161, 0.06);
  border: 1px solid rgba(0, 59, 161, 0.1);
  color: #003ba1;
  font-size: 0.92rem;
  font-weight: 700;
}

.services-hero__visual {
  position: relative;
  min-height: clamp(28rem, 46vw, 40rem);
}

.services-hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 7% 6% 12%;
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(0, 59, 161, 0.1), rgba(255, 100, 18, 0.14));
}

.services-hero__visual--single::before {
  inset: 6% 5% 5% 5%;
}

.services-hero__visual--certificates .services-hero__image img {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.services-hero__image {
  position: absolute;
  overflow: hidden;
  border-radius: 2rem;
  background: #ffffff;
  border: 1px solid rgba(12, 26, 49, 0.08);
  box-shadow: 0 28px 48px rgba(12, 26, 49, 0.16);
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-hero__image--primary {
  top: 0;
  right: 0;
  width: min(100%, 31rem);
  aspect-ratio: 0.82 / 1;
  transform: rotate(-4deg);
}

.services-hero__image--secondary {
  left: 0;
  bottom: 0;
  width: min(58%, 19rem);
  aspect-ratio: 0.82 / 1;
  transform: rotate(6deg);
}

.services-hero__visual--single .services-hero__image--primary {
  top: 50%;
  left: 50%;
  right: auto;
  width: min(100%, 34rem);
  aspect-ratio: 1.15 / 1;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.services-hero__visual--single .services-hero__image img {
  object-fit: contain;
  object-position: center;
}

.services-hero.has-motion .about-section__eyebrow,
.services-hero.has-motion .services-hero__title,
.services-hero.has-motion .services-hero__lead,
.services-hero.has-motion .services-hero__actions,
.services-hero.has-motion .service-mini-card,
.services-hero.has-motion .services-hero__highlights li,
.services-hero.has-motion .services-hero__visual,
.service-offerings-section.has-motion .service-offerings-section__intro,
.service-offerings-section.has-motion .provider-card,
.service-offerings-section.has-motion .repair-card,
.service-section.has-motion .service-section__copy,
.service-section.has-motion .service-section__panel,
.service-keywords-section.has-motion .service-keywords-section__intro,
.service-keywords-section.has-motion .service-keywords li {
  opacity: 0;
  will-change: transform, opacity;
}

.services-hero.has-motion .about-section__eyebrow,
.services-hero.has-motion .services-hero__title,
.services-hero.has-motion .services-hero__lead,
.services-hero.has-motion .services-hero__actions,
.service-offerings-section.has-motion .service-offerings-section__intro,
.service-section.has-motion .service-section__copy,
.service-section.has-motion .service-section__panel,
.service-keywords-section.has-motion .service-keywords-section__intro {
  transform: translate3d(0, var(--services-reveal-y), 0);
}

.services-hero.has-motion .service-mini-card,
.services-hero.has-motion .services-hero__highlights li,
.service-offerings-section.has-motion .provider-card,
.service-offerings-section.has-motion .repair-card,
.service-keywords-section.has-motion .service-keywords li {
  transform: translate3d(0, 1rem, 0) scale(0.96);
}

.services-hero.has-motion .services-hero__visual {
  transform: translate3d(0, 2.2rem, 0) scale(0.96);
  transform-origin: center bottom;
}

.services-hero.has-motion .services-hero__image {
  opacity: 0;
  will-change: transform, opacity;
}

.services-hero.has-motion .services-hero__image--primary {
  transform: translate3d(1.8rem, 2rem, 0) rotate(-9deg) scale(0.94);
}

.services-hero.has-motion .services-hero__image--secondary {
  transform: translate3d(-1.5rem, 2.2rem, 0) rotate(10deg) scale(0.94);
}

.services-hero.has-motion .services-hero__visual--single .services-hero__image--primary {
  transform: translate3d(-50%, calc(-50% + 2rem), 0) rotate(-7deg) scale(0.94);
}

.service-section {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.service-offerings-section {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.service-offerings-section__intro {
  max-width: 48rem;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

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

.provider-card {
  padding: 1.35rem;
  border-radius: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 20px 36px rgba(12, 26, 49, 0.08);
}

.provider-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.1);
  border: 1px solid rgba(255, 100, 18, 0.18);
  color: #ff6412;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.provider-card__brand-logo {
  display: block;
  width: auto;
  height: 1rem;
  object-fit: contain;
}

.services-hero__visual--logos::before {
  inset: 6% 5% 5% 5%;
}

.service-logo-stack {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}

.service-logo-card {
  width: min(100%, 25rem);
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.15rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 26, 49, 0.08);
  box-shadow: 0 24px 40px rgba(12, 26, 49, 0.12);
}

.service-logo-card:nth-child(1) {
  transform: translateX(1rem) rotate(-4deg);
}

.service-logo-card:nth-child(2) {
  transform: rotate(1.5deg);
}

.service-logo-card:nth-child(3) {
  transform: translateX(-0.85rem) rotate(4deg);
}

.service-logo-card img {
  width: auto;
  height: 1.45rem;
  display: block;
  object-fit: contain;
}

.service-logo-card span {
  color: #091a31;
  font-size: 0.98rem;
  font-weight: 700;
}

.provider-card__title {
  margin-top: 0.95rem;
  color: #091a31;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.16;
}

.provider-card__text {
  margin-top: 0.55rem;
  color: rgba(16, 36, 62, 0.74);
  font-size: 0.95rem;
}

.provider-card__kicker {
  margin-top: 0.65rem;
  color: #003ba1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.provider-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.provider-card__tags li {
  padding: 0.58rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 59, 161, 0.06);
  border: 1px solid rgba(0, 59, 161, 0.1);
  color: #003ba1;
  font-size: 0.85rem;
  font-weight: 700;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.repair-card {
  padding: 1.35rem;
  border-radius: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 20px 36px rgba(12, 26, 49, 0.08);
}

.repair-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(0, 59, 161, 0.12), rgba(255, 100, 18, 0.18));
  color: #003ba1;
  box-shadow: inset 0 0 0 1px rgba(0, 59, 161, 0.08);
}

.repair-card__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.repair-card__title {
  margin-top: 0.95rem;
  color: #091a31;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.16;
}

.repair-card__text {
  margin-top: 0.55rem;
  color: rgba(16, 36, 62, 0.74);
  font-size: 0.95rem;
}

.service-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.service-section__copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 24px 42px rgba(12, 26, 49, 0.08);
}

.service-section__copy .about-section__title + p {
  margin-top: 1.2rem;
}

.service-section__copy p + p {
  margin-top: 1.15rem;
}

.service-section__copy p {
  color: rgba(16, 36, 62, 0.84);
  font-size: 1rem;
}

.service-section__panel {
  position: sticky;
  top: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 100, 18, 0.16), transparent 34%),
    linear-gradient(180deg, #08203c 0%, #041423 100%);
  box-shadow: 0 26px 48px rgba(4, 20, 35, 0.24);
  color: rgba(255, 255, 255, 0.82);
}

.service-section__panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.14);
  border: 1px solid rgba(255, 100, 18, 0.24);
  color: #ffb38b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-section__panel h3 {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.service-section__panel-text {
  margin-top: 0.9rem;
  font-size: 0.98rem;
}

.service-panel-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.service-panel-badges li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-process {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-process li {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-process strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
}

.service-process span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.service-keywords-section {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.service-keywords-section__intro {
  max-width: 48rem;
}

.service-keywords {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.service-keywords li {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 16px 30px rgba(12, 26, 49, 0.08);
  color: #10243e;
  font-size: 0.94rem;
  font-weight: 700;
}

.services-hero.has-motion.is-visible .about-section__eyebrow {
  animation: aboutRevealUp 0.78s var(--services-ease) 0.06s forwards;
}

.services-hero.has-motion.is-visible .services-hero__title {
  animation: aboutRevealUp 0.9s var(--services-ease) 0.16s forwards;
}

.services-hero.has-motion.is-visible .services-hero__lead {
  animation: aboutRevealUp 0.88s var(--services-ease) 0.3s forwards;
}

.services-hero.has-motion.is-visible .services-hero__actions {
  animation: aboutRevealUp 0.84s var(--services-ease) 0.44s forwards;
}

.services-hero.has-motion.is-visible .service-mini-card:nth-child(1) {
  animation: aboutBadgeIn 0.68s var(--services-ease) 0.54s forwards;
}

.services-hero.has-motion.is-visible .service-mini-card:nth-child(2) {
  animation: aboutBadgeIn 0.68s var(--services-ease) 0.64s forwards;
}

.services-hero.has-motion.is-visible .services-hero__highlights li:nth-child(1) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.7s forwards;
}

.services-hero.has-motion.is-visible .services-hero__highlights li:nth-child(2) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.78s forwards;
}

.services-hero.has-motion.is-visible .services-hero__highlights li:nth-child(3) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.86s forwards;
}

.services-hero.has-motion.is-visible .services-hero__highlights li:nth-child(4) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.94s forwards;
}

.services-hero.has-motion.is-visible .services-hero__visual {
  animation: heroRevealMedia 1.05s var(--services-ease) 0.22s forwards;
}

.service-offerings-section.has-motion.is-visible .service-offerings-section__intro {
  animation: aboutRevealUp 0.84s var(--services-ease) 0.08s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(1),
.service-offerings-section.has-motion.is-visible .provider-card:nth-child(1) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.18s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(2),
.service-offerings-section.has-motion.is-visible .provider-card:nth-child(2) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.26s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(3),
.service-offerings-section.has-motion.is-visible .provider-card:nth-child(3) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.34s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(4),
.service-offerings-section.has-motion.is-visible .provider-card:nth-child(4) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.42s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(5) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.5s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(6) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.58s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(7) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.66s forwards;
}

.service-offerings-section.has-motion.is-visible .repair-card:nth-child(8) {
  animation: aboutBadgeIn 0.62s var(--services-ease) 0.74s forwards;
}

.services-hero.has-motion.is-visible .services-hero__image--primary {
  animation: aboutCertificatePrimaryIn 1s var(--services-ease) 0.28s forwards;
}

.services-hero.has-motion.is-visible .services-hero__visual--single .services-hero__image--primary {
  animation: serviceImageSingleIn 1s var(--services-ease) 0.28s forwards;
}

.services-hero.has-motion.is-visible .services-hero__image--secondary {
  animation: aboutCertificateSecondaryIn 1.04s var(--services-ease) 0.42s forwards;
}

.service-section.has-motion.is-visible .service-section__copy {
  animation: aboutRevealUp 0.92s var(--services-ease) 0.08s forwards;
}

.service-section.has-motion.is-visible .service-section__panel {
  animation: aboutRevealUp 0.96s var(--services-ease) 0.2s forwards;
}

.service-keywords-section.has-motion.is-visible .service-keywords-section__intro {
  animation: aboutRevealUp 0.84s var(--services-ease) 0.08s forwards;
}

.service-keywords-section.has-motion.is-visible .service-keywords li {
  animation: aboutBadgeIn 0.66s var(--services-ease) 0.18s forwards;
}

@keyframes serviceImageSingleIn {
  0% {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 2rem), 0) rotate(-7deg) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) rotate(-3deg) scale(1);
  }
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page-shell {
  position: relative;
  padding-top: clamp(3rem, 5vw, 4.75rem);
  padding-bottom: clamp(4rem, 6vw, 5.75rem);
  background:
    radial-gradient(circle at top left, rgba(255, 100, 18, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0, 59, 161, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f8fc 0%, #eef3fb 100%);
  overflow: hidden;
}

.contact-page-shell::before,
.contact-page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  pointer-events: none;
}

.contact-page-shell::before {
  top: 2.5rem;
  right: -9rem;
  width: 19rem;
  height: 19rem;
  background: rgba(255, 100, 18, 0.08);
}

.contact-page-shell::after {
  left: -10rem;
  bottom: 1rem;
  width: 22rem;
  height: 22rem;
  background: rgba(0, 59, 161, 0.08);
}

.contact-hero,
.contact-connect {
  position: relative;
  z-index: 1;
}

.contact-hero__inner,
.contact-connect__inner {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-hero__title {
  margin-top: 1.1rem;
  max-width: 11ch;
  color: #091a31;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.contact-hero__title span {
  display: block;
  color: #003ba1;
}

.contact-hero__lead {
  margin-top: 1.3rem;
  max-width: 63ch;
  color: rgba(16, 36, 62, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.contact-hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 18px 32px rgba(12, 26, 49, 0.08);
  color: #003ba1;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-hero__content .home-hero__actions {
  margin-top: 1.7rem;
}

.contact-hero__panel {
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 100, 18, 0.16), transparent 34%),
    linear-gradient(180deg, #08203c 0%, #041423 100%);
  box-shadow: 0 26px 48px rgba(4, 20, 35, 0.24);
  color: rgba(255, 255, 255, 0.82);
}

.contact-hero__panel-label,
.contact-form-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.14);
  border: 1px solid rgba(255, 100, 18, 0.2);
  color: #ffb38b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hero__panel-title {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-hero__panel-text {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.contact-hero__panel-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.contact-hero__panel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero__panel-icon,
.contact-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(0, 59, 161, 0.16), rgba(255, 100, 18, 0.22));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-hero__panel-icon i,
.contact-card__icon i {
  font-size: 1.3rem;
  line-height: 1;
}

.contact-hero__panel-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-hero__panel-item a,
.contact-hero__panel-item p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  text-decoration: none;
}

.contact-hero__panel-item a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.contact-hero__panel-item a:hover,
.contact-hero__panel-item a:focus-visible {
  color: #ffb38b;
  border-color: currentColor;
}

.contact-connect {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.contact-connect__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-connect__intro {
  max-width: 48rem;
}

.contact-connect__intro .about-section__title + p {
  margin-top: 1.15rem;
  color: rgba(16, 36, 62, 0.82);
  font-size: 1rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-card,
.contact-form-card {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 24px 42px rgba(12, 26, 49, 0.08);
}

.contact-card {
  padding: 1.35rem;
}

.contact-card h3 {
  margin-top: 0.95rem;
  color: #091a31;
  font-size: 1.04rem;
  font-weight: 700;
}

.contact-card p {
  margin-top: 0.6rem;
  color: rgba(16, 36, 62, 0.74);
  font-size: 0.95rem;
}

.contact-card a,
.contact-card__meta {
  display: inline-block;
  margin-top: 1rem;
  color: #003ba1;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-card a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: #ff6412;
  border-color: currentColor;
}

.contact-form-card {
  position: sticky;
  top: 2rem;
  padding: clamp(1.45rem, 3vw, 2rem);
}

.contact-form-card__header h2 {
  margin-top: 1rem;
  color: #091a31;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-form-card__text,
.contact-form-card__note {
  color: rgba(16, 36, 62, 0.78);
  font-size: 0.96rem;
}

.contact-form-card__text {
  margin-top: 0.9rem;
}

.contact-form {
  margin-top: 1.35rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-form__field {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.contact-form__field span {
  color: #091a31;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(0, 59, 161, 0.12);
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.95rem 1rem;
  color: #10243e;
  font: inherit;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(16, 36, 62, 0.46);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(0, 59, 161, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 59, 161, 0.12);
}

.contact-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.2rem;
  color: rgba(16, 36, 62, 0.76);
  font-size: 0.92rem;
}

.contact-form__consent input {
  margin-top: 0.18rem;
}

.contact-form__consent a,
.contact-form-card__note a {
  color: #003ba1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-form__consent a:hover,
.contact-form__consent a:focus-visible,
.contact-form-card__note a:hover,
.contact-form-card__note a:focus-visible {
  color: #ff6412;
  border-color: currentColor;
}

.contact-form__status {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(0, 59, 161, 0.06);
  border: 1px solid rgba(0, 59, 161, 0.1);
  color: #003ba1;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form__status.is-loading {
  background: rgba(0, 59, 161, 0.06);
  border-color: rgba(0, 59, 161, 0.12);
  color: #003ba1;
}

.contact-form__status.is-success {
  background: rgba(29, 147, 87, 0.09);
  border-color: rgba(29, 147, 87, 0.2);
  color: #14633c;
}

.contact-form__status.is-error {
  background: rgba(198, 57, 57, 0.08);
  border-color: rgba(198, 57, 57, 0.18);
  color: #9f1f1f;
}

.contact-form__submit {
  width: 100%;
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1f 0%, #ff6412 100%);
  box-shadow: 0 18px 30px rgba(255, 100, 18, 0.26);
  color: #ffffff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(255, 100, 18, 0.3);
}

.contact-form__submit:disabled {
  cursor: wait;
  filter: saturate(0.78);
  opacity: 0.78;
  transform: none;
  box-shadow: 0 14px 24px rgba(255, 100, 18, 0.18);
}

.contact-form__submit-spinner {
  animation: contactSubmitSpin 1s linear infinite;
}

@keyframes contactSubmitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-form-card__note {
  margin-top: 1rem;
}

/* =========================
   LEGAL PAGE
========================= */
.legal-page-shell {
  position: relative;
  padding-top: clamp(3rem, 5vw, 4.75rem);
  padding-bottom: clamp(4rem, 6vw, 5.75rem);
  background:
    radial-gradient(circle at top left, rgba(255, 100, 18, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0, 59, 161, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f8fc 0%, #eef3fb 100%);
  overflow: hidden;
}

.legal-page-shell::before,
.legal-page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.legal-page-shell::before {
  top: 2rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 100, 18, 0.08);
}

.legal-page-shell::after {
  left: -10rem;
  bottom: 2rem;
  width: 22rem;
  height: 22rem;
  background: rgba(0, 59, 161, 0.08);
}

.legal-hero,
.legal-sections {
  position: relative;
  z-index: 1;
}

.legal-hero__inner,
.legal-sections__inner {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.legal-hero__title {
  margin-top: 1.1rem;
  max-width: 12ch;
  color: #091a31;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-hero__title span {
  display: block;
  color: #003ba1;
}

.legal-hero__lead {
  margin-top: 1.3rem;
  max-width: 62ch;
  color: rgba(16, 36, 62, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.legal-hero__content {
  min-width: 0;
}

.legal-hero__panel {
  min-width: 0;
}

.legal-hero__panel {
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 100, 18, 0.16), transparent 34%),
    linear-gradient(180deg, #08203c 0%, #041423 100%);
  box-shadow: 0 26px 48px rgba(4, 20, 35, 0.24);
  color: rgba(255, 255, 255, 0.82);
}

.legal-hero__panel-label,
.legal-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.14);
  border: 1px solid rgba(255, 100, 18, 0.2);
  color: #ffb38b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-hero__panel-title {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-hero__list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.legal-hero__list li {
  padding: 1rem 1.05rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-hero__list strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-hero__list a,
.legal-hero__list p {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  text-decoration: none;
}

.legal-hero__list a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.legal-hero__list a:hover,
.legal-hero__list a:focus-visible {
  color: #ffb38b;
  border-color: currentColor;
}

.legal-sections {
  margin-top: clamp(3rem, 5vw, 4.75rem);
}

.legal-sections__intro {
  max-width: 48rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.legal-card,
.legal-content-card {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 59, 161, 0.1);
  box-shadow: 0 24px 42px rgba(12, 26, 49, 0.08);
}

.legal-card {
  padding: 1.35rem;
}

.legal-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 100, 18, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.96);
}

.legal-card__title {
  margin-top: 0.95rem;
  color: #091a31;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.2;
}

.legal-card__text,
.legal-card__list {
  margin-top: 0.7rem;
  color: rgba(16, 36, 62, 0.78);
  font-size: 0.95rem;
}

.legal-card__list {
  list-style: none;
}

.legal-card__list li + li {
  margin-top: 0.7rem;
}

.legal-card a {
  color: #003ba1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: #ff6412;
  border-color: currentColor;
}

.legal-content-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.legal-content-card {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.legal-content-card h2 {
  color: #091a31;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-content-card p {
  margin-top: 0.95rem;
  color: rgba(16, 36, 62, 0.8);
  font-size: 1rem;
}

.legal-content-card a {
  color: #003ba1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.legal-content-card a:hover,
.legal-content-card a:focus-visible {
  color: #ff6412;
  border-color: currentColor;
}

.legal-content-card ul {
  margin-top: 0.95rem;
  padding-left: 1.2rem;
  color: rgba(16, 36, 62, 0.8);
}

/* =========================
   SHARED MOTION
========================= */
.about-stat,
.about-story__copy,
.about-story__card,
.about-location-card,
.service-mini-card,
.provider-card,
.repair-card,
.service-section__copy,
.service-section__panel,
.service-keywords li,
.contact-hero__panel,
.contact-card,
.contact-form-card,
.legal-hero__panel,
.legal-card,
.legal-content-card {
  transition:
    transform var(--motion-duration-medium) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    border-color var(--motion-duration-fast) ease,
    background-color var(--motion-duration-fast) ease;
}

.service-logo-card {
  transition:
    transform var(--motion-duration-medium) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    border-color var(--motion-duration-fast) ease;
}

.about-badges li,
.services-hero__highlights li,
.provider-card__tags li,
.service-panel-badges li,
.service-keywords li,
.service-process li,
.contact-hero__panel-item,
.legal-hero__list li {
  transition:
    transform var(--motion-duration-fast) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    border-color var(--motion-duration-fast) ease,
    background-color var(--motion-duration-fast) ease;
}

.service-mini-card__icon,
.repair-card__icon,
.contact-card__icon,
.contact-hero__panel-icon {
  transition:
    transform var(--motion-duration-medium) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    background var(--motion-duration-medium) var(--motion-ease-standard);
}

.contact-hero__content,
.contact-hero__panel,
.contact-connect__intro,
.contact-card,
.contact-form-card,
.legal-hero__content,
.legal-hero__panel,
.legal-sections__intro,
.site-footer__brand,
.site-footer__column,
.site-footer__bottom {
  --page-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-reveal-y: 1.6rem;
}

.contact-hero__content.has-motion .about-section__eyebrow,
.contact-hero__content.has-motion .contact-hero__title,
.contact-hero__content.has-motion .contact-hero__lead,
.contact-hero__content.has-motion .contact-hero__note,
.contact-hero__content.has-motion .home-hero__actions,
.contact-hero__content.has-motion .services-hero__highlights li,
.legal-hero__content.has-motion .about-section__eyebrow,
.legal-hero__content.has-motion .legal-hero__title,
.legal-hero__content.has-motion .legal-hero__lead,
.contact-hero__panel.has-motion,
.contact-connect__intro.has-motion,
.contact-card.has-motion,
.contact-form-card.has-motion,
.legal-hero__panel.has-motion,
.legal-sections__intro.has-motion,
.legal-card.has-motion,
.legal-content-card.has-motion,
.site-footer__brand.has-motion,
.site-footer__column.has-motion,
.site-footer__bottom.has-motion {
  opacity: 0;
  will-change: transform, opacity;
}

.contact-hero__content.has-motion .about-section__eyebrow,
.contact-hero__content.has-motion .contact-hero__title,
.contact-hero__content.has-motion .contact-hero__lead,
.contact-hero__content.has-motion .contact-hero__note,
.contact-hero__content.has-motion .home-hero__actions,
.legal-hero__content.has-motion .about-section__eyebrow,
.legal-hero__content.has-motion .legal-hero__title,
.legal-hero__content.has-motion .legal-hero__lead,
.contact-hero__panel.has-motion,
.contact-connect__intro.has-motion,
.contact-form-card.has-motion,
.legal-hero__panel.has-motion,
.legal-sections__intro.has-motion,
.legal-content-card.has-motion,
.site-footer__brand.has-motion,
.site-footer__column.has-motion,
.site-footer__bottom.has-motion {
  transform: translate3d(0, var(--page-reveal-y), 0);
}

.contact-hero__content.has-motion .services-hero__highlights li,
.contact-card.has-motion,
.legal-card.has-motion {
  transform: translate3d(0, 1rem, 0) scale(0.96);
}

.contact-hero__content.has-motion.is-visible .about-section__eyebrow {
  animation: aboutRevealUp 0.78s var(--page-reveal-ease) 0.06s forwards;
}

.contact-hero__content.has-motion.is-visible .contact-hero__title {
  animation: aboutRevealUp 0.9s var(--page-reveal-ease) 0.16s forwards;
}

.contact-hero__content.has-motion.is-visible .contact-hero__lead {
  animation: aboutRevealUp 0.88s var(--page-reveal-ease) 0.3s forwards;
}

.contact-hero__content.has-motion.is-visible .contact-hero__note {
  animation: aboutRevealUp 0.82s var(--page-reveal-ease) 0.42s forwards;
}

.contact-hero__content.has-motion.is-visible .home-hero__actions {
  animation: aboutRevealUp 0.84s var(--page-reveal-ease) 0.54s forwards;
}

.contact-hero__content.has-motion.is-visible .services-hero__highlights li:nth-child(1) {
  animation: aboutBadgeIn 0.62s var(--page-reveal-ease) 0.68s forwards;
}

.contact-hero__content.has-motion.is-visible .services-hero__highlights li:nth-child(2) {
  animation: aboutBadgeIn 0.62s var(--page-reveal-ease) 0.76s forwards;
}

.contact-hero__content.has-motion.is-visible .services-hero__highlights li:nth-child(3) {
  animation: aboutBadgeIn 0.62s var(--page-reveal-ease) 0.84s forwards;
}

.contact-hero__content.has-motion.is-visible .services-hero__highlights li:nth-child(4) {
  animation: aboutBadgeIn 0.62s var(--page-reveal-ease) 0.92s forwards;
}

.contact-hero__panel.has-motion.is-visible {
  animation: aboutRevealUp 0.94s var(--page-reveal-ease) 0.16s forwards;
}

.contact-connect__intro.has-motion.is-visible {
  animation: aboutRevealUp 0.84s var(--page-reveal-ease) 0.06s forwards;
}

.contact-card-grid .contact-card.has-motion.is-visible:nth-child(1) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.08s forwards;
}

.contact-card-grid .contact-card.has-motion.is-visible:nth-child(2) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.16s forwards;
}

.contact-card-grid .contact-card.has-motion.is-visible:nth-child(3) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.24s forwards;
}

.contact-card-grid .contact-card.has-motion.is-visible:nth-child(4) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.32s forwards;
}

.contact-form-card.has-motion.is-visible {
  animation: aboutRevealUp 0.92s var(--page-reveal-ease) 0.12s forwards;
}

.legal-hero__content.has-motion.is-visible .about-section__eyebrow {
  animation: aboutRevealUp 0.78s var(--page-reveal-ease) 0.06s forwards;
}

.legal-hero__content.has-motion.is-visible .legal-hero__title {
  animation: aboutRevealUp 0.9s var(--page-reveal-ease) 0.16s forwards;
}

.legal-hero__content.has-motion.is-visible .legal-hero__lead {
  animation: aboutRevealUp 0.88s var(--page-reveal-ease) 0.3s forwards;
}

.legal-hero__panel.has-motion.is-visible {
  animation: aboutRevealUp 0.94s var(--page-reveal-ease) 0.16s forwards;
}

.legal-sections__intro.has-motion.is-visible {
  animation: aboutRevealUp 0.84s var(--page-reveal-ease) 0.06s forwards;
}

.legal-grid .legal-card.has-motion.is-visible:nth-child(1) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.08s forwards;
}

.legal-grid .legal-card.has-motion.is-visible:nth-child(2) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.16s forwards;
}

.legal-grid .legal-card.has-motion.is-visible:nth-child(3) {
  animation: aboutBadgeIn 0.68s var(--page-reveal-ease) 0.24s forwards;
}

.legal-content-card.has-motion.is-visible {
  animation: aboutRevealUp 0.88s var(--page-reveal-ease) 0.06s forwards;
}

.site-footer__brand.has-motion.is-visible {
  animation: aboutRevealUp 0.9s var(--page-reveal-ease) 0.06s forwards;
}

.site-footer__inner .site-footer__column.has-motion.is-visible:nth-child(2) {
  animation: aboutRevealUp 0.82s var(--page-reveal-ease) 0.12s forwards;
}

.site-footer__inner .site-footer__column.has-motion.is-visible:nth-child(3) {
  animation: aboutRevealUp 0.82s var(--page-reveal-ease) 0.2s forwards;
}

.site-footer__inner .site-footer__column.has-motion.is-visible:nth-child(4) {
  animation: aboutRevealUp 0.82s var(--page-reveal-ease) 0.28s forwards;
}

.site-footer__bottom.has-motion.is-visible {
  animation: aboutRevealUp 0.84s var(--page-reveal-ease) 0.1s forwards;
}

@media (hover: hover) and (pointer: fine) {
  .about-stat:hover,
  .about-location-card:hover,
  .service-mini-card:hover,
  .provider-card:hover,
  .repair-card:hover,
  .contact-card:hover,
  .legal-card:hover {
    transform: translate3d(0, -0.35rem, 0);
    box-shadow: var(--motion-shadow-soft);
    border-color: rgba(0, 59, 161, 0.16);
  }

  .about-story__copy:hover,
  .about-story__card:hover,
  .service-section__copy:hover,
  .service-section__panel:hover,
  .contact-hero__panel:hover,
  .contact-form-card:hover,
  .legal-hero__panel:hover,
  .legal-content-card:hover {
    transform: translate3d(0, -0.24rem, 0);
    box-shadow: var(--motion-shadow-strong);
  }

  .service-logo-card:hover {
    box-shadow: var(--motion-shadow-soft);
    border-color: rgba(0, 59, 161, 0.14);
  }

  .service-logo-card:nth-child(1):hover {
    transform: translate3d(1rem, -0.35rem, 0) rotate(-4deg);
  }

  .service-logo-card:nth-child(2):hover {
    transform: translate3d(0, -0.35rem, 0) rotate(1.5deg);
  }

  .service-logo-card:nth-child(3):hover {
    transform: translate3d(-0.85rem, -0.35rem, 0) rotate(4deg);
  }

  .about-badges li:hover,
  .services-hero__highlights li:hover,
  .provider-card__tags li:hover,
  .service-panel-badges li:hover,
  .service-keywords li:hover {
    transform: translate3d(0, -0.18rem, 0);
    box-shadow: 0 16px 28px rgba(12, 26, 49, 0.08);
    border-color: rgba(255, 100, 18, 0.22);
  }

  .service-process li:hover,
  .contact-hero__panel-item:hover,
  .legal-hero__list li:hover {
    transform: translate3d(0, -0.18rem, 0);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 32px rgba(2, 10, 19, 0.18);
  }

  .service-mini-card:hover .service-mini-card__icon,
  .repair-card:hover .repair-card__icon,
  .contact-card:hover .contact-card__icon,
  .contact-hero__panel-item:hover .contact-hero__panel-icon {
    transform: translate3d(0, -0.12rem, 0) scale(1.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 30px rgba(0, 59, 161, 0.16);
  }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  margin-top: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 100, 18, 0.18), transparent 28%),
    linear-gradient(180deg, #08203c 0%, #041423 100%);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 100, 18, 0.12), transparent 32%);
  pointer-events: none;
}

.site-footer__inner,
.site-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.7fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: 2.5rem;
}

.site-footer__brand {
  max-width: 34rem;
}

.site-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 100, 18, 0.14);
  border: 1px solid rgba(255, 100, 18, 0.2);
  color: #ffb38b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__title {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.site-footer__text {
  margin-top: 1rem;
  max-width: 58ch;
  font-size: 1rem;
}

.site-footer__column h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__list {
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 0.75rem;
}

.site-footer__list a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: #ffb38b;
  border-color: currentColor;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__socials a {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 100, 18, 0.18);
  border-color: rgba(255, 100, 18, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .home-hero::after,
  .home-hero__media::before,
  .home-hero__eyebrow,
  .home-hero__title,
  .home-hero__text,
  .home-hero__note,
  .home-hero__actions,
  .services-hero .about-section__eyebrow,
  .services-hero__title,
  .services-hero__lead,
  .services-hero__actions,
  .service-offerings-section__intro,
  .home-hero__media,
  .home-hero__image,
  .home-hero__image img,
  .services-hero__visual,
  .services-hero__image,
  .service-mini-card,
  .services-hero__highlights li,
  .provider-card,
  .repair-card,
  .service-section__copy,
  .service-section__panel,
  .service-keywords-section__intro,
  .service-keywords li {
    animation: none !important;
    transition: none !important;
  }

  .home-hero__eyebrow,
  .home-hero__title,
  .home-hero__text,
  .home-hero__note,
  .home-hero__actions,
  .services-hero .about-section__eyebrow,
  .services-hero__title,
  .services-hero__lead,
  .services-hero__actions,
  .service-offerings-section__intro,
  .home-hero__media,
  .home-hero__image,
  .service-mini-card,
  .services-hero__highlights li,
  .provider-card,
  .repair-card,
  .service-section__copy,
  .service-section__panel,
  .service-keywords-section__intro,
  .service-keywords li {
    opacity: 1;
  }

  .home-hero__eyebrow,
  .home-hero__title,
  .home-hero__text,
  .home-hero__note,
  .home-hero__actions,
  .services-hero .about-section__eyebrow,
  .services-hero__title,
  .services-hero__lead,
  .services-hero__actions,
  .service-offerings-section__intro,
  .home-hero__media,
  .services-hero__visual,
  .service-mini-card,
  .services-hero__highlights li,
  .provider-card,
  .repair-card,
  .service-section__copy,
  .service-section__panel,
  .service-keywords-section__intro,
  .service-keywords li {
    transform: none !important;
    filter: none !important;
  }

  .home-hero__media::before {
    opacity: 1;
    transform: none !important;
  }

  .home-hero__image--primary {
    transform: rotate(-4deg) !important;
  }

  .home-hero__image--secondary {
    transform: rotate(6deg) !important;
  }

  .home-hero__image img {
    transform: scale(1.04) !important;
  }

  .services-hero__visual::before {
    opacity: 1;
    transform: none !important;
  }

  .services-hero__image--primary {
    opacity: 1 !important;
    transform: rotate(-4deg) !important;
  }

  .services-hero__visual--single .services-hero__image--primary {
    transform: translate(-50%, -50%) rotate(-3deg) !important;
  }

  .services-hero__image--secondary {
    opacity: 1 !important;
    transform: rotate(6deg) !important;
  }

  .about-hero__eyebrow,
  .about-hero__title,
  .about-hero__lead,
  .about-stat,
  .about-story__copy,
  .about-story__card,
  .about-badges li,
  .about-certificate,
  .about-locations__intro,
  .about-location-card {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .about-hero__eyebrow,
  .about-hero__title,
  .about-hero__lead,
  .about-stat,
  .about-story__copy,
  .about-story__card,
  .about-badges li,
  .about-locations__intro,
  .about-location-card {
    transform: none !important;
  }

  .about-certificate--primary {
    transform: rotate(-4deg) !important;
  }

  .about-certificate--secondary {
    transform: rotate(6deg) !important;
  }
}

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

  .about-stat,
  .about-story__copy,
  .about-story__card,
  .about-location-card,
  .service-mini-card,
  .provider-card,
  .repair-card,
  .service-section__copy,
  .service-section__panel,
  .service-keywords li,
  .contact-hero__panel,
  .contact-card,
  .contact-form-card,
  .legal-hero__panel,
  .legal-card,
  .legal-content-card,
  .service-logo-card,
  .about-badges li,
  .services-hero__highlights li,
  .provider-card__tags li,
  .service-panel-badges li,
  .service-process li,
  .contact-hero__panel-item,
  .legal-hero__list li,
  .service-mini-card__icon,
  .repair-card__icon,
  .contact-card__icon,
  .contact-hero__panel-icon,
  .contact-hero__content .about-section__eyebrow,
  .contact-hero__content .contact-hero__title,
  .contact-hero__content .contact-hero__lead,
  .contact-hero__content .contact-hero__note,
  .contact-hero__content .home-hero__actions,
  .contact-hero__content .services-hero__highlights li,
  .legal-hero__content .about-section__eyebrow,
  .legal-hero__content .legal-hero__title,
  .legal-hero__content .legal-hero__lead,
  .contact-connect__intro,
  .legal-sections__intro,
  .site-footer__brand,
  .site-footer__column,
  .site-footer__bottom {
    animation: none !important;
    transition: none !important;
  }

  .contact-hero__content .about-section__eyebrow,
  .contact-hero__content .contact-hero__title,
  .contact-hero__content .contact-hero__lead,
  .contact-hero__content .contact-hero__note,
  .contact-hero__content .home-hero__actions,
  .contact-hero__content .services-hero__highlights li,
  .legal-hero__content .about-section__eyebrow,
  .legal-hero__content .legal-hero__title,
  .legal-hero__content .legal-hero__lead,
  .contact-hero__panel,
  .contact-connect__intro,
  .contact-card,
  .contact-form-card,
  .legal-hero__panel,
  .legal-sections__intro,
  .legal-card,
  .legal-content-card,
  .site-footer__brand,
  .site-footer__column,
  .site-footer__bottom {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================
   MOBILE NAV
========================= */
.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 12, 24, 0.42);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 22rem);
  height: 100vh;
  background-color: #ffffff;
  z-index: 41;
  padding: 1.5rem 1.25rem 2rem;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s ease;
  pointer-events: none;
  overflow-y: auto;
}

.mobile-nav__panel.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-nav__logo {
  width: 74px;
  height: auto;
  display: block;
}

.mobile-nav__close {
  appearance: none;
  border: none;
  background: transparent;
  color: #003BA1;
  padding: 0;
  cursor: pointer;
}

.mobile-nav__close i {
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-nav__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.mobile-nav__body > a {
  color: #003BA1;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.mobile-nav__body > a[aria-current="page"] {
  color: #FF6412;
}

.mobile-nav__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mobile-nav__group-toggle {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #003BA1;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.mobile-nav__group-toggle i {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.mobile-nav__group.is-open .mobile-nav__group-toggle i {
  transform: rotate(180deg);
}

.mobile-nav__subnav {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  padding-left: 1rem;
}

.mobile-nav__group.is-open .mobile-nav__subnav {
  display: flex;
}

.mobile-nav__subnav a {
  color: rgba(0, 59, 161, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border: 1px solid rgba(0, 59, 161, 0.16);
  border-radius: 999px;
  color: #003ba1 !important;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 28px rgba(12, 26, 49, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease,
    color 0.24s ease, border-color 0.24s ease;
}

.mobile-nav__cta:hover,
.mobile-nav__cta:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: #ff6412 !important;
  border-color: rgba(255, 100, 18, 0.32);
}

@media (max-width: 1100px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: none;
  }

  .home-hero__title {
    max-width: 12ch;
  }

  .home-hero__media {
    width: min(100%, 42rem);
    min-height: 32rem;
    margin: 0 auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero__inner,
  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-story__card {
    position: relative;
    top: auto;
  }

  .contact-hero__inner,
  .contact-connect__inner {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    position: relative;
    top: auto;
  }

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

  .legal-hero__inner {
    grid-template-columns: 1fr;
  }

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

  .services-hero__inner,
  .service-section__inner {
    grid-template-columns: 1fr;
  }

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

  .services-hero__content {
    max-width: none;
  }

  .services-hero__title {
    max-width: 12ch;
  }

  .services-hero__visual {
    width: min(100%, 42rem);
    min-height: 32rem;
    margin: 0 auto;
  }

  .services-hero__visual--single .services-hero__image--primary {
    width: min(100%, 30rem);
  }

  .service-section__panel {
    position: relative;
    top: auto;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1240px) {
  .main-nav__inner {
    padding: 0.75rem 1.25rem;
  }

  .main-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav__actions {
    display: none;
  }

  .brand__logo {
    width: 68px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 2.5rem 1rem 3.5rem;
  }

  .home-hero__title {
    max-width: none;
    font-size: clamp(1.41rem, 6.75vw, 2.31rem);
  }

  .home-hero__text {
    font-size: 1rem;
  }

  .home-hero__note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__button {
    width: 100%;
  }

  .home-hero__media {
    min-height: 24rem;
  }

  .home-hero__image--primary {
    width: min(100%, 19rem);
  }

  .home-hero__image--secondary {
    width: min(56%, 10.5rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-top: 2.75rem;
    padding-bottom: 2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .contact-page-shell {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .legal-page-shell {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .services-page {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .legal-hero__title {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .legal-hero__lead {
    font-size: 1rem;
  }

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

  .legal-card,
  .legal-content-card,
  .legal-hero__panel {
    border-radius: 1.5rem;
  }

  .contact-hero__title {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .contact-hero__lead {
    font-size: 1rem;
  }

  .contact-hero__note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-hero__content .home-hero__actions {
    flex-direction: column;
  }

  .contact-hero__content .home-hero__button {
    width: 100%;
  }

  .contact-card-grid,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-form-card,
  .contact-hero__panel {
    border-radius: 1.5rem;
  }

  .about-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    max-width: none;
  }

  .services-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    max-width: none;
  }

  .about-hero__lead {
    font-size: 1rem;
  }

  .services-hero__lead {
    font-size: 1rem;
  }

  .services-hero__actions {
    flex-direction: column;
  }

  .services-hero__actions .home-hero__button {
    width: 100%;
  }

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

  .provider-grid,
  .repair-grid {
    grid-template-columns: 1fr;
  }

  .services-hero__visual {
    min-height: 24rem;
  }

  .services-hero__image--primary {
    width: min(100%, 19rem);
  }

  .services-hero__image--secondary {
    width: min(56%, 10.75rem);
  }

  .services-hero__visual--single .services-hero__image--primary {
    width: min(100%, 19rem);
  }

  .about-story__copy,
  .about-story__card,
  .about-location-card {
    border-radius: 1.5rem;
  }

  .service-section__copy,
  .service-section__panel,
  .service-mini-card,
  .provider-card,
  .repair-card {
    border-radius: 1.5rem;
  }

  .about-certificates {
    min-height: 24rem;
  }

  .about-certificate--primary {
    width: min(100%, 18rem);
  }

  .about-certificate--secondary {
    width: min(60%, 11rem);
  }

  .about-locations__grid {
    grid-template-columns: 1fr;
  }

  .service-keywords {
    gap: 0.75rem;
  }
}
