:root {
  --yellow: #f5d400;
  --yellow-deep: #e6c200;
  --yellow-pattern: rgba(0, 0, 0, 0.06);
  --black: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-600: #444;
  --gray-400: #6b6b6b;
  --gray-100: #f5f5f5;
  --white: #fff;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5.5rem;
  --container: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gray-900);
  background: var(--white);
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Прогресс прокрутки страницы (сколько осталось до конца) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.07);
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Header: mobile — поверх hero; desktop — fixed + фон при скролле */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 25;
  color: var(--black);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 769px) {
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .site-header--scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 768px) {
  .site-header {
    position: absolute;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header--scrolled {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }
}

.site-header__inner {
  width: var(--container);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-sm);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: inherit;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.logo__mark {
  flex-shrink: 0;
  display: block;
  height: 1.55em;
  width: auto;
  aspect-ratio: 44 / 43;
  object-fit: contain;
}

.logo__text {
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.site-nav__list a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.95rem;
}

.phone-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bar {
  position: relative;
}

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

.nav-toggle__bar::before {
  top: -7px;
}

.nav-toggle__bar::after {
  top: 7px;
}

.site-header.is-open .nav-toggle__bar {
  background: transparent;
}

.site-header.is-open .nav-toggle__bar::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--light:hover {
  background: transparent;
}

@media (min-width: 769px) {
  .site-header--scrolled .btn--light {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
  }

  .site-header--scrolled .btn--light:hover {
    background: var(--yellow-deep);
    border-color: var(--yellow-deep);
    color: var(--black);
  }
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--block {
  width: 100%;
  padding-block: 0.85rem;
}

/* MAX / мессенджер */
.max-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.08),
    0 10px 36px rgba(0, 0, 0, 0.12);
  background: transparent;
  padding: 0;
}

.max-float__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.max-float__mark {
  transform-box: fill-box;
  transform-origin: center;
  animation: max-float-scale 2.8s ease-in-out infinite;
}

@keyframes max-float-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .max-float__mark {
    animation: none;
    transform: scale(1);
  }
}

.max-float:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .max-float:hover {
    transform: none;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--yellow);
  color: var(--black);
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.hero__pattern {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  pointer-events: none;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cg fill='none' stroke='%23000000' stroke-opacity='0.07'%3E%3Ccircle cx='260' cy='260' r='40'/%3E%3Ccircle cx='260' cy='260' r='90'/%3E%3Ccircle cx='260' cy='260' r='150'/%3E%3Ccircle cx='260' cy='260' r='220'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 520px 520px;
  background-position: 70% 20%;
  background-repeat: no-repeat;
}

.hero__inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--space-lg) var(--space-xl);
  align-items: start;
}

.hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 34rem;
  padding-top: 0.35rem;
}

.hero__lead p {
  margin: 0 0 var(--space-sm);
}

.hero__proof {
  color: var(--gray-900);
  font-size: 0.98rem;
}

.hero__logos {
  margin-top: var(--space-xl);
  max-width: 48rem;
}

.hero__logos-label {
  margin: 0 0 var(--space-sm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.hero__logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5.5rem, 1fr));
  gap: var(--space-sm) var(--space-md);
  align-items: center;
}

.hero__logo-slot {
  height: 2.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero__logo-slot--brand {
  height: 2.65rem;
  padding: 0.2rem 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero__logo-slot--brand img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Sections */
.section {
  padding-block: var(--space-2xl);
}

.section--services {
  background: var(--white);
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-lg);
}

.section-title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
}

.section-title--narrow {
  max-width: 26em;
}

.section-intro {
  margin: 0;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.service-tile {
  background: var(--gray-100);
  padding: var(--space-lg) var(--space-md);
  min-height: 100%;
}

.service-tile__icon {
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.service-tile__title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.service-tile__text {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.98rem;
}

/* Отрасли */
.section--industries {
  background: var(--white);
}

.industries-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  align-items: stretch;
}

.industry-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--space-lg) var(--space-md);
  background: var(--gray-100);
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  border-left-width: 4px;
  border-left-color: var(--yellow);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.industry-card--cbp {
  border-left-color: var(--gray-600);
}

.industry-card:hover {
  transform: translateY(-2px);
  background: #ececec;
  border-color: rgba(0, 0, 0, 0.08);
}

.industry-card:focus-visible {
  outline: none;
  transform: translateY(-2px);
  background: #ececec;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 0 2px var(--yellow);
}

