@import url(https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans";
  background: black;
  padding: 1.3rem;
}

body.no-scroll {
  overflow: hidden;
}

/* Background */
.-u-hero-container {
  /* background: linear-gradient(135deg, #a4256b 0%, #7d2155 100%); */
  /* min-height: 80vh; */
  padding-bottom: 15rem;
  background: url("./assets/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Background wave effect */

/* Header */
.-u-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 4rem;
  padding: 1rem 0;
  position: relative;
  /* z-index: 10; */
  border-bottom: 0.1rem solid #ffffff1a;
}

/* Logo */
.-u-logo {
  display: flex;
  align-items: center;
}

.-u-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  position: relative;
}

/* Navigation */
.-u-nav {
  display: flex;
}

.-u-nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.-u-nav a:hover {
  opacity: 0.8;
}

/* Download Button */
.-u-download-btn {
  background-color: white;
  color: #333;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.-u-download-btn:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}

.-u-download-icon {
  margin-right: 10px;
  margin-top: -0.15rem;
  width: 25px;
  height: 25px;
}

/* Hero Content */
.-u-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 4rem;
  padding: 0 2rem;
  position: relative;
  /* z-index: 10; */
}

.-u-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.-u-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* CTA Buttons */
.-u-cta-container {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 2rem;
}

.-u-cta-btn {
  border-radius: 50px;
  padding: 0.25rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.-u-start-btn {
  background-color: white;
  color: #a4256b;
  border: none;
}

.-u-start-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.-u-explore-btn {
  background-color: transparent;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.-u-explore-btn:hover {
  opacity: 0.9;
}

.-u-rocket-icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

/* App Screenshots */
.-u-app-screenshots {
  display: flex;
  justify-content: center;
  position: relative;
  /* z-index: 5; */
  gap: 4rem;
  margin-top: -15rem;
}

.-u-phone-mockup {
  width: 260px;
  margin: 0 -20px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
  height: 100%;
  object-fit: cover;
}

.-u-phone-mockup:hover {
  transform: translateY(-10px);
}

.-u-phone-center {
  /* z-index: 2; */
  margin-top: -2rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  body {
    padding: 1.5rem;
  }

  .-u-hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }

  /* CTA Buttons */
  .-u-cta-container {
    display: flex;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .-u-hero-container {
    padding-bottom: 0;
  }

  .-u-app-screenshots {
    margin-top: 1rem;
  }

  .-u-cta-btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
  }

  .-u-hero-title {
    font-size: 1.5rem;
  }

  .-u-nav {
    display: none;
  }

  .-u-phone-mockup {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .-u-header {
    margin: 0 2rem;
    padding: 1rem 0;
  }

  .-u-download-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .-u-app-screenshots {
    flex-direction: column;
    align-items: center;
  }

  .-u-phone-mockup {
    width: 180px;
    margin: -0 0;
  }
}

/* Hamburger */
.-u-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 2;
}

.-u-hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.-u-mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.-u-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: black;
  color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  padding: 2rem;
  border-radius: 1rem;
  width: 70%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

/* Active state */
.-u-mobile-nav.active {
  display: flex;
}

/* Close button */
.-u-mobile-nav .close-btn {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

#-u-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.2);
  z-index: 3;
  display: none;
}

#-u-overlay.active {
  display: block;
}

/* 
.-u-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.-u-hamburger.active span:nth-child(2) {
  transform: scaleX(0);
}

.-u-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
} */

/* Show hamburger on mobile */
@media (max-width: 1024px) {
  .-u-hamburger {
    display: flex;
  }

  .-u-nav {
    display: none !important;
  }

  .-u-download-btn {
    display: none;
  }
}

.-u-medical-grade {
  padding: 10rem 3rem;
  background: #14b8a6;
  border-radius: 56px;
  margin: 1.5rem 0;
}

.-u-medical-grade h1 {
  font-size: 60px;
  text-align: center;
  color: white;
}

.-u-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1220px;
  margin: 3rem auto;
}

.-u-grid-item {
  background-color: #000000;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: white;
  min-height: 370px;
  position: relative;
}

.-u-icon-circle {
  background-color: #befdf6;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.-u-icon {
  width: 40px;
  height: 40px;
}

.-u-feature-title {
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  bottom: 30px;
  left: 20px;
  margin: 0;
}

