:root {
  --ink: #101113;
  --ink-2: #1a1c1f;
  --ink-3: #26292d;
  --red: #ed1c24;
  --red-deep: #b4141b;
  --silver: #c7c8ca;
  --grey: #757575;
  --paper: #ffffff;
  --paper-2: #f3f3f4;
  --body: #3a3d42;
  --display: "Petrona", Georgia, "Times New Roman", serif;
  --sans: "Epilogue", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1560px;
  --pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 104px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.container {
  width: 95%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.14;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

p {
  margin: 0 0 18px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--red);
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  background: var(--red-deep);
}

.btn--sm {
  font-size: 16px;
  padding: 14px 26px;
}

/* ---------- header ---------- */
.header {
  background: var(--paper);
  border-bottom: 1px solid #e4e4e6;
  position: relative;
  z-index: 40;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 104px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 64px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: block;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}

.header__nav-link:hover,
.header__nav-link[aria-current="page"] {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(14px, 1.05vw, 16px);
  padding: clamp(12px, 1vw, 14px) clamp(18px, 1.6vw, 26px);
}

.header__nav-extras {
  display: none;
}

.header__overlay {
  display: none;
}

.header__toggle {
  display: none;
  background: none;
  border: 1px solid #d6d6d8;
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 5;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.header.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  opacity: 0.5;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(16, 17, 19, 0.97) 0%,
    rgba(16, 17, 19, 0.92) 38%,
    rgba(16, 17, 19, 0.55) 62%,
    rgba(16, 17, 19, 0.35) 100%
  );
}

.hero__blade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--red) 22%, var(--red) 70%, transparent);
  opacity: 0.85;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(0px, 1vw, 8px);
  padding-right: clamp(0px, 1vw, 8px);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: clamp(12px, 2vw, 28px) clamp(0px, 1.5vw, 12px);
}

.hero__title {
  color: #fff;
}

.hero__rule {
  width: 74px;
  height: 3px;
  background: var(--red);
  margin: 0 0 26px;
}

.hero__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.68;
  max-width: 58ch;
  margin: 22px 0 30px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.phone {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.phone:hover {
  color: var(--red);
}

.phone__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  margin-top: 4px;
}

.phone--footer {
  font-size: 24px;
  margin-top: 4px;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.hero__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
}

.hero__halo {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(199, 200, 202, 0.22), rgba(199, 200, 202, 0) 68%);
  z-index: 1;
}

/* ---------- credentials ---------- */
.credentials {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-3);
}

.credentials__badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 0 36px;
}

.credentials__badge {
  width: auto;
  flex: 0 0 auto;
  opacity: 0.92;
}

.credentials__badge--mdaf {
  height: 84px;
}

.credentials__badge--ntl {
  height: 67px;
}

.credentials__badge--super {
  height: 51px;
}

.credentials__badge--aaj {
  height: 58px;
}

.credentials__stats {
  border-top: 1px solid var(--ink-3);
}

.credentials__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credentials__item {
  padding: 30px 26px 30px 0;
  border-right: 1px solid var(--ink-3);
}

.credentials__item + .credentials__item {
  padding-left: 26px;
}

.credentials__item:last-child {
  border-right: 0;
}

.credentials__stat {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
}

.credentials__desc {
  display: block;
  font-size: 14px;
  color: var(--silver);
  margin-top: 8px;
  line-height: 1.45;
}

/* ---------- sections ---------- */
.section {
  padding: 96px 0;
}

.section--paper {
  background: var(--paper-2);
}

.section__head {
  max-width: 62ch;
}

.section__rule {
  width: 74px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

.section__intro {
  margin-top: 18px;
  color: var(--grey);
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.76);
  max-width: 56ch;
}

.section__title--light {
  color: #fff;
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.about__lede {
  font-size: 18px;
  line-height: 1.72;
  margin-top: 22px;
  color: var(--body);
}

.about__list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about__item {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: var(--ink);
}

.about__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--red);
}

.about__cta {
  margin-top: 32px;
  margin-bottom: 0;
}

.about__media {
  position: relative;
  margin: 0;
}

.about__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  padding: 20px 24px;
  max-width: 74%;
}

/* ---------- practice ---------- */
.practice {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.practice__card {
  background: #fff;
  border: 1px solid #e4e4e6;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.practice__image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.practice__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 3px solid var(--red);
}

.practice__title {
  font-size: 21px;
  margin-bottom: 10px;
  min-height: 2.5em;
}

.practice__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0 0 20px;
}

.practice__more {
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
}

.practice__more:hover {
  color: var(--red-deep);
  text-decoration: underline;
}

/* ---------- results ---------- */
.results {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.results__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-results.jpg") center 30% / cover no-repeat;
  opacity: 0.28;
}

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.86), rgba(16, 17, 19, 0.94));
}

.results__inner {
  position: relative;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
}

.result-card__amt {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.result-card__currency {
  font-style: normal;
  color: var(--red);
}

.result-card__type {
  font-size: 16px;
  color: var(--silver);
  margin: 16px 0 26px;
  line-height: 1.5;
  flex: 1;
}

.result-card__more {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid var(--red);
  align-self: flex-start;
  padding-bottom: 3px;
}

.result-card__more:hover {
  color: var(--red);
}

/* ---------- why ---------- */
.why {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.why__media {
  margin: 0;
}

.why__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why__intro {
  margin-top: 18px;
  color: var(--grey);
  max-width: 52ch;
}

.why__items {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #dedee0;
}

.why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #dedee0;
  align-items: start;
}

.why__num {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  line-height: 1.3;
}

.why__heading {
  font-size: 21px;
  margin-bottom: 8px;
}

.why__text {
  font-size: 16px;
  color: var(--grey);
  margin: 0 0 12px;
}

.why__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
}

