:root {
  --cor-azul-profundo: #26325a;
  --cor-azul: #579ed9;
  --cor-laranja: #d67c1c;
  --cor-branco: #ffffff;
  --cor-fundo: #f7fbff;
  --cor-fundo-azul: #eef7ff;
  --cor-texto: #26325a;
  --cor-texto-suave: #5d6b82;
  --cor-borda: #d8e8f5;
  --cor-verde: #27ae60;
  --sombra-suave: 0 18px 44px rgba(38, 50, 90, 0.1);
  --sombra-card: 0 12px 30px rgba(38, 50, 90, 0.08);
  --raio: 8px;
  --header-altura: 86px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cor-branco);
  color: var(--cor-texto);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

:focus-visible {
  outline: 3px solid rgba(214, 124, 28, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--raio);
  background: var(--cor-azul-profundo);
  color: var(--cor-branco);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  scroll-margin-top: calc(var(--header-altura) + 28px);
  padding: 88px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--cor-laranja);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--cor-azul-profundo);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.08rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--raio);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

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

.btn-primary {
  background: var(--cor-laranja);
  color: var(--cor-branco);
  box-shadow: 0 10px 24px rgba(214, 124, 28, 0.25);
}

.btn-primary:hover {
  background: #c76f14;
  box-shadow: 0 14px 28px rgba(214, 124, 28, 0.32);
}

.btn-outline {
  border-color: var(--cor-borda);
  background: var(--cor-branco);
  color: var(--cor-azul-profundo);
}

.btn-outline:hover {
  border-color: var(--cor-azul);
  color: var(--cor-azul);
  box-shadow: 0 10px 24px rgba(87, 158, 217, 0.16);
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.64);
  background: transparent;
  color: var(--cor-branco);
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 232, 245, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(216, 232, 245, 0.95);
  box-shadow: 0 12px 30px rgba(38, 50, 90, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-altura);
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 22px);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--cor-texto-suave);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--cor-laranja);
}

.header-cta {
  flex: 0 0 auto;
  padding-inline: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background: var(--cor-branco);
  color: var(--cor-azul-profundo);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 74px;
  background:
    linear-gradient(180deg, var(--cor-fundo) 0%, var(--cor-branco) 58%),
    var(--cor-branco);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--cor-borda);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  min-width: 0;
}

.hero-text {
  max-width: 630px;
  margin-top: 24px;
  color: var(--cor-texto-suave);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background:
    linear-gradient(145deg, rgba(238, 247, 255, 0.92), rgba(255, 255, 255, 0.96)),
    var(--cor-fundo-azul);
  box-shadow: var(--sombra-suave);
}

.hero-wave {
  position: absolute;
  inset: auto -70px -100px 34px;
  height: 245px;
  border: 1px solid rgba(87, 158, 217, 0.26);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.route-map {
  position: absolute;
  inset: 18px 10px 18px 10px;
  width: calc(100% - 20px);
  height: calc(100% - 36px);
}

.route-shadow,
.route-line,
.connection-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-shadow {
  stroke: rgba(38, 50, 90, 0.1);
  stroke-width: 14;
}

.route-line {
  stroke: var(--cor-azul);
  stroke-dasharray: 12 14;
  stroke-width: 7;
}

.route-node circle:first-child {
  fill: var(--cor-branco);
  stroke: var(--cor-azul);
  stroke-width: 4;
}

.route-node circle:last-child {
  fill: var(--cor-azul);
}

.route-marker path {
  fill: var(--cor-laranja);
}

.route-marker circle {
  fill: var(--cor-branco);
}

.connection-line {
  stroke: rgba(38, 50, 90, 0.28);
  stroke-width: 2;
}

.connection-dot {
  fill: var(--cor-azul);
}

.hero-step {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 232, 245, 0.95);
  border-radius: var(--raio);
  background: rgba(255, 255, 255, 0.92);
  color: var(--cor-azul-profundo);
  box-shadow: 0 12px 26px rgba(38, 50, 90, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
  animation: floatSoft 4.8s ease-in-out infinite;
}

.hero-step-one {
  top: 76px;
  left: 42px;
}

.hero-step-two {
  top: 178px;
  right: 42px;
  animation-delay: 0.6s;
}

.hero-step-three {
  bottom: 70px;
  left: 72px;
  animation-delay: 1.1s;
}

.step-icon,
.journey-icon,
.pillar-icon,
.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cor-fundo-azul);
  color: var(--cor-azul);
}

