:root {
  --black: #07070a;
  --black-2: #0b0c11;
  --black-3: #11131a;
  --black-4: #171923;
  --red: #dc2626;
  --red-bright: #ff2a2a;
  --red-dark: #b91c1c;
  --red-deep: #991b1b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --muted: #a7acb8;
  --muted-dark: #6b7280;
  --line: rgba(255, 255, 255, 0.10);
  --line-light: #e5e7eb;
  --header-height: 76px;
}

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

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

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.page-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(1260px, calc(100% - 28px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo-box,
.footer-logo-box,
.closing-logo-box {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.brand-logo-box {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(220, 38, 38, 0.24);
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  color: var(--red);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.15vw, 32px);
}

.nav-link {
  display: inline-block;
  position: relative;
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transform-origin: center;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-shadow 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--red-bright);
  transform: scale(1.055);
  text-shadow:
    0 0 8px rgba(255, 42, 42, 0.65),
    0 0 18px rgba(220, 38, 38, 0.55),
    0 0 28px rgba(239, 68, 68, 0.45);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
  box-shadow: 0 0 14px rgba(255, 42, 42, 0.85);
}

.login-button {
  justify-self: end;
  min-width: 98px;
  padding: 10px 22px;
  border-radius: 9px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(220, 38, 38, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.login-button:hover,
.login-button:focus-visible {
  transform: translateY(-2px) scale(1.045);
  background: var(--red-dark);
  box-shadow: 0 11px 25px rgba(220, 38, 38, 0.32);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #fef2f2;
  color: var(--red);
  font-size: 20px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(100% - 28px, 520px);
  margin: 0 auto 14px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.mobile-menu.open {
  display: grid;
}

.mobile-link,
.mobile-login {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  background: #fef2f2;
  transform: scale(1.02);
}

.mobile-login {
  margin-top: 4px;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.mobile-login:hover,
.mobile-login:focus-visible {
  background: var(--red-dark);
  transform: scale(1.02);
  box-shadow: 0 9px 20px rgba(220, 38, 38, 0.22);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(220, 38, 38, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(153, 27, 27, 0.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #060609 0%,
      #0a0b10 48%,
      #111018 100%
    );
  border-bottom: 1px solid var(--line);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  width: 430px;
  height: 430px;
  top: -250px;
  left: 9%;
  background: rgba(220, 38, 38, 0.10);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -170px;
  background: rgba(220, 38, 38, 0.12);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
  padding-top: 78px;
  padding-bottom: 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #fca5a5;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 42, 42, 0.8);
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.3vw, 70px);
  line-height: 1.02;
  letter-spacing: -2.7px;
  font-weight: 800;
}

.hero-copy h1 span {
  color: #ef4444;
}

.hero-copy > p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 11px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

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

.button-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.24);
}

.button-red:hover {
  box-shadow: 0 15px 34px rgba(220, 38, 38, 0.34);
}

.button-dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-dark-outline:hover {
  border-color: rgba(239, 68, 68, 0.55);
  background: rgba(220, 38, 38, 0.08);
}

.button-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.20);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-signals > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
}

.hero-signals i {
  color: #ef4444;
}

.service-overview {
  padding: 24px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.035)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.overview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.overview-header div span,
.overview-header div strong {
  display: block;
}

.overview-header div span {
  color: #ef4444;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.overview-header div strong {
  margin-top: 4px;
  font-size: 17px;
}

.overview-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.10);
  color: #86efac;
  font-size: 10px;
  font-weight: 700;
}

.overview-status i {
  font-size: 6px;
}

.overview-flow {
  padding: 22px 0;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.flow-item-highlight {
  background:
    linear-gradient(
      135deg,
      rgba(220, 38, 38, 0.18),
      rgba(185, 28, 28, 0.08)
    );
  border-color: rgba(239, 68, 68, 0.28);
}

.flow-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.14);
  color: #ef4444;
}

.flow-item strong,
.flow-item small {
  display: block;
}

.flow-item strong {
  font-size: 13px;
}

.flow-item small {
  color: var(--muted);
  font-size: 10px;
}

.flow-number {
  color: rgba(255, 255, 255, 0.20);
  font-size: 20px;
  font-weight: 800;
}

.flow-line {
  width: 1px;
  height: 13px;
  margin: 0 0 0 36px;
  background: rgba(239, 68, 68, 0.32);
}

.overview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.overview-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 9.5px;
}

.overview-footer i {
  color: #ef4444;
}

/* =========================================================
   SERVIÇOS
========================================================= */

.services-section {
  padding: 100px 0;
  background: var(--off-white);
  color: var(--black-4);
}

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

.section-heading h2,
.journey-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -1.4px;
  font-weight: 750;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-card-dark {
  background: var(--black-3);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.15);
}

.service-card-red {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 22px 46px rgba(153, 27, 27, 0.24);
}

.service-card-light {
  background: var(--white);
  color: var(--black-4);
  border: 1px solid var(--line-light);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.07);
}

.service-card-dark:hover {
  border-color: rgba(239, 68, 68, 0.36);
  box-shadow: 0 25px 54px rgba(17, 24, 39, 0.22);
}

.service-card-red:hover {
  box-shadow: 0 29px 58px rgba(153, 27, 27, 0.32);
}