.why__link:hover {
  text-decoration: underline;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--ink-2);
  color: #fff;
  padding: 96px 0;
}

.testimonial__inner {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}

.testimonial__title {
  color: #fff;
}

.testimonial__quote {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-style: italic;
  line-height: 1.55;
  color: #fff;
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 64px;
  color: var(--red);
  line-height: 0.6;
  display: block;
  margin-bottom: 6px;
}

.testimonial__by {
  margin-top: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--silver);
}

.testimonial__stars {
  color: var(--red);
  letter-spacing: 5px;
  font-size: 17px;
  margin-top: 22px;
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact__text {
  margin-top: 18px;
  color: var(--grey);
}

.contact__list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.contact__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.contact__icon {
  width: 22px;
  height: 22px;
  fill: var(--red);
  margin-top: 3px;
}

.contact__label {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
}

.contact__value {
  font-size: 16px;
  color: var(--grey);
}

.contact__phone-link {
  color: var(--grey);
}

.contact-form {
  background: var(--paper-2);
  border-top: 4px solid var(--red);
  padding: 38px 38px 42px;
}

.contact-form__title {
  margin-bottom: 6px;
}

.contact-form__intro {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 26px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.field__input {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d5d5d8;
  border-radius: 4px;
  padding: 0 14px;
  width: 100%;
  height: 40px;
}

.field__input--textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
  line-height: 1.5;
}

.field__input--select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--grey) 50%),
    linear-gradient(135deg, var(--grey) 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 15px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field__input:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.14);
}

.contact-form__submit {
  width: 100%;
  margin-top: 24px;
}

.contact-form__fine {
  font-size: 13px;
  color: var(--grey);
  margin: 16px 0 0;
  line-height: 1.5;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 50px;
}

.footer__logo {
  height: 80px;
  width: auto;
  margin-bottom: 22px;
}

.footer__heading {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer__link:hover {
  color: var(--red);
}

.footer__text {
  font-size: 15.5px;
  line-height: 1.65;
}

.footer__bar {
  margin-top: 56px;
  border-top: 1px solid var(--ink-3);
  padding: 26px 0 30px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- progressive header scaling ---------- */
@media (max-width: 1400px) {
  .header__inner {
    gap: 24px;
  }

  .header__nav-list {
    gap: 18px;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__cta .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 1280px) {
  .header__inner {
    gap: 16px;
  }

  .header__nav-list {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 13px;
  }

  .header__cta .btn {
    font-size: 13px;
    padding: 11px 16px;
  }

  .btn {
    font-size: 18px;
    padding: 17px 28px;
  }
}

/* ---------- mobile nav (≤1200px) ---------- */
@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(16, 17, 19, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .header.is-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__inner {
    z-index: 2;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: block;
    margin-left: auto;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--paper);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 84px 28px 40px;
    background: #fff;
    border-left: 1px solid #e4e4e6;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-link {
    display: block;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #ededef;
  }

  .header__nav-link[aria-current="page"] {
    border-bottom-color: #ededef;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e4e4e6;
  }

  .header__nav-phone {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
  }

  .header__nav-phone:hover {
    color: var(--red);
  }

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

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

  .credentials__badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px 48px;
    padding: 34px 0 30px;
  }

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

  .credentials__item:nth-child(2n) {
    border-right: 0;
  }

  .credentials__item,
  .credentials__item + .credentials__item {
    padding-left: 0;
  }

  .credentials__item:nth-child(2n),
  .credentials__item:nth-child(2n) + .credentials__item {
    padding-left: 26px;
  }

  .credentials__item:nth-child(n + 3) {
    border-top: 1px solid var(--ink-3);
  }
}

@media (max-width: 980px) {
  :root {
    --pad: 28px;
  }

  .container {
    width: 100%;
  }

  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 16px 24px;
  }

  .about,
  .why,
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image,
  .why__image {
    height: 400px;
  }

  .section {
    padding: 70px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 28px) 0;
  }

  .hero__inner {
    height: auto;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: clamp(8px, 2vw, 16px) 0 clamp(20px, 4vw, 32px);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 360px;
    justify-content: center;
  }

  .hero__image {
    height: 430px;
    max-height: 55vh;
  }

  .hero__blade {
    display: none;
  }

  .hero__halo {
    width: 360px;
    height: 360px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .credentials__badges {
    gap: 26px 22px;
  }

  .credentials__badge--mdaf {
    height: 64px;
  }

  .credentials__badge--ntl {
    height: 52px;
  }

  .credentials__badge--super {
    height: 40px;
  }

  .credentials__badge--aaj {
    height: 45px;
  }

  .practice,
  .results__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px 32px;
  }

  .hero__actions {
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .testimonial {
    padding: 70px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero__content > * {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero__content > *:nth-child(2) {
  animation-delay: 0.06s;
}

.hero__content > *:nth-child(3) {
  animation-delay: 0.12s;
}

.hero__content > *:nth-child(4) {
  animation-delay: 0.18s;
}