.step-icon {
  width: 34px;
  height: 34px;
}

.step-icon svg,
.journey-icon svg,
.pillar-icon svg,
.audience-icon svg {
  width: 56%;
  height: 56%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.learning-card {
  position: absolute;
  right: 38px;
  bottom: 34px;
  z-index: 2;
  width: min(245px, calc(100% - 76px));
  padding: 18px;
  border: 1px solid rgba(216, 232, 245, 0.95);
  border-left: 4px solid var(--cor-laranja);
  border-radius: var(--raio);
  background: var(--cor-branco);
  box-shadow: var(--sombra-card);
}

.card-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--cor-texto-suave);
  font-size: 0.72rem;
  font-weight: 700;
}

.learning-card strong {
  display: block;
  color: var(--cor-azul-profundo);
  font-size: 0.95rem;
  line-height: 1.35;
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  margin-top: 14px;
}

.progress-row span {
  height: 7px;
  border-radius: 999px;
  background: var(--cor-verde);
}

.progress-row span:nth-child(2) {
  background: var(--cor-azul);
}

.progress-row span:nth-child(3) {
  background: var(--cor-laranja);
}

/* Jornada */
.journey-section {
  background: var(--cor-branco);
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.journey::before {
  content: "";
  position: absolute;
  top: 71px;
  right: 8%;
  left: 8%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(87, 158, 217, 0.7) 45%, transparent 45%);
  background-size: 18px 2px;
}

.journey-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 22px 18px 24px;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background: var(--cor-branco);
  box-shadow: var(--sombra-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.journey-card:hover,
.pillar-card:hover,
.audience-card:hover,
.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 158, 217, 0.45);
  box-shadow: 0 18px 38px rgba(38, 50, 90, 0.12);
}

.journey-number {
  display: block;
  margin-bottom: 14px;
  color: rgba(38, 50, 90, 0.28);
  font-size: 0.9rem;
  font-weight: 800;
}

.journey-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid var(--cor-borda);
  background: var(--cor-branco);
}

.journey-card h3 {
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.journey-card p,
.pillar-card p,
.audience-card p,
.results-intro p,
.metric-card p,
.about-copy p,
.footer-brand p,
.footer-col li,
.footer-bottom {
  color: var(--cor-texto-suave);
}

.journey-card p,
.pillar-card p,
.audience-card p,
.metric-card p {
  font-size: 0.94rem;
}

/* Resultados */
.results-section {
  background: var(--cor-fundo);
}

.results-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background: linear-gradient(135deg, var(--cor-fundo-azul), var(--cor-branco));
}

.results-intro {
  padding: 28px;
  border-radius: var(--raio);
  background: var(--cor-branco);
  box-shadow: var(--sombra-card);
}

.results-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(216, 232, 245, 0.95);
  border-radius: var(--raio);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cor-laranja);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
}

