@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-book.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-black.ttf") format("truetype");
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik-regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik-bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

:root {
  --color-navy: #000e35;
  --color-dark-navy: #0c2749;
  --color-red: #ff1200;
  --color-red-hover: #dc1c2e;
  --color-blue: #0043ff;
  --color-body: #0f0e0e;
  --color-muted: #404041;
  --color-soft: #fbfaf7;
  --color-border: #e8e8e8;
  --font-body: "Rubik", Arial, sans-serif;
  --font-heading: "DM Sans", Arial, sans-serif;
  --font-brand: "Gotham", Arial, sans-serif;
  --container: 1000px;
  --wide-container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-body);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

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

.section-navy {
  background: var(--color-navy);
  color: #fff;
}

.section-soft {
  background: var(--color-soft);
}

.site-logo {
  width: 280px;
  height: auto;
}

.site-logo--top {
  margin-inline: auto;
}

.logo-link {
  display: inline-block;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--color-red);
  border-radius: 3px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--color-red-hover);
  background: var(--color-red-hover);
}

.button:focus-visible,
.accordion__trigger:focus-visible,
.social-nav a:focus-visible {
  outline: 3px solid rgba(255, 18, 0, 0.45);
  outline-offset: 3px;
}

.section-title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.section-title--red {
  color: var(--color-red);
}

.hero {
  margin-top: -3px;
  padding: 48px 10px 80px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  margin: 64px 0 10px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}

