/* Base styles */
* {
  margin: auto;
  padding: 0;
  box-sizing: border-box;
}

.challenge-content  {
  margin: 0;
}

/*Animation*/

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.94) translateY(40px);
  filter: blur(2px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease;
  will-change: transform, opacity, filter;
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/*------------------------------------------------------*/

body {
  font-family: SF Pro Text, -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1.5;
  color: #1c1c1c;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* Hero Section */
.header {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 20px 0px;
  flex-direction: row;
}

.logo-container {
  margin: 0px;
}



.brand-name {
  color: #111;
  font-family: "SF Pro Text", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.24px;
  margin: 0px;
}

.content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1090px;
  text-align: center;
  padding: 120px 0;
}

.main-heading {
  font-family: "SF Pro Display", sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2.24px;
}

.heading-primary {
  color: #1c1c1c;
}

.heading-secondary {
  color: rgba(28, 28, 28, 0.4);
}

.description-container {
  max-width: 874px;
  font-family: "SF Pro Text", sans-serif;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.24px;
}

.description-primary {
  color: rgba(28, 28, 28, 0.7);
  margin: 0;
}

.description-secondary {
  color: #1c1c1c;
  margin: 0;
}

.download-button {
  display: flex;
  padding: 16px 40px 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  border: none;
  box-shadow:
    0px 4px 20px rgba(236, 200, 217, 0.12),
    0px 4px 8px rgba(235, 236, 200, 0.16),
    0px 0px 24px rgba(165, 203, 238, 0.4),
    0px 4px 50px rgba(238, 165, 182, 0.45);
  cursor: pointer;
  background-color: #1c1c1c;
}

.download-button-white {
  display: flex;
  padding: 16px 40px 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  border: none;
  box-shadow:
    0px 4px 20px rgba(236, 200, 217, 0.12),
    0px 4px 8px rgba(235, 236, 200, 0.16),
    0px 0px 24px rgba(165, 203, 238, 0.4),
    0px 4px 50px rgba(238, 165, 182, 0.45);
  cursor: pointer;
  background-color: #ffffff;
}

.button-text-black {
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 100%;
}

.button-text {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 100%;
}

.award-image {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .landing-container {
    max-width: 991px;
    padding: 60px 40px;
  }

  .main-heading {
    font-size: 72px;
  }

  .description-container {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .landing-container {
    max-width: 640px;
    padding: 40px 20px;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .brand-name {
    font-size: 22px;
  }

  .main-heading {
    font-size: 48px;
  }

  .description-container {
    font-size: 18px;
  }

  .download-button {
    width: 100%;
  }
}


/* Challenges Section */
.challenges {
  background-color: #fff;
  padding: 80px;
  max-width: 1200px;
}

.section-title {
  color: #000;
  font-size: 48px;
  font-family: SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: -2.24px;
}

.challenges-grid {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}

.challenge-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 240px;
  padding: 24px;
  border-radius: 24px;
  margin: 0;
}

.challenges-column {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}
.challenge-card.modern-world {
  background-color: rgba(165, 203, 238, 0.12);
}

.challenge-card.mindfulness {
  background-color: rgba(236, 213, 200, 0.12);
}

.challenge-card.self-help {
  background-color: rgba(238, 165, 182, 0.12);
  margin-top: 20px;
}

.challenge-card.rest {
  background-color: rgba(247, 245, 255, 1);
}

.challenge-title {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.24px;
  margin-top: 20px;
}

.challenge-description {
  color: #929497;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.32px;
  margin-top: 8px;
}

/* Features Section */
.features {
  background-color: #000;
  padding: 75px 80px;
  color: #fff;
}

.features-header {
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.features-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -2.24px;
  font-family: SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif;
}

.features-subtitle {
  color: #B2B2B2;
  font-size: 18px;
  margin-top: 20px;
  line-height: 120%;
}

.features-grid {
  margin-top: 120px;
}

.feature-card {
  display: flex;
  gap: 21px;
  margin-top: 120px;
  max-width: 1200px;
}

.feature-card:first-child {
  margin-top: 0;
}

.feature-content {
  flex: 1;
  padding: 82px 82px 82px 0px;
}

.feature-content-2 {
  flex: 1;
  padding: 82px 0px 82px 82px;
}

.feature-tag-1 {
  color: #EBECC8;
  font-size: 16px;
}

.feature-tag-2 {
  color: #DBEEA5;
  font-size: 16px;
}

.feature-tag-3 {
  color: #ECC8D9;
  font-size: 16px;
}

.feature-title {
  line-height: 110%;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.24px;
  margin-top: 20px;
}

.feature-description {
  color: #B2B2B2;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.24px;
  margin-top: 20px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  flex-direction: row;
}

.tag {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 18px;
  border: 1px solid;
  margin: 0;
}

.feature-card.mindfulness .tag {
  color: rgba(235, 236, 200, 1);
  background-color: rgba(235, 236, 200, 0.08);
  border-color: rgba(235, 236, 200, 0.4);
}

.feature-card.diagnostics .tag {
  color: rgba(219, 238, 165, 1);
  background-color: rgba(219, 238, 165, 0.08);
  border-color: rgba(219, 238, 165, 0.4);
}

.feature-card.reflection .tag {
  color: rgba(236, 200, 217, 1);
  background-color: rgba(236, 200, 217, 0.08);
  border-color: rgba(236, 200, 217, 0.4);
}

.feature-image {
  border-radius: 36px;
  background-color: rgba(21, 21, 21, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 80px 0px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 590px;
}

.features-footer {
  margin-top: 140px;
  text-align: center;
}

.features-footer-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2.24px;
  line-height: 48px;
  font-family: SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif;
}

.features-footer-image {
  margin-top: 60px;
  width: 100%;
}

@media (max-width: 640px) {
  .feature-card {
    display: flex;
    gap: 21px;
    margin-top: 120px;
    max-width: 1200px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
}


/*Все инструменты*/

.features-section {
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  padding: 200px 80px 80px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

.features-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

.features-heading {
  color: rgba(255, 255, 255, 1);
  font-size: 48px;
  font-family:
    SF Pro Display,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -2.24px;
  text-align: center;
  align-self: start;
}

.features-grid {
  margin-top: 60px;
  width: 100%;
}

.grid-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  justify-content: start;
  flex-wrap: wrap;
}

.grid-row:not(:first-child) {
  margin-top: 20px;
}

.feature-image_tools {
  object-fit: contain;
  object-position: center;
  margin-top: auto;
  margin-bottom: auto;
  flex-grow: 1;
  flex-shrink: 1;
}

.feature-image-large {
  width: 284px;
}

.image-group {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 10px;
  justify-content: start;
}

.feature-image-medium {
  width: 220px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.feature-image-standard {
  width: 284px;
}

.feature-image-wide {
  width: 379px;
}

.vertical-image-group {
  align-self: stretch;
  display: flex;
  flex-grow: 1;
  width: 284px;
  flex-direction: column;
}

.feature-image-wide-short {
  width: 100%;
  max-width: 100%;
}

.feature-image-wide-extra {
  width: 100%;
  margin-top: 15px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .features-section {
    padding: 100px 20px;
  }

  .features-container {
    max-width: 100%;
  }

  .features-heading {
    max-width: 100%;
    font-size: 40px;
    line-height: 45px;
  }

  .features-grid {
    max-width: 100%;
    margin-top: 60px;
  }

  .grid-row {
    max-width: 100%;
  }

  .image-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }

  .feature-image-wide {
    max-width: 100%;
  }

  .vertical-image-group {
    max-width: 100%;
  }
}

/* Share Section */
.share {
  background-color: #000;
  padding: 80px;
}

.share-content {
  background: linear-gradient(90deg, rgba(21, 21, 21, 1) 0%, rgba(15, 15, 15, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  max-width: 1200px;
}

.share-text {
  flex: 1;
  min-width: 240px;
  margin: 0;
}

.share-title {
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -3.24px;
}

.share-description {
  color: #717171;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -0.64px;
  margin-top: 40px;
}

.share-image {
  flex: 1;
  min-width: 240px;
  max-width: 526px;
}

/* Team Section */
.team {
  background-color: #000;
  padding: 80px;
  color: #fff;
}

.team-title {
  font-size: 48px;
  font-family: SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -2.24px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
}

.team-member {
  width: 300px;
  margin: 0;
}

.member-photo {
  background-color: rgba(18, 18, 18, 1);
  border-radius: 24px;
  width: 300px;
  height: 300px;
}

.member-info {
  margin-top: 8px;
}

.member-name {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.member-role {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-top: 4px;
}

/* Testimonials Section */
.testimonials {
  background-color: #000;
  padding: 80px;
  color: #fff;
}

.testimonials-title {
  color: #fff;
  font-size: 64px;
  font-family:
    SF Pro Display,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -2.24px;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  margin-top: 80px;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
}

.testimonials-column {
  flex: 1;
  min-width: 240px;
  margin: 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  margin-top: 20px;
}

.testimonial-card:first-child {
  margin-top: 0;
}

.rating {
  display: flex;
  gap: 4px;
}

.star {
  width: 24px;
  height: 24px;
  margin: 0;
}

.testimonial-content {
  margin-top: 20px;
}

.user-name {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.testimonial-text {
  color: #B3B3B3;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.32px;
  margin-top: 12px;
}

.testimonial-text span {
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #000;
  background-repeat: no-repeat, repeat;
  background-position: center;
  background-size: cover;
}

.footer-logo {
  width: 100%;
  height: 100%;
  margin-bottom: -140px;
  text-align: center;
  /*box-shadow: 0px 6.24px 390px 0px rgba(238, 165, 182, 0.16),
    0px 0px 109.2px 0px rgba(165, 203, 238, 1),
    0px 6.24px 390px 0px rgba(235, 236, 200, 0.24),
    0px 6.24px 312px 0px rgba(28, 111, 255, 1);*/
}

.footer-content {
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(80px);
  padding: 65px 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #000000, rgba(255, 255, 255, 0.16), #000000);
}

.footer-cta {
  display: flex;
  gap: 40px;
  max-width: 793px;
  text-align: center;
  flex-direction: column;
}

.footer-title {
  color: #fff;
  font-size: 64px;
  font-family:
    SF Pro Display,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -2.24px;
}

.footer-links {
  display: flex;
  margin-top: 116px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-link {
  color: #B3B3B3;
  font-family:
    Inter,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 14px;
  text-decoration: none;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero,
  .challenges,
  .features,
  .share,
  .team,
  .testimonials {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 45px;
  }

  .section-title,
  .features-title,
  .features-footer-title,
  .team-title {
    font-size: 40px;
    line-height: 45px;
  }

  .share-title {
    font-size: 40px;
    line-height: 40px;
  }

  .share-description {
    color: #717171;
    font-size: 20px;
    line-height: 110%;
    line-height: 120%;
    letter-spacing: -0.64px;
    margin: 20px 0;
}

  .footer {
    padding-top: 100px;
  }

  .footer-content {
    padding: 40px 20px;
  }

  .footer-title {
    font-size: 40px;
    line-height: 40px;
  }

  .footer-links {
    margin-top: 40px;
    gap: 8px;
  }

  .feature-image {
    padding: 20px 20px 0 20px;
    order: 2;
  }

  .feature-content {
    padding: 0px;
  }

  .feature-content-2 {
    padding: 0px;
  }

  .feature-content-3 {
    padding: 0px;
  }



  .feature-card {
    margin-top: 60px;
  }

  .features-footer {
    margin-top: 40px;
  }

  .cta-button {
    padding: 16px 20px;
  }

  .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1090px;
    text-align: center;
    padding: 20px 20px 40px;
  }

  .challenges-grid {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-direction: column;
}

.feature-image-medium {
  width: 40%;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

}

.stress-effects {
  background-color: #ffffff;
  display: flex;
  padding: 80px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

.container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

/*.header {
  align-self: center;
  width: 899px;
  max-width: 100%;
  font-family:
    "SF Pro Display",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  text-align: center;
  line-height: 1;
}*/

.header-stress-effects {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 20px 0px;
  flex-direction: column;
}

.header-content {
  width: 100%;
  color: #000000;
  letter-spacing: -2.24px;
}

.title-medium {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  margin: 0;
}

.title-large {
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
}

.subtitle {
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.24px;
}

.content-grid {
  margin-top: 40px;
  width: 100%;
  gap: 20px;
  display: flex;
}

.left-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 24%;
  margin-top: auto;
  margin-bottom: auto;
  font-family:
    "SF Pro Text",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

.center-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 52%;
  margin-left: 20px;
}

.right-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 24%;
  margin-left: 20px;
  margin-top: 47px;
  font-family:
    "SF Pro Text",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
}

.info-card {
  border-radius: 24px;
  background-color: #fafafa;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 132px;
}

.info-card:last-child {
  margin-bottom: 0;
}

.card-title {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.24px;
  margin: 0;
}

.card-description {
  color: #969696;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.32px;
  margin: 8px 0 0 0;
}

.main-image {
  aspect-ratio: 1.25;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .stress-effects {
    padding: 20px 20px 100px;
  }

  .container {
    max-width: 100%;
  }

  .header-content {
    max-width: 100%;
  }

  .title-medium {
    max-width: 100%;
    font-size: 28px;
    line-height: 110%;
  }

  .title-large {
    max-width: 100%;
    font-size: 40px;
    text-align: center;
  }

  .subtitle {
    max-width: 100%;
    text-align: center;
    line-height: 110%;
  }

  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
  }

  .left-column,
  .center-column,
  .right-column {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }

  .info-card {
    padding: 20px;
    margin-bottom: 12px;
  }

  .main-image {
    max-width: 100%;
  }
}