/* Utility class for improved spacing */
.u-margin-top {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .-u-medical-grade {
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 12px;
  }

  .-u-medical-grade h1 {
    font-size: 23px;
  }

  .-u-grid-item {
    min-height: 290px;
  }

  .-u-grid-container {
    margin: 2rem 0 auto;
  }

  .-u-icon-circle {
    width: 60px;
    height: 60px;
  }

  .-u-icon {
    width: 25px;
    height: 25px;
  }

  .-u-feature-title {
    font-size: 18px;
  }
}

/* Utility Classes */
.-u-container {
  max-width: 1200px;
  margin: 8rem auto;
}

.-u-heading {
  text-align: center;
  font-size: 56px;
  margin-bottom: 60px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.-u-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.-u-testimonial-card {
  background-color: #171717;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  min-height: 200px;
}

.-u-stars {
  color: gold;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.-u-testimonial-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: white;
}

.-u-profile {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 25px;
}

.-u-profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.-u-profile-name {
  font-size: 18px;
  font-weight: 500;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .-u-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .-u-testimonial-card {
    min-height: 180px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .-u-profile {
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  .-u-heading {
    font-size: 1.4rem;
  }

  .-u-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .-u-profile {
    bottom: 15px;
  }

  .-u-testimonial-text {
    margin-bottom: 0px;
  }

  .-u-testimonial-text {
    font-size: 15px;
  }

  .-u-profile-name {
    font-size: 16px;
  }

  .-u-stars {
    font-size: 20px;
  }
}

.-u-start-living {
  background: url("./assets/start_living.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 540px;
  display: flex;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 0 85px;
  position: relative;
}

.-u-content-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

.-u-text-content {
  color: white;
  max-width: 650px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.-u-section-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.1;
}

.-u-section-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.-u-buttons-container {
  display: flex;
  gap: 16px;
  align-items: center;
}

.-u-start-free-btn {
  background-color: black;
  color: #ff5a44;
  border: none;
  border-radius: 50px;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-u-start-free-btn:hover {
  transform: translateY(-2px);
}

.-u-personalized-btn {
  display: flex;
  align-items: center;
  color: white;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.-u-personalized-btn img {
  width: 36px;
  height: 36px;
}

.-u-app-preview {
  display: flex;
  position: absolute;
  right: 5rem;
  bottom: 0;
}

.-u-breathing-app {
  width: 21rem;
  height: auto;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  z-index: 1;
}

.-u-breathing-app img {
  width: 100%;
  height: auto;
  display: block;
}

.-u-water-app {
  width: 280px;
  height: auto;
  position: absolute;
  right: -132px;
  top: 183px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  z-index: 2;
}

.-u-water-app img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1280px) {
  .-u-app-preview {
    right: 5rem;
  }

  .-u-breathing-app {
    width: 18rem;
  }

  .-u-water-app {
    width: 240px;
    right: -80px;
    top: 9.7rem;
  }

  .-u-start-living {
    padding: 0 35px;
    min-height: 474px;
  }

  .-u-section-title {
    font-size: 34px;
  }

  .-u-text-content {
    max-width: 500px;
  }
}

@media (max-width: 1024px) {
  .-u-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 400px;
  }

  .-u-text-content {
    padding-top: 5px;
    padding-bottom: 40px;
    max-width: 100%;
  }

  .-u-app-preview {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
  }

  .-u-breathing-app {
    width: 16rem;
  }

  .-u-water-app {
    width: 220px;
    right: -70px;
    top: 8.2rem;
  }
}

@media (max-width: 768px) {
  .-u-section-title {
    font-size: 36px;
  }

  .-u-start-living {
    padding: 0 24px;
  }

  .-u-content-wrapper {
    padding-bottom: 350px;
  }

  .-u-breathing-app {
    width: 14rem;
  }

  .-u-water-app {
    width: 200px;
    right: -60px;
    top: 6.6rem;
  }

  .-u-text-content {
    padding-top: 5px;
  }
}

@media (max-width: 580px) {
  .-u-start-living {
    min-height: 500px;
    /* border-radius: 40px; */
  }

  .-u-content-wrapper {
    padding-bottom: 300px;
  }

  .-u-text-content {
    padding-top: 5px;
  }

  .-u-section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .-u-section-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .-u-buttons-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .-u-start-free-btn {
    padding: 14px 40px;
    font-size: 14px;
    width: 100%;
  }

  .-u-personalized-btn {
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .-u-breathing-app {
    width: 12rem;
  }

  .-u-water-app {
    width: 180px;
    right: -50px;
    top: 80px;
  }
}

@media (max-width: 480px) {
  .-u-start-living {
    min-height: 450px;
    /* border-radius: 40px; */
  }

  .-u-content-wrapper {
    padding-bottom: 245px;
    padding-top: 20px;
  }

  .-u-breathing-app {
    width: 10rem;
  }

  .-u-water-app {
    width: 150px;
    right: -40px;
    top: 68px;
  }
}

.-u-footer {
  background-color: #290316;
  color: white;
  border-radius: 56px;
  padding: 110px 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.-u-footer-logo {
  margin-bottom: 60px;
}

.-u-footer-logo img {
  height: 120px;
  width: auto;
}

.-u-newsletter {
  background: #651b9c;
  border-radius: 50px;
  /* padding: 16px 20px; */
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  margin-bottom: 75px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.-u-newsletter-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 17px;
}

.-u-newsletter-icon {
  width: 25px;
  height: 25px;
}

.-u-newsletter-button {
  background-color: #b44eff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-u-app-icon-button {
  background-color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-u-newsletter-button:hover {
  transform: translateX(2px);
}

.-u-navigation {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
  flex-wrap: wrap;
}

.-u-nav-item {
  color: #a29ba0;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.-u-nav-item:hover {
  color: white;
}

.-u-nav-item.active {
  color: white;
  position: relative;
}

.-u-nav-item.active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -50%;
  right: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #ff6347;
  border-radius: 50%;
}

.-u-social-icons {
  display: flex;
  gap: 24px;
  margin: 50px 0;
}

.-u-social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #271521; */
  border: 1px solid #540700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-u-social-icon:hover {
  transform: translateY(-3px);
  background-color: #fa4a39;
}

.-u-social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.-u-copyright {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  margin: 65px 0;
  align-items: center;
}

.-u-copyright a {
  color: white;
  text-decoration: none;
}

.-u-copyright-divider {
  font-size: 14px;
  line-height: 0;
}

.-u-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 20px;
  padding: 1rem;
  background-color: #000000;
  border-radius: 40px;
  margin-bottom: 18px;
  margin-left: 0;
  margin-right: 0;
}

.-u-tagline {
  color: #fa4a39;
  font-size: 50px;
  font-weight: 600;
}

.-u-app-buttons {
  display: flex;
  gap: 10px;
}

.-u-app-button.google {
  background: #aa0e5a;
}

.-u-app-button:hover {
  transform: translateY(-2px);
}

.-u-app-text {
  display: inline-block;
  line-height: 1;
}

.-u-app-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fa4a39;
  border: none;
  border-radius: 50px;
  padding: 7px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.-u-app-button {
  font-size: 16px;
  min-width: 209px;
  padding-left: 15px;
}

@media (max-width: 768px) {
  .-u-newsletter,
  .-u-footer-logo {
    margin-bottom: 40px;
  }
  .-u-app-buttons {
    flex-direction: column;
  }

  .-u-social-icons {
    margin: 15px 0;
  }

  .-u-tagline {
    text-align: center;
    font-size: 30px;
  }

  .-u-app-button {
    padding: 6px;
    padding-left: 9px;
  }

  .-u-footer {
    padding: 40px 20px 8px;
    border-radius: 30px;
  }

  .-u-navigation {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .-u-social-icon {
    width: 45px;
    height: 45px;
  }

  .-u-bottom-bar {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    margin-bottom: 0px;
    width: 96%;
    border-radius: 30px;
  }

  .-u-app-icon-button {
    width: 30px;
    height: 30px;
  }

  .-u-app-button {
    white-space: nowrap;
    flex-shrink: 1;
  }

  .-u-app-icon-button {
    width: 32px;
    /* smaller for responsiveness */
    height: 32px;
  }

  .-u-copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: 30px 0;
  }

  .-u-copyright-divider {
    display: none;
  }

  .-u-nav-item {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .-u-newsletter {
    width: 100%;
    margin-bottom: 40px;
  }

  .-u-newsletter-text {
    font-size: 13px;
  }

  .-u-newsletter-button {
    width: 40px;
    height: 40px;
  }

  .-u-newsletter-icon {
    width: 19px;
    height: 19px;
  }

  .-u-footer-logo img {
    height: 60px;
  }

  .-u-social-icons {
    gap: 15px;
  }

  .-u-social-icon {
    width: 40px;
    height: 40px;
  }

  .-u-tagline {
    font-size: 22px;
    text-align: center;
  }
}

@media (max-width: 378px) {
  .-u-bottom-bar {
    padding: 16px 20px;
  }
}

@media (min-width: 1280px) {
  .-u-app-button {
    gap: 30px;
  }
}

.-u-fastingo-section {
  background-color: #000;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.-u-fastingo-header {
  color: #fa4a39;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.-u-fastingo-subheader {
  font-size: 2rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.3;
}

.-u-app-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.-u-app-showcase img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .-u-fastingo-subheader {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .-u-fastingo-subheader {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .-u-app-showcase img {
    max-width: 118%;
  }
}

.h-section-ceo {
  background-color: #000;
  color: #fff;
  padding: 3rem 0;
  width: 100%;
  margin: 2rem 0;
}

.h-container-ceo {
  max-width: 1500px;
  margin: 0 auto;
}

/* About Section */
.h-about-badge {
  display: inline-block;
  background-color: #b44eff;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.h-about-text {
  margin-bottom: 2rem;
  font-size: 24px;
  font-weight: 500;
  max-width: 900px;
  line-height: 1.6;
}

.h-highlight-text {
  color: #aa0e5a99;
  text-align: right;
  font-size: 3rem;
  margin: 4rem 0;
  line-height: 1.4;
  max-width: 850px;
  margin-left: auto;
  line-height: 1.2;
  font-weight: 600;
}

.h-highlight-text-span {
  color: #aa0e5a;
}

.h-featured-profile {
  width: 100%;
  border-radius: 3rem;
  overflow: hidden;
  margin-bottom: 4rem;
  background-color: #1a1a1a;
}

.h-featured-profile img {
  width: 100%;
  height: auto;
  display: block;
}

.h-team-grid {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.h-team-card {
  background-color: #121212;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 2rem;
}

.h-team-image {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.h-team-info {
  padding: 1rem;
  text-align: center;
}

.h-team-name {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.h-team-title {
  color: #999;
  font-size: 1.4rem;
}

/* STATS */
.h-social-proof {
  width: 100%;
  padding: 3rem 0;
  background-color: #121212;
  border-radius: 3rem;
  margin-bottom: 2rem;
}

.h-container-proof {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.h-social-title {
  font-size: 4rem;
  font-weight: 600;
  color: #aa0e5a;
  text-align: center;
  margin: 3rem 0 5rem 0;
}

.h-social-title-span {
  color: #aa0e5a80;
}

.h-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}

.h-stat-card {
  background-color: #171717;
  border-radius: 40px;
  padding: 2.5rem 2rem;
  position: relative;
}

.h-stat-card-flex {
  display: flex;
  flex-direction: row;
  align-items: end;
}

.h-stat-number {
  color: #b0392f;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.h-stat-plus,
.h-stat-k,
.h-stat-percent {
  color: #ff5f4c;
  font-size: 2rem;
  font-weight: 700;
}

.h-stat-category {
  color: #ff5f4c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-left: 17px;
}

.h-stat-description {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

/* FEATURES */

.h-features {
  position: relative;
  border-radius: 55px;
  /* padding: 10rem 8rem 15rem 8rem; */
  padding: 10rem 3rem 15rem 3rem;
  overflow: hidden;
}

.h-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./assets/background.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 55px;
}

.h-features::before {
  top: -100px;
  right: -100px;
}

.h-features::after {
  bottom: -100px;
  left: -100px;
}

.h-features-container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.h-features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.h-features-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
}

.h-features-count {
  color: white;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 20px;
}

.h-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.h-feature-card {
  background-color: #000;
  border-radius: 25px;
  padding: 1.4rem 2rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.h-feature-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 4.5rem 0;
}

.h-feature-icon {
  width: 100%;
  height: 100%;
}

.h-feature-heading {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.h-feature-description {
  color: white;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* HOW IT WORKS */
.h-app-header {
  text-align: center;
  padding: 3rem 1rem 1rem;
  margin-bottom: 4rem;
}

.h-app-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.h-app-subtitle {
  font-size: 1.2rem;
  color: #b44eff;
  font-weight: 500;
}

.h-feature-section {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.h-feature-container {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.h-feature-text {
  flex: 0 0 45%;
  padding: 2rem;
}

.h-feature-image {
  flex: 0 0 50%;
  position: relative;
  text-align: center;
}

.h-feature-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.h-feature-description-hiw {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: white;
  font-weight: 500;
}

.h-feature-image {
  position: relative;
  z-index: 2;
}

.h-feature-image img {
  max-width: 100%;
  height: 35rem;
  display: block;
  margin: 0 auto;
}

.h-section-define,
.h-section-upload,
.h-section-optimize,
.h-section-plan,
.h-section-track {
  position: relative;
}

.h-section-reverse .h-feature-container {
  flex-direction: row-reverse;
}

.h-app-header-title {
  color: #fa4a39;
  font-size: 2rem;
  font-weight: 500;
}

.h-app-header-desc {
  color: white;
  font-size: 2rem;
  margin: 1rem 0;
}

.h-health-data-list {
  list-style-type: none;
  /* margin-left: 1rem; */
}

.h-health-data-list li {
  color: #14b8a6;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.h-health-data-list li:before {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: white;
  color: black;
  border-radius: 30%;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .h-highlight-text {
    font-size: 2.5rem;
  }
  .-u-container {
    margin: 5rem auto;
  }

  .h-stat-category {
    font-size: 1rem;
  }

  .h-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h-features-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .h-features-title {
    font-size: 2rem;
  }

  .h-features-count {
    font-size: 1.3rem;
    display: block;
  }

  .h-feature-title {
    font-size: 1.8rem;
  }

  .h-feature-description-hiw {
    font-size: 1rem;
  }

  .h-feature-section {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .h-highlight-text {
    font-size: 2.1rem;
  }

  .h-about-text {
    font-size: 21px;
  }

  .h-social-title {
    font-size: 2.2rem;
  }

  .h-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .h-stat-card {
    padding: 2rem 1.5rem;
  }

  .h-stat-category {
    font-size: 0.8rem;
    margin-left: 10px;
  }

  .h-stat-description {
    font-size: 1rem;
  }

  .h-features-title {
    font-size: 2rem;
  }

  .h-feature-container {
    flex-direction: column !important;
  }

  .h-feature-text,
  .h-feature-image {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .h-feature-text {
    order: 2;
  }

  .h-feature-image {
    order: 1;
  }

  .h-feature-image img {
    max-width: 80%;
    height: auto;
  }

  .h-feature-section {
    padding: 1rem 1rem;
    min-height: auto;
    margin: 2rem 0;
  }

  .h-health-data-list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .h-featured-profile {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .h-team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .h-highlight-text {
    font-size: 1.8rem;
    margin: 2.5rem 0;
  }

  .h-about-text {
    font-size: 18px;
  }

  .h-team-name {
    font-size: 1.2rem;
  }

  .h-team-title {
    font-size: 1.1rem;
  }

  .h-social-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .h-stat-card {
    padding: 1.5rem 1.25rem;
  }

  .h-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .h-feature-card {
    padding: 1.5rem;
  }

  .h-features-title {
    font-size: 1.8rem;
  }

  .h-feature-heading {
    font-size: 1.1rem;
  }

  .h-app-title {
    font-size: 2rem;
  }

  .h-feature-title {
    font-size: 1.5rem;
  }

  .h-feature-description-hiw {
    font-size: 0.9rem;
  }

  .h-feature-text,
  .h-feature-image {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }

  .h-app-header-title {
    font-size: 1.5rem;
  }

  .h-app-header-desc {
    font-size: 1.2rem;
  }

  .h-feature-icon {
    width: 70px;
    height: 70px;
  }

  .h-feature-icon-wrapper {
    width: auto;
    height: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .h-featured-profile img {
    height: 11rem;
    object-fit: cover;
  }
}

@media (min-width: 990px) and (max-width: 1279px) {
  .h-features {
    padding: 6rem 3rem 10rem 3rem;
  }
}

@media (min-width: 1280px) {
  .h-features {
    padding: 10rem 8rem 15rem 8rem;
  }
}
@media (max-width: 991px) {
  .h-features {
    padding: 3rem 1rem 8rem 1rem;
  }
}

@media (min-width: 1194px) {
  .h-stats-grid {
    padding: 0 4rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .h-stat-number,
  .h-stat-plus,
  .h-stat-k,
  .h-stat-percent {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .h-stat-number,
  .h-stat-plus,
  .h-stat-k,
  .h-stat-percent {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) and (max-width: 1249px) {
  .h-stat-number,
  .h-stat-plus,
  .h-stat-k,
  .h-stat-percent {
    font-size: 5rem;
  }
}

/* XXL screens (1250px and above) */
@media (min-width: 1250px) {
  .h-stat-number,
  .h-stat-plus,
  .h-stat-k,
  .h-stat-percent {
    font-size: 6rem;
  }
}
