:root {
  color-scheme: light;
  --ink: #132033;
  --muted-ink: #526173;
  --soft-ink: #6d7a8b;
  --brand: #0f3f7f;
  --brand-strong: #0b2d59;
  --brand-light: #e7f0fb;
  --accent: #17a7bd;
  --accent-strong: #0e7d91;
  --mint: #24b47e;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #dce5f0;
  --shadow: 0 18px 45px rgba(20, 39, 66, 0.12);
  --container: 1160px;
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

ul,
dl,
dd {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(23, 167, 189, 0.55);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--brand-strong);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(220, 229, 240, 0.85);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(14, 35, 66, 0.08);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(220, 229, 240, 0.85);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(14, 35, 66, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: clamp(132px, 14vw, 164px);
  height: auto;
  flex: 0 0 auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  border-radius: var(--radius);
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav-menu a:hover {
  background: var(--brand-light);
  color: var(--brand-strong);
}

.nav-menu .nav-cta {
  margin-left: 4px;
  background: var(--brand);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 63, 127, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  color: currentColor;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(15, 63, 127, 0.2);
  background: #ffffff;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-line::before {
  transform: translateY(-6px);
}

.nav-toggle-line::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(23, 167, 189, 0.45), transparent 32%),
    linear-gradient(132deg, #08223f 0%, #0f3f7f 44%, #154c7a 100%);
  color: #ffffff;
  isolation: isolate;
}

.hero-canvas,
.hero-shade,
.hero-product-visual {
  position: absolute;
}

.hero-canvas {
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-shade {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 18, 35, 0.78) 0%, rgba(7, 32, 59, 0.58) 47%, rgba(8, 34, 63, 0.3) 100%),
    linear-gradient(180deg, rgba(4, 19, 36, 0.2) 0%, rgba(4, 19, 36, 0.48) 100%);
}

.hero-product-visual {
  top: 15%;
  right: clamp(-210px, -8vw, -70px);
  z-index: -1;
  width: min(56vw, 760px);
  min-width: 520px;
  opacity: 0.9;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.25));
}

.hero-inner {
  padding-block: calc(var(--header-height) + clamp(34px, 8svh, 88px)) clamp(40px, 8svh, 78px);
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8be9ef;
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 830px;
  font-size: clamp(2.4rem, 5.7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.15;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.btn-primary {
  background: #ffffff;
  color: var(--brand-strong);
  box-shadow: 0 16px 34px rgba(1, 14, 29, 0.2);
}

.btn-primary:hover {
  background: #f2fbff;
  border-color: rgba(23, 167, 189, 0.45);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-wide {
  width: 100%;
}

.icon-mail {
  position: relative;
  width: 18px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-mail::before,
.icon-mail::after {
  position: absolute;
  top: 1px;
  width: 9px;
  height: 2px;
  background: currentColor;
  content: "";
}

.icon-mail::before {
  left: 1px;
  transform: rotate(32deg);
  transform-origin: left center;
}

.icon-mail::after {
  right: 1px;
  transform: rotate(-32deg);
  transform-origin: right center;
}

.icon-grid {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 3px;
  background:
    linear-gradient(currentColor 0 0) left top / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) right top / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) right bottom / 7px 7px no-repeat;
}

.hero-facts {
  display: grid;
  max-width: 870px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(5, 21, 40, 0.32);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 850;
}

.hero-facts dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
}

.section {
  padding-block: clamp(66px, 9vw, 112px);
  background: var(--panel);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-intro {
  padding-block: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.logo-cloud-section {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding-block: clamp(36px, 5vw, 62px);
}

.logo-cloud {
  display: grid;
  gap: 22px;
}

.logo-cloud-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 56px);
  align-items: end;
}

.logo-cloud-heading h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.logo-cloud-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.logo-tile {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 39, 66, 0.05);
}

.logo-tile-pending {
  border-color: rgba(36, 180, 126, 0.28);
  background:
    linear-gradient(135deg, rgba(36, 180, 126, 0.08), transparent 48%),
    #ffffff;
}

.logo-status {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(36, 180, 126, 0.28);
  border-radius: 999px;
  background: #e8f7f1;
  color: #137452;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  padding: 6px 8px;
}

.logo-tile img,
.logo-tile picture {
  display: block;
  width: 100%;
  max-width: 132px;
  height: 58px;
}

.logo-tile img {
  object-fit: contain;
}

