body.landing-page {
  padding: 0rem;
  align-items: center;
  display: flex;
  min-height: 100dvh;
}

.landing-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
  max-width: none;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 1rem;
  flex-grow: 1;
}

.hero-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  padding: 1rem 1rem 4rem;
  width: 100%;

  /* mobile-medium */
  @media (min-width: 400px) {
    padding: 2rem 1rem 4rem;
  }

  /* tablet */
  @media (min-width: 600px) {
    padding: 8rem 2.5rem 10rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 4rem;

  /* tablet */
  @media (min-width: 600px) {
    flex-direction: row;
  }
}

.hero-features {
  color: var(--color-text-subtle);
  line-height: 1.75rem;
  margin: 1.5rem auto 2.5rem;
  font-weight: 500;
  text-align: start;

  /* list-style: disc;
  list-style-position: inside; */

  li {
    line-height: 1.75;
    font-size: 1.125rem;

    /* tablet */
    @media (min-width: 600px) {
      font-size: 1.25rem;
    }
  }
}

.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;

  /* tablet */
  @media (min-width: 600px) {
    width: 100%;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-base);
  border: 1px solid var(--brand-base);
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 1rem;
  background-color: var(--bg-overlay);
  border-radius: 100px;
  transform: rotateZ(10deg) translateY(-19px);
}

.hero-tag {
  color: var(--brand-base);
  border: 2px solid var(--brand-base);
  padding: 0.25rem 1rem;
  border-radius: 40px;
  font-size: 0.875rem;
  width: fit-content;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Main Heading 2 */
.hero-title-2 {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-wrap: balance;
  text-align: start;

  /* mobile-medium */
  @media (min-width: 400px) {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  /* tablet */
  @media (min-width: 600px) {
    font-size: 3rem;
    line-height: 1;
  }
}

/* Main Heading */
.hero-title {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-wrap: balance;

  /* mobile-medium */
  @media (min-width: 400px) {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  /* tablet */
  @media (min-width: 600px) {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Tagline styling 2 */
.hero-tagline-2 {
  color: var(--color-text-subtle);
  line-height: 1.75rem;
  font-size: 1.25rem;
  margin: 1.5rem auto 2.5rem;
  font-weight: 500;
  text-wrap: balance;
  text-align: start;

  /* tablet */
  @media (min-width: 600px) {
    line-height: 2rem;
    font-size: 1.25rem;
  }
}

/* Tagline styling */
.hero-tagline {
  color: var(--color-text-subtle);
  line-height: 1.5rem;
  font-size: 1rem;
  margin: 1.5rem auto 2.5rem;
  font-weight: 500;
  text-wrap: balance;

  /* tablet */
  @media (min-width: 600px) {
    line-height: 2rem;
    font-size: 1.5rem;
  }
}

/* Main hero message */
.hero-message {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--bg-overlay);
  border-radius: 12px;
  font-weight: 500;
  text-wrap: balance;

  /* mobile-medium */
  @media (min-width: 400px) {
    margin: 2rem auto 3rem;
  }

  & p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;

    /* mobile-medium */
    @media (min-width: 400px) {
      font-size: 1.125rem;
      line-height: 1.7;
    }
  }
}

.five-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--yellow-star);

  svg {
    width: 1rem;
  }
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem auto;
  max-width: 400px;
  color: var(--brand-base);

  .timer-item {
    background-color: var(--bg-elevated);
    padding: 0.125rem 0.25rem;
    border-radius: var(--border-radius-sm);

    /* tablet */
    @media (min-width: 600px) {
      padding: 0.25rem 0.5rem;
    }
  }

  .timer-number {
    font-size: 1.75rem;
    font-weight: 700;

    /* tablet */
    @media (min-width: 600px) {
      font-size: 2rem;
    }
  }

  .timer-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-subtle);

    /* tablet */
    @media (min-width: 600px) {
      font-size: 1rem;
    }
  }
}

.landing-page-section {
  padding: 2.5rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 1200px;
  width: 100%;

  .section-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-text);
    text-align: center;
    text-wrap: balance;
  }

  .section-description {
    font-size: 1.125rem;
    color: var(--color-text-subtle);
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 650px;
    text-align: center;
    font-weight: 500;
    text-wrap: balance;
  }
}

.testimonial {
  border: 0;
  padding: 3.5rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;

  @media (min-width: 600px) {
    padding: 3.5rem 2rem;
  }

  .testimonial-content {
    flex-grow: 1;
  }

  p:first-child {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    flex-grow: 1;
  }

  p:nth-child(2) {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    font-weight: 500;
    margin-top: 1rem;
  }

  .quote-icon {
    color: var(--brand-base);
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

/* Value propositions section */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
  position: relative;
}

@media (max-width: 768px) {
  .value-props {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.value-prop {
  display: grid;
  grid-template: "icon title" "description description" / 2rem auto;
  column-gap: 0.5rem;
  row-gap: 1.5rem;
  align-items: center;

  .value-prop-icon {
    grid-area: icon;
    color: var(--color-text-reversed);
    background-color: var(--color-primary);
    border-radius: var(--border-radius-xs);
    padding: 0.4rem;
    width: 2rem;
    height: 2rem;
  }

  h3 {
    grid-area: title;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 700;
  }

  p {
    grid-area: description;
    color: var(--color-text-subtle);
    font-size: 1rem;
  }
}

.how-to-use-card {
  .how-to-use-card--number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius-full);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-reversed);
    background-color: var(--color-primary);
  }
}

.landing-page-banner {
  background-color: var(--color-bg-overlay);
  color: var(--color-text);
  width: 100%;
  padding: 4rem 0rem;

  .banner-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    padding: 2rem 2.5rem;
    margin: 0 auto;

    /* tablet */
    @media (min-width: 600px) {
      flex-direction: row;
      gap: 2rem;
      justify-content: center;
      align-items: center;
    }

    h2 {
      font-size: 2.25rem;
      line-height: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .banner-text {
      font-size: 1.125rem;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .banner-cta-button {
      display: flex;
      flex-direction: row;
      align-items: center;
      color: var(--color-text);
      border-radius: var(--border-radius-sm);
      padding: 1rem 1.5rem;
      flex-shrink: 0;
      font-size: 1rem;
      gap: 0.5rem;
      font-weight: 600;
      width: fit-content;
      transition: var(--transition);
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px var(--bg-elevated);
        background: linear-gradient(
          135deg,
          var(--bg-elevated) 0%,
          var(--bg-elevated) 100%
        );
      }
    }
  }
}

/* CTA Section */

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;

  p {
    font-size: 0.875rem;
    font-weight: 500;
  }
}

.hero-cta-button {
  text-decoration: none;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--brand-base) 0%,
    var(--brand-strong) 100%
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(91, 69, 224, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  &:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 20px var(--brand-base);
    background: linear-gradient(
      135deg,
      var(--brand-base) 0%,
      var(--brand-base) 100%
    );
  }

  &:active {
    transform: translateY(0);
  }

  &::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
  }

  &:hover::after {
    animation: shine 1.5s ease-out;
  }
}

/* Section CTA Component */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1rem;
}

.section-cta--compact {
  padding: 2rem 1rem;
}

.section-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
}

.section-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.section-cta-subtitle {
  font-size: 1rem;
  color: var(--color-text-subtle);
  margin: 0;
  line-height: 1.6;
}

.section-cta-button {
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