.industry-card__title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--black);
}

.industry-card__text {
  margin: 0 0 var(--space-md);
  color: var(--gray-600);
  font-size: 0.98rem;
}

.industry-card__photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--gray-100);
}

.industry-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industry-card__cta {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.industry-card:hover .industry-card__cta,
.industry-card:focus-visible .industry-card__cta {
  text-decoration-thickness: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .industry-card {
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .industry-card:hover,
  .industry-card:focus-visible {
    transform: none;
  }

  .stages-layout__sticky {
    position: static;
  }
}

.section--stages {
  background: var(--white);
}

.section--stages .section-intro strong {
  color: var(--black);
  font-weight: 600;
}

.stages-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  align-items: start;
}

.stages-layout__sticky {
  position: sticky;
  top: calc(var(--header-h) + var(--space-md) + 3px);
  align-self: start;
  width: 100%;
}

.stages-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--gray-100);
}

.stages-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.stages-visual__img[data-step="0"] {
  object-fit: contain;
  background: #e4e4e4;
}

.stages-visual__img.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .stages-visual__img {
    transition-duration: 0.01ms;
  }
}

.stages-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.why-card__dot {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
}

/* About + stats */
.section--about {
  background: var(--white);
  padding-top: 0;
}

.section--about .about-lead {
  margin: var(--space-sm) 0 var(--space-md);
  max-width: 42rem;
}

.section--about .about-stats-note {
  margin: 0 0 var(--space-xs);
  max-width: 42rem;
  color: var(--gray-600);
  font-size: 0.98rem;
}

.section--about .stats-row {
  margin: var(--space-md) 0 var(--space-lg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.stat-box {
  background: var(--gray-100);
  padding: var(--space-md) var(--space-md);
  min-height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.stat-box__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--black);
}

.stat-box__label {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.35;
}

.about-text {
  margin: 0 0 var(--space-md);
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 52rem;
}

.about-figure {
  margin: var(--space-lg) 0;
  width: 100%;
  max-width: 100%;
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-actions {
  margin-top: var(--space-md);
}

/* Lead */
.section--lead {
  background: var(--gray-100);
  overflow-x: hidden;
}

.section--lead .container {
  min-width: 0;
  max-width: 100%;
}

.section--lead .section-title {
  max-width: 22em;
  margin-bottom: var(--space-lg);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-lg);
  align-items: start;
  min-width: 0;
  width: 100%;
}

.lead-form-panel {
  background: var(--white);
  padding: var(--space-lg);
  min-width: 0;
  max-width: 100%;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}

.field__input {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.field__input:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  border-color: var(--yellow-deep);
}

.form-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.form-note a {
  color: inherit;
  font-weight: 600;
}

.lead-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: 0.25rem;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.lead-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-sm);
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.lead-point__badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lead-point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.lead-point__body {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.lead-point p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.98rem;
  overflow-wrap: break-word;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding-block: var(--space-md);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__brand:hover {
  color: var(--gray-900);
}

.site-footer__brand-mark {
  flex-shrink: 0;
  display: block;
  height: 1.85rem;
  width: auto;
  aspect-ratio: 44 / 43;
  object-fit: contain;
}

.site-footer__brand-text {
  line-height: 1;
}

.site-footer__details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
  min-width: min(100%, 16rem);
}

.site-footer__primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-footer__sep {
  opacity: 0.45;
  user-select: none;
}

.site-footer__meta {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.35;
  max-width: 22rem;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__details {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }

  .site-footer__primary {
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero__lead {
    max-width: none;
    padding-top: 0;
  }

  .industries-cards {
    grid-template-columns: 1fr;
  }

  .stages-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stages-layout__sticky {
    position: static;
  }

  .section--stages .stages-visual__img:not([data-step="0"]) {
    display: none;
  }

  .section--stages .stages-visual__img[data-step="0"] {
    opacity: 1 !important;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: var(--header-h);
    background: var(--yellow);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md) var(--space-md) var(--space-lg);
    gap: var(--space-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

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

  .site-header__inner {
    flex-wrap: wrap;
  }

  .logo {
    order: 0;
  }

  .nav-toggle {
    order: 1;
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

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

  .section {
    padding-block: var(--space-xl);
  }

  .hero {
    padding-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .btn--light {
    width: 100%;
    justify-content: center;
  }

  .site-header__cta {
    width: 100%;
  }
}