/* Pilares */
.pillars-section {
  background: var(--cor-branco);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  min-width: 0;
  padding: 26px 20px;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background: var(--cor-branco);
  box-shadow: var(--sombra-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar-icon,
.audience-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  background: var(--cor-fundo-azul);
}

.pillar-card h3,
.audience-card h3 {
  margin-bottom: 12px;
}

/* Público */
.audience-section {
  background: var(--cor-fundo-azul);
}

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

.audience-card {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(216, 232, 245, 0.95);
  border-radius: var(--raio);
  background: var(--cor-branco);
  box-shadow: var(--sombra-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card p {
  margin-bottom: 24px;
}

/* Sobre */
.about-section {
  background: var(--cor-branco);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.15fr) minmax(250px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.about-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background:
    linear-gradient(145deg, rgba(238, 247, 255, 0.96), rgba(255, 255, 255, 0.98)),
    var(--cor-fundo-azul);
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(87, 158, 217, 0.28);
  border-radius: 999px;
}

.portrait-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(214, 124, 28, 0.34);
  border-radius: 999px;
  background: var(--cor-branco);
  color: var(--cor-laranja);
  box-shadow: var(--sombra-card);
  font-size: 2rem;
  font-weight: 800;
}

.portrait-lines {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: grid;
  gap: 9px;
}

.portrait-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(87, 158, 217, 0.2);
}

.portrait-lines span:nth-child(2) {
  width: 74%;
  background: rgba(214, 124, 28, 0.22);
}

.portrait-lines span:nth-child(3) {
  width: 54%;
}

.about-copy {
  min-width: 0;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy p + p {
  margin-top: 14px;
}

.signature {
  color: var(--cor-laranja);
  font-size: 1.2rem;
  font-weight: 800;
}

.about-differentials {
  padding: 26px;
  border: 1px solid var(--cor-borda);
  border-radius: var(--raio);
  background: var(--cor-fundo);
}

.about-differentials li {
  position: relative;
  padding-left: 26px;
  color: var(--cor-azul-profundo);
  font-size: 0.94rem;
  font-weight: 700;
}

.about-differentials li + li {
  margin-top: 16px;
}

.about-differentials li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cor-verde);
  box-shadow: 0 0 0 5px rgba(39, 174, 96, 0.12);
}

/* CTA final */
.final-cta {
  background: var(--cor-azul-profundo);
  color: var(--cor-branco);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  max-width: 780px;
  color: var(--cor-branco);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

/* Footer */
.site-footer {
  background: var(--cor-azul-profundo);
  color: var(--cor-branco);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(160px, 0.6fr));
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-col h2 {
  margin-bottom: 14px;
  color: var(--cor-branco);
  font-size: 0.94rem;
  font-weight: 800;
}

.footer-col li,
.footer-col a,
.footer-bottom,
.social-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.footer-col li,
.footer-col a {
  min-width: 0;
  max-width: 100%;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a,
.social-links a,
.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-col a:hover,
.social-links a:hover,
.footer-bottom a:hover {
  color: var(--cor-branco);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

/* Animações */
@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* Responsivo */
@media (max-width: 1199px) {
  .container {
    width: min(100% - 36px, 1060px);
  }

  .header-inner {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: 38px;
  }

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

@media (max-width: 991px) {
  :root {
    --header-altura: 76px;
  }

  .section {
    padding: 72px 0;
  }

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--raio);
    background: var(--cor-branco);
    box-shadow: none;
    transition: max-height 0.25s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .site-header.is-open .site-nav {
    max-height: calc(100vh - var(--header-altura) - 24px);
    overflow-y: auto;
    border-color: var(--cor-borda);
    box-shadow: 0 18px 42px rgba(38, 50, 90, 0.15);
  }

  .nav-list {
    display: block;
    padding: 10px;
  }

  .nav-list a {
    display: flex;
    min-height: 46px;
    padding: 6px 12px;
    border-radius: var(--raio);
    white-space: normal;
  }

  .nav-list a:hover {
    background: var(--cor-fundo-azul);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .about-grid,
  .results-panel,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .journey::before {
    display: none;
  }

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

  .about-portrait {
    min-height: 270px;
  }

  .about-differentials {
    width: 100%;
  }

  .final-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .audience-card .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-step {
    min-width: 138px;
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .hero-step-one {
    top: 54px;
    left: 18px;
  }

  .hero-step-two {
    top: 158px;
    right: 16px;
  }

  .hero-step-three {
    bottom: 66px;
    left: 18px;
  }

  .learning-card {
    right: 18px;
    bottom: 18px;
    width: min(230px, calc(100% - 36px));
  }

  .journey,
  .pillars-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .journey-card,
  .pillar-card,
  .audience-card,
  .metric-card,
  .results-intro,
  .results-panel {
    padding: 22px;
  }

  .section-heading,
  .section-heading.centered {
    margin-bottom: 30px;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 396px);
  }

  h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 1.7rem;
  }

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

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .btn {
    min-height: 46px;
    padding-inline: 16px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-step {
    gap: 8px;
    min-width: 126px;
  }

  .step-icon {
    width: 30px;
    height: 30px;
  }

  .hero-step-two {
    top: 145px;
  }

  .learning-card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
