:root {
  --navy: #062a63;
  --navy-deep: #04193c;
  --blue: #0038a8;
  --blue-bright: #1a58d6;
  --yellow: #fcd116;
  --yellow-light: #ffe57a;
  --red: #ce1126;
  --paper: #f7f5ef;
  --white: #ffffff;
  --ink: #0d1f3c;
  --muted: #59687a;
  --line: rgba(6, 42, 99, 0.14);
  --shadow: 0 24px 70px rgba(6, 42, 99, 0.16);
  --tricolor: linear-gradient(90deg, var(--blue) 0 33.33%, var(--yellow) 33.33% 66.66%, var(--red) 66.66%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--blue);
  border-radius: 50%;
}

.brand__mark svg {
  width: 24px;
  height: 24px;
  fill: var(--yellow);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 148px 0 90px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 17% 12%, rgba(26, 88, 214, 0.5), transparent 32%),
    linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 58%, var(--blue) 100%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -260px;
  width: 650px;
  height: 650px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.02);
}

.hero__glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.hero__glow--one {
  top: 110px;
  right: 8%;
  width: 340px;
  height: 340px;
  background: rgba(252, 209, 22, 0.18);
  filter: blur(70px);
}

.hero__glow--two {
  bottom: -170px;
  left: 22%;
  width: 340px;
  height: 340px;
  background: rgba(206, 17, 38, 0.24);
  filter: blur(80px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-number {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  padding: 8px 13px 8px 9px;
  color: var(--yellow-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.eyebrow__flag {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
  flex: 0 0 auto;
  overflow: hidden;
  background: linear-gradient(var(--blue) 0 50%, var(--red) 50%);
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.eyebrow__flag::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--white);
}

.eyebrow__flag::after {
  position: absolute;
  top: 7px;
  left: 3px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__lead strong {
  color: var(--yellow-light);
  font-weight: 900;
}

.advantage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
}

.advantage-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 750;
}

.advantage-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--navy);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
}

.button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 60px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button > span:last-child {
  margin-left: 4px;
  font-size: 1.2rem;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  margin-top: 34px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 18px 38px rgba(252, 209, 22, 0.22);
}

.button--primary:hover {
  box-shadow: 0 22px 46px rgba(252, 209, 22, 0.32);
}

.button--dark {
  margin-top: 30px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 56, 168, 0.24);
}

.hero__portrait-wrap {
  position: relative;
  width: min(400px, 100%);
  margin-inline: auto;
}

.portrait-card {
  position: relative;
  z-index: 2;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 200px 200px 30px 30px;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(12px);
}

.portrait-card::before {
  position: absolute;
  top: -22px;
  right: -22px;
  bottom: 40px;
  left: 38px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(252, 209, 22, 0.42);
  border-radius: 200px 200px 34px 34px;
}

.portrait-card__frame {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: #e7e8e7;
  border-radius: 190px 190px 22px 22px;
}

.portrait-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-card__caption {
  display: flex;
  min-height: 76px;
  padding: 15px 18px;
  align-items: center;
  gap: 12px;
}

.portrait-card__caption strong,
.portrait-card__caption span {
  display: block;
}

.portrait-card__caption strong {
  font-size: 0.95rem;
}

.portrait-card__caption div > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
}

.status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background: #44d08a;
  border: 3px solid rgba(68, 208, 138, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(68, 208, 138, 0.11);
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 15px 17px;
  color: var(--navy);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note--start {
  right: -18px;
  bottom: 60px;
  min-width: 146px;
}

.floating-note--start span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.floating-note--start strong {
  margin-top: 2px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.floating-note--support {
  top: 46px;
  left: -34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.floating-note__check {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--navy);
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
}

.information {
  padding: 104px 0;
  background: var(--paper);
}

.information__inner {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.section-number {
  margin-bottom: 20px;
  color: var(--blue);
}

.section-number::before {
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.benefits h2,
.testimonials h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.information h2 {
  font-size: clamp(1.95rem, 3.1vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--navy-deep);
  border: 9px solid var(--white);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(6, 42, 99, 0.22);
}

.video-player__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-player::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 25, 60, 0.2) 0%, transparent 45%, rgba(4, 25, 60, 0.55) 100%);
  transition: opacity 220ms ease;
}

.video-player.is-started::after {
  opacity: 0;
}

.video-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 92px;
  height: 92px;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(4, 25, 60, 0.4);
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

.video-player__play::before {
  position: absolute;
  inset: -13px;
  content: "";
  border: 2px solid rgba(252, 209, 22, 0.55);
  border-radius: 50%;
  animation: pulse-ring 2.4s ease-out infinite;
}

.video-player__play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: currentColor;
}

.video-player__play:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-player.is-playing .video-player__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.video-caption {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.video-caption__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(206, 17, 38, 0.14);
}

.information__copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.information__copy h2 + p {
  margin-top: 24px;
}

.information__copy p + p {
  margin-top: 16px;
}

.benefits {
  padding: 100px 0 108px;
  background: #e9edf2;
}

.benefits__topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.benefits__sun {
  display: grid;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(0, 56, 168, 0.12);
}

.benefits__sun svg {
  width: 62px;
  height: 62px;
  fill: var(--yellow);
}

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

.benefit-card {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-radius: 26px;
  box-shadow: 0 20px 44px rgba(6, 42, 99, 0.08);
}

.benefit-card::after {
  position: absolute;
  right: -52px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(6, 42, 99, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(6, 42, 99, 0.025);
}

.benefit-card--yellow {
  background: var(--yellow);
}

.benefit-card--blue {
  color: var(--white);
  background: var(--blue);
}

.benefit-card--blue::after {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.035);
}

.benefit-card--white {
  background: var(--white);
}

