@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/raleway-variable.woff2?v=20260719-3") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #03101c;
  --navy-900: #061827;
  --navy-800: #0a2940;
  --blue-600: #0876b9;
  --blue-100: #dff2ff;
  --yellow-500: #fec400;
  --yellow-200: #ffe58a;
  --cream-50: #fffdf6;
  --cream-100: #f8f3e8;
  --cream-200: #ece3d0;
  --ink: #102c43;
  --muted: #536a7b;
  --white: #ffffff;
  --line-light: rgba(16, 44, 67, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(3, 16, 28, 0.14);
  --radius-sm: 0.75rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.75rem;
  --content: 78rem;
  --gutter: clamp(1.2rem, 4vw, 3.25rem);
}

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

html {
  background: var(--navy-950);
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--cream-50);
  color: var(--ink);
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  border-radius: 0.25rem;
  outline: 3px solid var(--yellow-500);
  outline-offset: 4px;
}

::selection {
  background: var(--yellow-500);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-top: 3px solid var(--yellow-500);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 16, 28, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  min-height: 4.8rem;
  margin: 0 auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 2.75rem;
}

.brand img {
  width: 8.875rem;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.55vw, 1.5rem);
}

.desktop-nav a,
.header-phone,
.language-switch {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.header-phone:hover,
.language-switch:hover {
  color: var(--yellow-500);
}

.language-switch {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  min-width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--yellow-200);
  transform: translateY(-2px);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.button--outline:hover {
  background: var(--white);
  color: var(--navy-950);
}

.button--dark {
  background: var(--navy-950);
  color: var(--white);
}

.button--dark:hover {
  background: var(--navy-800);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
  width: min(20rem, calc(100vw - 2 * var(--gutter)));
  padding: 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.mobile-nav__panel a {
  padding: 0.8rem 0.75rem;
  border-radius: 0.6rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav__panel a:hover {
  background: var(--navy-800);
  color: var(--yellow-500);
}

.breadcrumbs {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin: 0 auto;
  padding-top: 1.15rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--blue-600);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

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

.service-hero,
.hub-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) var(--gutter) clamp(4.5rem, 9vw, 7rem);
  background: var(--navy-950);
  color: var(--white);
  isolation: isolate;
}

.service-hero::after,
.hub-hero::after {
  position: absolute;
  right: clamp(-8rem, -7vw, -3rem);
  bottom: clamp(-10rem, -9vw, -5rem);
  z-index: -1;
  width: clamp(16rem, 32vw, 34rem);
  aspect-ratio: 1;
  border: clamp(2.5rem, 7vw, 7rem) solid rgba(254, 196, 0, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.72fr);
  align-items: center;
  width: min(100%, var(--content));
  margin: 0 auto;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  color: var(--yellow-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  font-family: "Raleway", system-ui, sans-serif;
  font-style: normal;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

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

.hero-lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.hero-proof div {
  min-height: 9rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-proof div:nth-child(2n) {
  border-right: 0;
}

.hero-proof div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-proof span {
  display: block;
  margin-bottom: 1rem;
  color: var(--yellow-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.hub-visual {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.hub-visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center;
}

.service-hero .hub-visual img {
  object-position: 72% center;
}

.hub-visual__label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(3, 16, 28, 0.88);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

.proof-strip {
  padding: 1.25rem var(--gutter);
  border-bottom: 1px solid var(--line-light);
  background: var(--yellow-500);
  color: var(--navy-950);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--content));
  margin: 0 auto;
  gap: 1rem;
}

.proof-strip div {
  display: grid;
}

.proof-strip strong {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.proof-strip span {
  font-size: 0.77rem;
  font-weight: 700;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
}

.section--cream {
  background: var(--cream-100);
}

.section--dark {
  background: var(--navy-950);
  color: var(--white);
}

.section__inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  gap: 2rem;
}

.section-heading h2,
.content-split h2,
.cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.3vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.section--dark .section-heading p,
.section--dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 23rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--cream-50);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-4px);
}

.service-card__number {
  margin-bottom: auto;
  color: var(--blue-600);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card:hover .service-card__number {
  color: var(--yellow-500);
}

.service-card h3 {
  margin: 2rem 0 0.9rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.service-card p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.card-link {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card:hover .card-link {
  color: var(--yellow-500);
}

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

.feature {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
}

.section--dark .feature {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.055);
}

.feature__number {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  place-items: center;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section--dark .feature p {
  color: rgba(255, 255, 255, 0.68);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.content-split h2 {
  margin-bottom: 1.4rem;
}

.content-split__body > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  gap: 0.8rem;
  font-weight: 700;
}

.check-list li::before {
  color: var(--blue-600);
  content: "✓";
  font-weight: 900;
}

.delivery-card {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.delivery-card > span {
  color: var(--yellow-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-card h3 {
  margin: 1rem 0;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 800;
}

.delivery-card p {
  color: rgba(255, 255, 255, 0.7);
}

.delivery-card dl {
  display: grid;
  margin: 2rem 0 0;
}

.delivery-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line-dark);
  gap: 1rem;
}

.delivery-card dt {
  color: rgba(255, 255, 255, 0.6);
}

.delivery-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process li {
  min-height: 14rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.process li:last-child {
  border-right: 0;
}

.process span {
  display: block;
  margin-bottom: 3rem;
  color: var(--yellow-500);
  font-size: 0.77rem;
  font-weight: 900;
}

.process strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.other-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.other-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: border 160ms ease, transform 160ms ease;
}

.other-services a::after {
  color: var(--blue-600);
  content: "→";
}

.other-services a:hover,
.other-services a[aria-current="page"] {
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

.service-archive-depth {
  background: var(--white);
}

.service-archive {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(18rem, 1.32fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.service-archive__intro {
  position: sticky;
  top: 7.5rem;
}

.service-archive__intro p:last-child {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--ink-muted);
}

.service-archive__content {
  display: grid;
  gap: 2rem;
}

.service-topic {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-light);
}

.service-topic:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-topic h3 {
  max-width: 28ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.service-topic p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.service-topic ul,
.service-topic ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.65rem;
}

.service-topic li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-muted);
}

.service-topic li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--yellow-500);
  content: "";
}

.faq-section {
  background: var(--cream-100);
}

.faq-list {
  width: min(100%, 56rem);
  margin-left: auto;
}

.faq-item {
  border-top: 1px solid var(--line-light);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 5rem;
  padding: 1rem 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800;
  cursor: pointer;
  gap: 1rem;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--blue-700);
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 48rem;
  margin: -0.25rem 0 1.5rem;
  color: var(--ink-muted);
}

.cta {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--yellow-500);
  color: var(--navy-950);
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: center;
  width: min(100%, var(--content));
  margin: 0 auto;
  gap: 2rem;
}

