@import url(../css/fonts.css);

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

:root {
  /* Colors */
  --color-primary: rgba(194, 0, 0, 1);
  --color-bg: rgba(237, 239, 241, 1);
  --color-text: rgba(42, 42, 42, 1);

  /* Typography */
  --font-base: "Pragmatica", sans-serif;
  --font-size-base: 18px;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --line-height-base: 1;

  /* Borders & Radius */
  --border-color: rgba(42, 42, 42, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

ul,
ol {
  list-style: none;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.container {
  width: 100%;
  max-width: 1860px;
  padding: 0 20px;
  margin: 0 auto;
}

.link {
  color: rgb(219, 46, 46);
}

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

.main__btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 800px;
  font-weight: 800;
}

.main__btn:hover {
  opacity: 0.8;
}

.section {
  padding-bottom: 100px;
}

.section__title {
  font-family: "PragmaticaExtended";
  font-weight: 900;
  font-size: 36px;
  text-align: center;
}

.section__subtitle {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* header */
.header {
  padding: 20px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-icon {
  width: auto;
  height: 45px;
}

.header__logo-icon:hover {
  opacity: 0.8;
}

/* main */
.main {
  padding: 100px 0;
}

.main__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* hero */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero__title {
  font-family: "PragmaticaExtended";
  font-weight: 900;
  font-size: 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 126px;
  font-weight: 500;
}

/* video */
.video__container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video__wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: #000000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video__live {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 90px;
  z-index: 2;
}

.video__notice {
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: "PragmaticaExtended", sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  padding: 5px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.video__check {
  flex-shrink: 0;
}

.video__check img {
  width: 24px;
  height: 21px;
  object-fit: contain;
}

/* testimonials */
.testimonials__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.testimonials__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonials__video {
  background-color: #000;
  position: relative;
  aspect-ratio: 16 / 9;
}

.testimonials__live {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.testimonials__name {
  font-weight: 500;
  font-size: 24px;
  padding: 10px 0px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* results */
.results__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.results__slider {
  width: 100%;
}

.results__card {
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 192px;
  font-weight: 500;
}

.results__name {
  font-family: "PragmaticaExtended", sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.results__stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.results__invested,
.results__profit {
  display: flex;
  align-items: center;
}

.results__invested-title,
.results__profit-title {
  min-width: 180px;
  color: var(--color-primary);
  font-weight: 800;
}

.results__description {
  font-style: italic;
}

.results__footnote {
  text-align: center;
}

.results__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.results__brands img {
  max-height: 69px;
  object-fit: contain;
}

/* faq */
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  border: 1px solid var(--border-color);
}

.faq__question {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  padding: 20px;
  font-weight: 800;
  position: relative;
  cursor: pointer;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  transition: transform 0.2s ease;
}

.faq__item.active .faq__question::after {
  content: "–";
}

.faq__answer {
  display: none;
  padding: 0px 20px 20px;
}

.faq__item.active .faq__answer {
  display: block;
}

/* accomplishments */
.accomplishments__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.accomplishments__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
}

.accomplishments__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.accomplishments__tag {
  border: 1px solid var(--border-color);
  border-radius: 800px;
  padding: 10px 30px;
  white-space: nowrap;
}

.accomplishments__tag:hover {
  opacity: 0.7;
}

.accomplishments__brands {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.accomplishments__brands img {
  height: 37px;
  object-fit: contain;
}

.accomplishments__brand:hover {
  opacity: 0.7;
}

/* cta-section */
.cta-section__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-section .section__subtitle {
  font-weight: 800;
}

.cta-section__text {
  text-align: center;
  font-weight: 500;
}

.cta-section__banner {
  font-family: "PragmaticaExtended", sans-serif;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  padding: 5px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* quiz */
.quiz__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  border: 1px solid var(--border-color);
  max-width: 650px;
  min-height: 155px;
  margin: 0 auto;
  padding: 20px;
}

.quiz {
  scroll-margin-top: 120px;
}

.quiz-card {
  width: 100%;
  text-align: center;
  font-weight: 800;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.quiz-options {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
}

.quiz-card.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* comments */

.comments__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comments__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comments__sort {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.comments__form {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.comments__input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0px;
}

.comments__input {
  width: 100%;
  border: none;
  font-weight: 500;
}

.comments__input::placeholder {
  color: rgba(42, 42, 42, 0.3);
  text-transform: uppercase;
}

.comments__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.comments__emoji {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments__emoji img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.comments__send {
  padding: 10px 15px;
}

.comment__avatar {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 25px;
  border-radius: 50%;
  padding: 7px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comment__avatar:hover {
  opacity: 0.7;
}

.comments__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comment {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.comment__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comment__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment__name {
  font-weight: 800;
}

.comment__likes {
  font-size: 14px;
  font-weight: 500;
}

.comment__text {
  font-weight: 500;
}

.comments__cta {
  display: inline-flex;
  align-self: center;
}

/* footer */
.footer {
  background-color: rgba(52, 52, 52, 1);
  color: #fff;
  padding: 50px 0px;
  font-weight: 500;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.footer__logo {
  height: 32px;
  flex-shrink: 0;
}

.footer__logo-icon:hover {
  opacity: 0.7;
}

.footer__title {
  font-family: "PragmaticaExtended";
  font-weight: 900;
  font-size: 32px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer__links,
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__links a,
.footer__meta a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__meta a:hover {
  opacity: 0.7;
}

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

  .section {
    padding-bottom: 50px;
  }

  .section__subtitle {
    font-size: 16px;
  }

  .main {
    padding: 75px 0px;
  }

  .main__content {
    gap: 75px;
  }

  .hero__title {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero__grid {
    gap: 42px;
  }

  .video__notice {
    font-size: 20px;
  }

  .testimonials__name {
    font-size: 18px;
  }

  .results__name {
    font-size: 18px;
  }

  .cta-section__banner {
    font-size: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .footer__bottom {
    row-gap: 20px;
  }
  
  .lander-form-field .lander-submit {
    font-size: 16px !important;
  }
  .lander-form-field .lander-submit:hover {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0px 10px;
  }

  .section {
    padding-bottom: 30px;
  }

  .section__title {
    font-size: 24px;
  }

  .main {
    padding: 50px 0px;
  }

  .main__content {
    gap: 50px;
  }

  .header__logo-icon {
    max-width: 180px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video__notice {
    font-size: 16px;
    text-align: left;
  }

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

  .testimonials__name {
    font-size: 16px;
  }

  .results__card {
    min-height: 142px;
    gap: 10px;
    padding: 15px;
  }

  .results__name,
  .results__footnote {
    font-size: 16px;
  }

  .results__invested,
  .results__profit {
    font-size: 14px;
  }

  .results__invested-title,
  .results__profit-title {
    min-width: 133px;
  }

  .results__brands {
    flex-direction: column;
    gap: 25px;
  }

  .results__brands img {
    max-height: 60px;
  }

  .faq__question {
    padding-right: 39px;
  }

  .accomplishments__brands {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__banner {
    margin: 0;
    font-size: 16px;
    text-align: left;
  }

  .quiz__wrapper {
    min-height: 199px;
  }

  .quiz-question {
    text-align: left;
    font-size: 18px;
    min-height: 110px;
  }

  .comments__title {
    text-align: left;
  }

  .comments__form,
  .comment {
    gap: 15px;
  }

  .comments__input-wrapper {
    gap: 30px;
  }

  .footer__top {
    flex-direction: column;
    gap: 30px;
  }

  .footer__title {
    font-size: 24px;
  }

  .footer__content {
    gap: 30px;
  }
}
