:root {
  --primary: #0c1721;
  --secondary: #d1364f;
  --text: #ffffff;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--primary);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.narrow {
  max-width: 930px;
}

.topbar,
.dark,
footer {
  background: var(--primary);
}

.topbar {
  padding: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.avatar {
  width: 80px;
  height: 80px;
  margin: 10px 0;
  border-radius: 50%;
  object-fit: cover;
}

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

h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.2;
}

h1 span,
.mantra span {
  color: var(--secondary);
}

h2 {
  margin-bottom: 40px;
  color: inherit;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

h3 {
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.intro-section {
  padding: 40px 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: start;
}

.intro-copy {
  padding: 10px;
}

.mantra {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
}

.description {
  max-width: none;
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 3px;
  background: var(--secondary);
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-whats {
  min-height: 42px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
}

.hero-whats svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.centered {
  display: flex;
  width: fit-content;
  margin: 20px auto 0;
}

.rose {
  background: var(--secondary);
  color: #fff;
}

.white {
  background: #fff;
  color: var(--primary);
}

.testimonials {
  padding: 40px 0 50px;
}

.testimonials h2 {
  color: var(--secondary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

.video-grid article {
  min-width: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  background: #000;
}

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

.video-grid p {
  margin: 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.45;
}

.testimonials h3 {
  color: var(--secondary);
}

.fit {
  padding: 40px 0;
}

.fit h2,
.fit-text {
  color: #fff;
}

.fit-text p {
  margin: 0 0 1em;
}

.help {
  padding: 40px 0 20px;
}

.help h2 {
  color: var(--primary);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 42px;
}

.help-grid article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
}

.icon {
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.help-grid h3 {
  margin: 0 0 6px;
  color: var(--primary);
  text-align: left;
}

.help-grid p {
  margin: 0;
  color: var(--primary);
  line-height: 1.4;
}

.about {
  padding: 50px 0 40px;
}

.about-inner {
  display: grid;
  grid-template-columns: 30.029% 69.971%;
  gap: 28px;
  align-items: center;
}

.about img {
  width: 300px;
}

.about h2,
.about p {
  color: #fff;
  text-align: left;
}

.dark-button {
  background: var(--primary);
  color: var(--secondary);
}

.hidden-original {
  display: none;
}

footer {
  padding: 22px 0;
  color: #fff;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 1024px) {
  .container {
    width: min(1024px, calc(100% - 36px));
  }

  .hide-on-tablet {
    display: none;
  }

}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .topbar-inner,
  .split,
  .help-grid,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    display: grid;
    gap: 0;
  }

  .avatar {
    width: 80px;
    height: 80px;
    margin-inline: auto;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 1.7rem;
  }

  .mantra {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.5;
    text-align: left;
  }

  .description {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;
  }

  .intro-section {
    padding: 0 0 40px;
  }

  .hero-whats {
    min-height: 42px;
    padding: 12px 24px;
    font-size: 15px;
  }

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

  .help-grid article {
    display: block;
    text-align: center;
  }

  .help-grid h3 {
    margin-top: 10px;
    text-align: center;
  }

  .hide-on-tablet {
    display: block;
  }

}