.cta h2 {
  max-width: 15ch;
}

.cta p {
  max-width: 44rem;
  margin: 1rem 0 0;
  font-weight: 600;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) 2rem;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  width: min(100%, var(--content));
  margin: 0 auto;
  gap: 3rem;
}

.footer-brand img {
  width: 10rem;
  height: auto;
}

.footer-brand p {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-column strong {
  margin-bottom: 0.65rem;
  color: var(--yellow-500);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(100%, var(--content));
  margin: 3.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  gap: 1rem;
}

@media (max-width: 66rem) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.58fr);
    gap: 2rem;
  }

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

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

  .feature:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  .nav-shell {
    min-height: 4.35rem;
  }

  .brand img {
    width: 7.875rem;
  }

  .nav-actions > .button {
    display: none;
  }

  .breadcrumbs {
    padding-top: 0.85rem;
  }

  .hero-grid,
  .section-heading,
  .content-split,
  .service-archive,
  .cta__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-archive__intro {
    position: static;
  }

  .service-hero,
  .hub-hero {
    padding-top: 3.8rem;
  }

  .hero-proof {
    margin-top: 1rem;
  }

  .hub-visual,
  .hub-visual img {
    min-height: 22rem;
  }

  .proof-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.4rem;
  }

  .feature-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .feature:last-child {
    grid-column: auto;
  }

  .process li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process li:last-child {
    border-bottom: 0;
  }

  .process span {
    margin-bottom: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 34rem) {
  .service-grid,
  .other-services,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 19rem;
  }

  .hero-proof div {
    min-height: auto;
    border-right: 0;
  }

  .hero-proof div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .cta .button {
    width: 100%;
  }
}

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

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