.logo-tile figcaption {
  color: var(--muted-ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.logo-note {
  max-width: 830px;
  color: var(--soft-ink);
  font-size: 0.9rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.intro-grid h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.intro-grid p:last-child {
  max-width: 660px;
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.muted {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.section-heading h2,
.trust-grid h2,
.contact-panel h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.section-heading p,
.trust-grid p,
.contact-panel p {
  margin-top: 14px;
  color: var(--muted-ink);
  font-size: 1.03rem;
}

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

.category-card,
.audience-item,
.step,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 39, 66, 0.06);
}

.category-card {
  position: relative;
  min-height: 246px;
  padding: 22px;
  overflow: hidden;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.category-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(23, 167, 189, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 167, 189, 0.16), transparent 65%);
  content: "";
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 167, 189, 0.48);
  box-shadow: var(--shadow);
}

.category-card-accent {
  border-color: rgba(36, 180, 126, 0.28);
  background:
    linear-gradient(135deg, rgba(36, 180, 126, 0.1), transparent 42%),
    #ffffff;
}

.status-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  border: 1px solid rgba(36, 180, 126, 0.28);
  border-radius: 999px;
  background: #e8f7f1;
  color: #137452;
  font-size: 0.73rem;
  font-weight: 850;
  line-height: 1;
  padding: 7px 10px;
}

.category-logo {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 8px;
}

.category-logo img,
.category-logo picture {
  width: 100%;
  height: 100%;
}

.category-logo img {
  object-fit: contain;
}

.category-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.category-card p {
  margin-top: 10px;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: start;
}

.section-heading-sticky {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin-bottom: 0;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 16px;
  padding: 20px;
}

.audience-item h3 {
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.25;
}

.audience-item p {
  grid-column: 2;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.check-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  border-radius: var(--radius);
  background: #e8f7f1;
}

.check-icon::before {
  width: 15px;
  height: 8px;
  border-bottom: 3px solid var(--mint);
  border-left: 3px solid var(--mint);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 24px;
}

.step::before {
  position: absolute;
  top: 44px;
  right: -17px;
  z-index: 1;
  width: 17px;
  height: 1px;
  background: var(--line);
  content: "";
}

.step:last-child::before {
  display: none;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #ffffff;
  font-weight: 850;
}

.step h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.09rem;
  line-height: 1.24;
}

.step p {
  margin-top: 10px;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.trust-band {
  background:
    linear-gradient(135deg, rgba(8, 34, 63, 0.97), rgba(15, 63, 127, 0.94)),
    var(--brand-strong);
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 78px);
  align-items: start;
}

.trust-band .section-kicker,
.trust-band h2,
.trust-band p {
  color: #ffffff;
}

.trust-band p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 17px 17px 17px 44px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.trust-list li::before {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid #8be9ef;
  border-left: 2px solid #8be9ef;
  content: "";
  transform: rotate(-45deg);
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--paper) 58%, var(--paper) 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 240, 251, 0.9), rgba(255, 255, 255, 0.94)),
    #ffffff;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 22px;
}

.contact-label {
  display: block;
  color: var(--soft-ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-email {
  display: block;
  margin: 8px 0 18px;
  color: var(--brand);
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-card .btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 63, 127, 0.22);
}

.contact-card .btn-primary:hover {
  background: var(--brand-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted-ink);
  padding-block: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: start;
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: transparent;
}

.site-footer p {
  margin-top: 6px;
  max-width: 460px;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: var(--brand);
  font-weight: 800;
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@media (max-width: 1040px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .step::before {
    display: none;
  }

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

  .footer-copy {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    transition:
      max-height 220ms ease,
      opacity 180ms ease;
  }

  .nav-menu.is-open {
    max-height: 380px;
    opacity: 1;
  }

  .nav-menu a {
    border-radius: 0;
    padding: 14px 16px;
  }

  .nav-menu a + a {
    border-top: 1px solid var(--line);
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    border-radius: 0;
    background: var(--brand);
    color: #ffffff;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-product-visual {
    right: -300px;
    width: 720px;
    min-width: 0;
    opacity: 0.38;
  }

  .hero-inner {
    padding-block: calc(var(--header-height) + 44px) 42px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-top: 32px;
  }

  .hero-facts div {
    padding: 14px 16px;
  }

  .intro-grid,
  .logo-cloud-heading,
  .split,
  .trust-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading-sticky {
    position: static;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 26px;
  }
}

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

  .brand-logo {
    width: 128px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    padding-block: calc(var(--header-height) + 30px) 30px;
  }

  .hero h1 {
    font-size: clamp(2.02rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
  }

  .hero-facts {
    display: none;
  }

  .hero-product-visual {
    top: 20%;
    right: -400px;
    width: 700px;
    opacity: 0.22;
  }

  .section {
    padding-block: 58px;
  }

  .section-intro {
    padding-block: 32px;
  }

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

  .section-heading h2,
  .trust-grid h2,
  .contact-panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .category-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .logo-cloud-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .step {
    min-height: auto;
  }

  .audience-item {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 18px;
  }

  .check-icon {
    width: 38px;
    height: 38px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-card {
    padding: 18px;
  }

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

@media (max-height: 720px) {
  .hero-facts {
    display: none;
  }
}

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

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