.service-card-light:hover {
  border-color: #fca5a5;
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.11);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.card-number {
  color: rgba(255, 255, 255, 0.20);
  font-size: 28px;
  font-weight: 800;
}

.service-card-light .card-number {
  color: #d1d5db;
}

.service-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.14);
  color: #ef4444;
  font-size: 18px;
}

.service-card-red .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.service-card-light .service-icon {
  background: #fef2f2;
  color: var(--red);
}

.card-audience {
  color: #ef4444;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card-red .card-audience {
  color: #fecaca;
}

.service-card h3 {
  margin: 7px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.service-card > p {
  min-height: 72px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-card-red > p {
  color: rgba(255, 255, 255, 0.82);
}

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

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

.features-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.features-list li::before {
  content: '✓';
  color: #ef4444;
  font-weight: 800;
}

.service-card-red .features-list li {
  color: rgba(255, 255, 255, 0.90);
}

.service-card-red .features-list li::before {
  color: var(--white);
}

.service-card-light .features-list li {
  color: #5f6570;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #ef4444;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.card-link i {
  transition: transform 0.25s ease;
}

.card-link:hover i {
  transform: translateX(5px);
}

.service-card-red .card-link {
  color: var(--white);
  border-top-color: rgba(255, 255, 255, 0.20);
}

.service-card-light .card-link {
  color: var(--red);
  border-top-color: var(--line-light);
}

/* =========================================================
   JORNADA
========================================================= */

.journey-section {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(54px, 8vw, 108px);
  align-items: center;
}

.section-index {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.journey-copy p {
  max-width: 500px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.journey-list {
  display: grid;
  gap: 13px;
  list-style: none;
}

.journey-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 21px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.journey-item:hover {
  transform: translateX(6px);
  border-color: rgba(239, 68, 68, 0.34);
  background: #141620;
}

.journey-item > span {
  color: rgba(255, 255, 255, 0.20);
  font-size: 20px;
  font-weight: 800;
}

.journey-item strong {
  display: block;
  font-size: 14px;
}

.journey-item p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.journey-item > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.13);
  color: #ef4444;
}

/* =========================================================
   FECHAMENTO E FOOTER
========================================================= */

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    linear-gradient(
      125deg,
      #09090d 0%,
      #111118 57%,
      #2a0a0d 100%
    );
  border-top: 1px solid rgba(220, 38, 38, 0.20);
}

.closing-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: -220px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.14);
  filter: blur(10px);
}

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.closing-brand {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.closing-logo-box {
  width: 78px;
  height: 78px;
  border-radius: 20px;
}

.closing-logo-box img {
  width: 59px;
  height: 59px;
  object-fit: contain;
}

.closing-copy h2 {
  max-width: 690px;
  font-size: clamp(28px, 3.8vw, 43px);
  line-height: 1.14;
  letter-spacing: -1.2px;
}

.closing-copy p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 32px 0;
  background: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.footer-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.footer-logo-box img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.footer-content p,
.footer-copy {
  color: #737986;
  font-size: 12px;
}

.footer-content p {
  text-align: center;
}

.footer-copy {
  text-align: right;
}

/* =========================================================
   ANIMAÇÕES
========================================================= */

.entrance {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.2, 0.75, 0.25, 1);
}

.entrance-left {
  animation-name: entranceLeft;
}

.entrance-right {
  animation-name: entranceRight;
  animation-delay: 0.12s;
}

@keyframes entranceLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

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

@keyframes entranceRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

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

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

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .reveal {
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1080px) {
  .header-inner {
    gap: 16px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .nav-link {
    font-size: 12.5px;
  }

  .login-button {
    min-width: 86px;
    padding-inline: 18px;
  }

  .service-card {
    padding: 25px;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .login-button {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 760px);
  }

  .mobile-menu-button {
    display: grid;
    place-items: center;
  }

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

  .hero-grid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-signals {
    justify-content: center;
  }

  .service-overview {
    width: min(100%, 560px);
    margin: 0 auto;
  }

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

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

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

  .journey-layout {
    gap: 42px;
  }

  .closing-content {
    grid-template-columns: auto 1fr;
  }

  .closing-content > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .page-container {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo-box {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 31px;
    height: 31px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-grid {
    padding-top: 58px;
    padding-bottom: 62px;
    gap: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 12vw, 54px);
    letter-spacing: -2px;
  }

  .hero-signals {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .service-overview {
    padding: 18px;
  }

  .overview-header {
    align-items: center;
  }

  .overview-status {
    padding: 6px 8px;
  }

  .overview-footer {
    grid-template-columns: 1fr;
  }

  .services-section,
  .journey-section {
    padding: 78px 0;
  }

  .service-card {
    padding: 24px;
  }

  .section-index {
    font-size: 45px;
  }

  .journey-item {
    grid-template-columns: auto 1fr;
    gap: 13px;
  }

  .journey-item > i {
    display: none;
  }

  .closing-content,
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .closing-copy {
    text-align: center;
  }

  .closing-content > .button {
    grid-column: auto;
    justify-self: center;
  }

  .footer-content p,
  .footer-copy {
    text-align: center;
  }
}

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

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

  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}