.hero__subtitle {
  display: inline-block;
  margin: 0 0 46px;
  padding: 0 8px 2px;
  background: var(--color-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.video-frame {
  overflow: hidden;
  width: 100%;
  background: #fff;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.video-frame--hero {
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
}

.hero__guide {
  margin: 55px 0 65px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.hero__rule {
  width: 50%;
  max-width: 500px;
  margin: 0 0 28px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.benefits {
  padding: 60px 0 58px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 28px;
}

.benefit-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.benefit-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.benefit-card__body {
  padding-top: 13px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--color-blue);
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0 0 20px;
  color: #000;
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.benefit-card a {
  color: var(--color-blue);
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.benefit-card a:hover,
.benefit-card a:focus-visible {
  color: var(--color-red);
}

.join-band {
  padding: 75px 0;
  text-align: center;
}

.join-band h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

.stats {
  padding: 60px 0 20px;
}

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

.stat-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 135px;
  align-items: center;
  column-gap: 18px;
  padding: 22px 25px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: #111;
  text-decoration: none;
}

.stat-card__icon {
  grid-row: span 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #fdfbfb;
}

.stat-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.stat-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.stat-card__label {
  display: block;
  max-width: 170px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.testimonial {
  padding: 0 0 34px;
  background: #fff;
  text-align: center;
}

.section-rule {
  width: 50%;
  max-width: 593px;
  margin: 0 auto 28px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.testimonial .section-title {
  font-size: 36px;
}

.testimonial__headline {
  margin: 18px auto 22px;
  color: var(--color-blue);
  font-family: var(--font-brand);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
}

.video-frame--testimonial {
  width: min(100%, 1050px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.faq {
  padding: 0 0 60px;
  text-align: center;
}

.income-title {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-family: var(--font-brand);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.faq .button {
  margin-bottom: 105px;
}

.faq__title {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1;
}

.faq__intro {
  width: min(100%, 900px);
  margin: 0 auto 32px;
  color: #000;
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

.faq__intro p {
  margin: 0 0 18px;
}

.faq__intro strong {
  font-weight: 700;
}

.accordion {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: left;
}

.accordion__item + .accordion__item {
  margin-top: 11px;
}

.accordion__item h3 {
  margin: 0;
}

.accordion__trigger {
  position: relative;
  width: 100%;
  min-height: 44px;
  padding: 12px 48px 12px 19px;
  border: 0;
  border-radius: 3px;
  background: var(--color-dark-navy);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.accordion__trigger::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--color-dark-navy);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "-";
}

.accordion__panel {
  padding: 18px 20px 20px;
  border: 1px solid #d9dee7;
  border-top: 0;
  background: #fff;
  color: #000;
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.accordion__panel p {
  margin: 0;
}

.button--info {
  margin-top: 60px;
}

.form-section {
  padding: 0 0 70px;
  text-align: center;
}

.anchor-target {
  display: block;
  position: relative;
  top: -20px;
  visibility: hidden;
}

.form-section__title {
  margin: 0 auto 18px;
  color: var(--color-red);
  font-family: var(--font-brand);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}

.form-section__subtitle {
  margin: 0 auto 32px;
  color: var(--color-dark-navy);
  font-family: var(--font-brand);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

.hubspot-form {
  width: min(100%, 1000px);
  min-height: 980px;
  margin-inline: auto;
  text-align: left;
}

.hubspot-form .hs-form-frame {
  width: 100%;
}

.site-footer {
  padding: 25px 0 36px;
  text-align: center;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-logo--footer {
  width: 325px;
  margin-bottom: 28px;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
}

.social-nav a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.social-nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  margin: 0 0 34px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-links a {
  color: var(--color-red);
  text-decoration: none;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.version-do-link {
  color: #42c66f;
  font-weight: 900;
  text-decoration: none;
}

.version-do-link:hover,
.version-do-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .wide-container {
    width: min(100% - 40px, var(--wide-container));
  }

  .benefits-grid {
    gap: 30px;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-card {
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    padding: 18px 14px;
  }

  .stat-card__icon {
    width: 48px;
    height: 48px;
  }

  .stat-card__icon img {
    width: 34px;
    height: 34px;
  }

  .stat-card__value {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-inline: 20px;
  }

  .benefits-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .benefit-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .stat-card {
    grid-template-columns: 70px 1fr;
    max-width: 420px;
    margin-inline: auto;
    padding: 22px 32px;
  }

  .stat-card__value {
    font-size: 38px;
  }

  .form-section__title {
    max-width: 850px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.55;
  }

  .container,
  .wide-container {
    width: min(100% - 40px, 100%);
  }

  .hero {
    padding: 50px 0 80px;
  }

  .site-logo--top {
    width: 280px;
  }

  .hero h1 {
    width: min(100%, 335px);
    margin: 44px 0 15px;
    font-size: 30px;
    line-height: 1.16;
  }

  .hero__subtitle {
    max-width: 260px;
    margin-bottom: 56px;
    font-size: 24px;
    line-height: 1.2;
  }

  .video-frame--hero {
    border-radius: 7px;
  }

  .hero__guide {
    max-width: 335px;
    margin: 36px auto 40px;
    font-size: 28px;
    line-height: 1.35;
  }

  .hero__rule {
    display: block;
    width: 50%;
    margin-bottom: 28px;
  }

  .benefits {
    padding: 62px 0 44px;
  }

  .section-title {
    font-size: 31px;
    line-height: 1.03;
  }

  .benefits-grid {
    gap: 34px;
    margin-top: 22px;
  }

  .benefit-card {
    width: min(100%, 335px);
    padding: 17px;
  }

  .benefit-card img {
    aspect-ratio: 1.5 / 1;
  }

  .benefit-card__body {
    padding-top: 10px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .benefit-card p,
  .benefit-card a {
    font-size: 16px;
    line-height: 1.75;
  }

  .join-band {
    padding: 105px 0;
  }

  .join-band h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .stats {
    padding: 60px 0 48px;
  }

  .stats-grid {
    gap: 17px;
  }

  .stat-card {
    display: flex;
    min-height: 107px;
    max-width: 335px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 12px 18px;
  }

  .stat-card__icon {
    width: 48px;
    height: 48px;
  }

  .stat-card__value {
    font-size: 14px;
    line-height: 1.1;
  }

  .stat-card__label {
    max-width: 150px;
    font-size: 10px;
  }

  .section-rule {
    width: 86%;
    margin-top: 28px;
    margin-bottom: 18px;
  }

  .testimonial {
    padding-bottom: 12px;
  }

  .testimonial .section-title {
    font-size: 24px;
  }

  .testimonial__headline {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.1;
  }

  .income-title {
    max-width: 330px;
    margin: 0 auto 9px;
    font-size: 23px;
    line-height: 1.15;
  }

  .faq {
    padding-bottom: 48px;
  }

  .faq .button {
    margin-bottom: 74px;
  }

  .faq__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .faq__intro {
    max-width: 335px;
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.45;
  }

  .accordion {
    max-width: 335px;
  }

  .accordion__item + .accordion__item {
    margin-top: 8px;
  }

  .accordion__trigger {
    min-height: 43px;
    padding: 10px 38px 10px 13px;
    font-size: 12px;
    line-height: 1.25;
  }

  .accordion__trigger::after {
    right: 11px;
    width: 16px;
    height: 16px;
    font-size: 12px;
  }

  .accordion__panel {
    padding: 13px 14px;
    font-size: 12px;
  }

  .button--info {
    margin-top: 38px;
  }

  .form-section {
    padding-bottom: 64px;
  }

  .form-section__title {
    max-width: 330px;
    font-size: 24px;
    line-height: 1.1;
  }

  .form-section__subtitle {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.15;
  }

  .hubspot-form {
    min-height: 1760px;
  }

  .site-footer {
    padding: 25px 0 32px;
  }

  .site-logo--footer {
    width: 215px;
    margin-bottom: 10px;
  }

  .social-nav {
    gap: 4px;
    margin-bottom: 28px;
  }

  .social-nav a {
    width: 30px;
    height: 30px;
  }

  .social-nav svg {
    width: 15px;
    height: 15px;
  }

  .legal-links {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
    font-size: 12px;
  }

  .legal-links span {
    display: none;
  }

  .copyright {
    font-size: 9px;
  }
}