.benefit-card__number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0.48;
}

.benefit-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  font-size: 1.75rem;
  font-weight: 900;
  place-items: center;
  border: 1px solid rgba(6, 42, 99, 0.16);
  border-radius: 50%;
}

.benefit-card--blue .benefit-card__icon {
  color: var(--navy);
  background: var(--yellow);
  border: 0;
}

.benefit-card--white .benefit-card__icon {
  color: var(--red);
  border-color: rgba(206, 17, 38, 0.3);
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 250px;
  margin-top: 9px;
  font-size: 0.92rem;
  font-weight: 650;
  opacity: 0.72;
}

.testimonials {
  position: relative;
  padding: 100px 0 108px;
  overflow: hidden;
  background: var(--paper);
}

.testimonials::before {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 460px;
  height: 460px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 56, 168, 0.09), transparent 68%);
  border-radius: 50%;
}

.testimonials__topline {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 44px;
}

.testimonials__lead {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(6, 42, 99, 0.1);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.testimonial-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  z-index: 2;
  content: "";
  background: var(--tricolor);
}

.testimonial-card:hover {
  box-shadow: 0 28px 66px rgba(6, 42, 99, 0.16);
  transform: translateY(-4px);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.final-cta {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.final-cta::before {
  position: absolute;
  top: -260px;
  right: -100px;
  width: 630px;
  height: 630px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(26, 88, 214, 0.5), transparent 66%);
  border-radius: 50%;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.final-cta__portrait {
  position: relative;
  width: min(400px, 100%);
  margin-inline: auto;
}

.final-cta__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--white);
  border: 10px solid rgba(255, 255, 255, 0.09);
  border-radius: 210px 210px 28px 28px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.final-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.final-cta__star {
  position: absolute;
  z-index: 3;
  display: grid;
  color: var(--navy);
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.final-cta__star--one {
  top: 24px;
  left: -22px;
  width: 66px;
  height: 66px;
  font-size: 1.45rem;
}

.final-cta__star--two {
  right: -14px;
  bottom: 48px;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 0.9rem;
  background: var(--red);
}

.section-number--light {
  color: var(--yellow-light);
}

.steps {
  display: grid;
  margin-top: 32px;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.steps__number {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 950;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
}

.site-footer {
  position: relative;
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.55);
  background: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--tricolor);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
}

@media (max-width: 1040px) {
  .hero__inner {
    gap: 44px;
  }

  .information__inner {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 44px;
  }

  .final-cta__inner {
    gap: 52px;
  }

  .floating-note--support {
    left: -18px;
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 128px;
  }

  .hero__inner,
  .information__inner,
  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero__copy,
  .information__copy,
  .final-cta__content {
    max-width: 680px;
  }

  .hero__portrait-wrap {
    margin-top: 8px;
  }

  .information__media {
    width: min(340px, 100%);
    margin-inline: auto;
  }

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

  .benefit-card {
    min-height: 0;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .container,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
    gap: 12px;
  }

  .brand__name {
    max-width: 130px;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__mark svg {
    width: 21px;
    height: 21px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.66rem;
    letter-spacing: 0.02em;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    padding: 108px 0 68px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.62rem;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .advantage-list {
    display: grid;
    gap: 11px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .button--primary {
    margin-top: 28px;
  }

  .portrait-card {
    border-radius: 170px 170px 26px 26px;
  }

  .portrait-card::before {
    top: -14px;
    right: -12px;
    left: 26px;
    border-radius: 170px 170px 28px 28px;
  }

  .portrait-card__frame {
    border-radius: 160px 160px 20px 20px;
  }

  .portrait-card__caption {
    min-height: 66px;
    padding: 12px 14px;
  }

  .portrait-card__caption strong {
    font-size: 0.82rem;
  }

  .portrait-card__caption div > span {
    font-size: 0.68rem;
  }

  .floating-note {
    padding: 12px 14px;
  }

  .floating-note--support {
    top: 16px;
    left: -10px;
  }

  .floating-note--start {
    right: -10px;
    bottom: 74px;
    min-width: 128px;
  }

  .floating-note--start strong {
    font-size: 1.35rem;
  }

  .information,
  .benefits,
  .testimonials,
  .final-cta {
    padding: 68px 0;
  }

  .information__inner {
    gap: 36px;
  }

  .information__copy p {
    font-size: 0.97rem;
  }

  .video-player {
    border-width: 7px;
    border-radius: 26px;
  }

  .video-player__play {
    width: 72px;
    height: 72px;
  }

  .video-player__play svg {
    width: 26px;
    height: 26px;
  }

  .video-caption {
    margin-top: 16px;
    font-size: 0.68rem;
  }

  .benefits__topline {
    margin-bottom: 28px;
  }

  .benefits__sun {
    display: none;
  }

  .benefit-card {
    padding: 24px;
    gap: 24px;
  }

  .benefit-card__icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  .benefit-card h3 {
    font-size: 1.4rem;
  }

  .testimonials__topline {
    margin-bottom: 26px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 7px;
    border-radius: 18px;
  }

  .testimonial-card img {
    border-radius: 12px;
  }

  .final-cta__photo {
    border-radius: 160px 160px 24px 24px;
  }

  .final-cta__star--one {
    top: 16px;
    left: -10px;
    width: 54px;
    height: 54px;
    font-size: 1.15rem;
  }

  .final-cta__star--two {
    right: -6px;
    bottom: 36px;
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .steps {
    margin-top: 26px;
  }

  .steps li {
    grid-template-columns: 38px 1fr;
    gap: 13px;
    min-height: 74px;
    font-size: 0.92rem;
  }

  .steps__number {
    width: 38px;
    height: 38px;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 5px;
  }
}

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

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