:root {
  --bg: #F1F4FB;
  --primary: #0B9588;
  --black: #000000;
  /* --secondary: #FFFFFFCC; */
  --white: #FFFFFF;
  --charcoal-dark: #535353;
  /* --dark-gray: #46483D; */
  --light-gray: #F5F3EF;
  --deep-charcoal: #1F1F1F;
  --carbon-gray: #1E2022;
  --fade-white: #FFFFFF0F;
  --blue-accent: #C3E1E4;
  --yellow: #DEAC05;
  --deep-ocean: #035850;

  --sucess: #155724;
  --error: #721c24;

  --manrope: 'Manrope', sans-serif;
  --bg-overlay: #FEDC050D;

  --overlay-teal: #389CB11A;
  --overlay-cyan: #3FB0B21A;
  --overlay-green: #79BC691A;
  --overlay-rose: #F37D7D1A;
  --overlay-blue: #62B3F41A;
  --overlay-purple: #C547C51A;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--manrope);
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.header {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 52px;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.text-black {
  color: var(--deep-charcoal);
}

.btn-primary {
  color: var(--white);
  border: none;
  padding: 20px 40px;
  border-radius: 99px;
  font-size: 16px;
  cursor: pointer;
  line-height: 28px;
  background: linear-gradient(180deg, #0B9588 50%, #035850 79.46%);
  font-weight: 700;
  font-family: var(--manrope);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-secondary {
  color: var(--primary);
  border: none;
  padding: 16px 40px;
  border-radius: 130px;
  font-size: 18px;
  cursor: pointer;
  line-height: 28px;
  font-weight: 800;
  background-color: var(--white);
  font-family: var(--manrope);
}

.btn-outline {
  color: var(--deep-ocean);
  border: 1px solid var(--deep-ocean);
  padding: 16px 17px;
  border-radius: 99px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  font-weight: 700;
  font-family: var(--manrope);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero {
  background: linear-gradient(180deg, #D4F0F1 0%, #DEF4F5 100%);
  padding-bottom: 0;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  gap: 269px;
  align-items: center;
  padding: 20px;
}

.brand-logo {
  object-fit: cover;
  display: block;
  max-height: 60px;
}

.brand-text {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 100%;
  font-family: "Poppins";
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 6px 20px 0 20px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--manrope);
}

p {
  margin: 0;
  font-family: var(--manrope);
}

.hero-text-content {
  text-align: left;
  /* padding-bottom: 109px; */
}

.hero-title {
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: var(--deep-ocean);
  font-family: var(--manrope);
  font-weight: 700;
  text-transform: uppercase;
}

.text-primary {
  color: var(--primary);
}

.hero-divider {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.hero-divider span {
  height: 7px;
  background-color: var(--deep-ocean);
  border-radius: 99px;
}

.hero-divider .dash-long {
  width: 80px;
}

.hero-divider .dash-short {
  width: 14px;
}

.hero-description {
  font-size: 18px;
  margin: 0 0 40px 0;
  line-height: 28px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--manrope);
}

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

.hero-features-pills {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  background-color: #DCF2F3;
  border: 1px solid #03585033;
  border-radius: 20px;
  padding: 20px;
  width: max-content;
}

.hero-features-pills .pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-features-pills .pill-icon {
  padding: 11px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-features-pills .pill-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.hero-features-pills .pill-text {
  display: flex;
  flex-direction: column;
}

.hero-features-pills .pill-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep-charcoal);
  font-family: var(--manrope);
  line-height: 1.2;
}

.hero-features-pills .pill-text span {
  font-size: 10px;
  color: var(--charcoal-dark);
  font-family: var(--manrope);
}

.hero-features-pills .divider {
  width: 2px;
  height: 50px;
  background-color: #A9DFE1;
}

.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
  background-color: var(--primary);
  border-radius: 9999px 9999px 0 0;
  width: 100%;
  /* max-width: 500px; */
  margin: 0 auto;
  overflow: hidden;
  padding-top: 131px;
  /* background-image: url(../images/Union.svg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat; */
}

.concentric-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  /* Make it large enough */
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.concentric-circles img {
  width: 100%;
  height: 100%;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  max-width: 397px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
  color: var(--primary);
}

/* feature section  */
.features {
  padding: 80px 20px;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.feature-icon {
  background: var(--white);
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  margin-bottom: 9px;
}

.feature-card {
  background: #E9B50433;
  border-radius: 24px;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  grid-column: span 2;
}

.highlight {
  background: #0B958833;
}

.wide {
  grid-column: span 3;
  min-height: 400px;
  position: relative;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  color: var(--deep-charcoal);
  font-family: var(--manrope);
}

.feature-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-dark);
  margin: 0 0 auto 0;
  line-height: 24px;
  font-family: var(--manrope);
}

.feature-card .feature-image {
  margin: 23px auto -23px;
  object-fit: contain;
}

.wide .feature-image {
  margin-bottom: 0;
}

.wide .feature-title,
.wide .feature-description {
  max-width: 220px;
}

.feature-categories .feature-image,
.feature-progress .feature-image {
  position: absolute;
  right: 20px;
  bottom: 0;
}

.faq p {
  margin-bottom: 0;
  color: var(--charcoal-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 24px;
}

.footer {
  margin-top: 0;
}

.footer-main {
  background: var(--white);
  padding: 50px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-features {
  justify-self: start;
}

.footer-resources {
  justify-self: end;
}

.footer-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--manrope);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  /* color: var(--secondary); */
  color: #535353CC;
  text-decoration: none;
  font-family: var(--manrope);
  font-weight: 400;
  font-size: 26px;
  line-height: 100%;
}

.footer-logo img {
  object-fit: contain;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-emblem {
  width: min(200px, 42vw);
  max-width: 220px;
  aspect-ratio: 1;
}

.footer-emblem-svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-emblem-text {
  font-family: var(--manrope);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-emblem-text--top {
  font-size: 13px;
}

.footer-emblem-text--bottom {
  font-size: 6.5px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 2rem;
  margin-top: 55px;
}

.footer-powered {
  font-family: var(--manrope);
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: var(--charcoal-dark);
}

.footer-app-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;
}

.footer-get-app {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: var(--deep-charcoal);
  font-family: var(--manrope);
}

.footer-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.success-message {
  color: var(--sucess);
  background-color: #d4edda;
  margin-top: 16px;
}

.error-message {
  color: var(--error);
  background-color: #f8d7da;
  margin-top: 16px;
}

/* habit section  */
.motivation-section {
  padding: 0 20px 80px 20px;
}

.motivation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.motivation-card {
  max-width: 100%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* min-height: 220px; */
  overflow: hidden;
}

.motivation-card::before {
  content: "";
  position: absolute;
  left: -108px;
  width: 230PX;
  height: 285PX;
  background: var(--fade-white);
  border-radius: 50%;
  z-index: -1;
  transform: translateY(-20%);
}

.motivation-card::after {
  content: "";
  position: absolute;
  top: 90px;
  left: -62px;
  width: 230px;
  height: 285px;
  background: var(--fade-white);
  border-radius: 50%;
  z-index: -1;
}

.motivation-inner-card {
  max-width: 80%;
  position: relative;
  z-index: 2;
}

.motivation-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  border-radius: 7px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.motivation-card:hover .motivation-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-1 .motivation-icon {
  background: var(--overlay-teal);
}

.card-2 .motivation-icon {
  background: var(--overlay-cyan);
}

.card-3 .motivation-icon {
  background: var(--overlay-green);
}

.card-4 .motivation-icon {
  background: var(--overlay-rose);
}

.card-5 .motivation-icon {
  background: var(--overlay-blue);
}

.card-6 .motivation-icon {
  background: var(--overlay-purple);
}

.motivation-icon svg path,
.motivation-icon svg polyline,
.motivation-icon svg circle,
.motivation-icon svg rect {
  vector-effect: non-scaling-stroke;
}

.motivation-card h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--manrope);
}

.motivation-card p {
  font-size: 19px;
  font-weight: 500;
  line-height: normal;
  color: var(--white);
  font-family: var(--manrope);
}

/* Gradients for cards */
.card-1 {
  background: linear-gradient(171.69deg, #0CBAE2 4.51%, #03657B 93.63%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

.card-2 {
  background: linear-gradient(171.69deg, #10A3A6 4.51%, #097D80 93.63%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

.card-3 {
  background: linear-gradient(171.69deg, #5FAD4C 4.51%, #219D03 93.63%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

.card-4 {
  background: linear-gradient(171.69deg, #FF6B6B 4.51%, #9A0E0E 93.63%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

.card-5 {
  background: linear-gradient(171.69deg, #44ACFF 4.51%, #045A9E 93.63%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

.card-6 {
  background: linear-gradient(171.69deg, #BE17BE 4.51%, #982598 93.63%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

/* testimonials section  */
.testimonials {
  padding: 80px 0;
}

.reviews-cards {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-slider-controls {
  display: none;
}

.review-card {
  padding: 32px;
  border-radius: 24px;
  position: relative;
}

.light {
  background: var(--white);
  padding: 40px;
}

.light:before {
  content: "";
  background: var(--bg-overlay);
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 24px;
}

.dark {
  background: #F0E7CA;
}

.stars {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
}

.review-content {
  font-size: 18px;
  line-height: 33px;
  color: var(--charcoal-dark);
  font-weight: 400;
  margin-bottom: 25px;
}

.dark .review-content {
  color: var(--charcoal-dark);
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.review-user h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--deep-charcoal);
}

.review-user span {
  font-family: var(--manrope);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--charcoal-dark);
}

.cta {
  text-align: center;
}

.cta h3 {
  color: var(--deep-charcoal);
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}

/* contact section  */

.contact-section {
  padding: 80px 0 0 0;
}

.contact-form {
  background: var(--white);
  border-radius: 48px;
  padding: 48px;
}

.contact-form-group {
  margin-bottom: 16px;
}

.name-email-group {
  display: flex;
  gap: 32px;
}

/* .contact-form .btn-primary {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
} */

.contact-form-group label {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
}

input,
select,
textarea {
  width: 100%;
  padding: 17px 24px;
  border-radius: 160px;
  border: none;
  background: var(--light-gray);
  outline: none;
  margin-top: 8px;
  color: #77786C;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  font-family: var(--manrope);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23A8A89B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 14px 9px;
}

select::-ms-expand {
  display: none;
}

textarea {
  height: 120px;
  border-radius: 20px;
}

.note {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #1F1F1F80;
  margin-top: 16px;
}

.info-box {
  background: var(--blue-accent);
  padding: 40px;
  border-radius: 24px;
}

.info-box h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: var(--primary);
  margin-bottom: 32px;
}

.info {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.email-icon,
.location-icon,
.social-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-title,
.location-title,
.social-title {
  font-family: var(--manrope);
  color: var(--deep-charcoal);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}

.email,
.location {
  color: var(--charcoal-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.social {
  color: var(--charcoal-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* faq section  */
.faq {
  padding: 0 0 80px 0;
}

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

.faq-have-questions {
  width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
}

.faq-have-questions h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
}

/* .faq-have-questions button {
  background: var(--primary);
  color: var(--black);
  border: none;
  padding: 16px 23px;
  border-radius: 99px;
  cursor: pointer;
  font-family: var(--cinzel-decorative);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
} */

.faq-items {
  flex: 1;
}

.faq-items .faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.faq-items .faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-question {
  border-bottom: 1px solid var(--primary);
}

.faq-question {
  padding: 16px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  font-family: var(--manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    padding 0.35s ease;

  will-change: max-height;
}

.faq-items .faq-item.active .faq-answer {
  padding: 16px 32px;
  opacity: 1;
  color: var(--charcoal-dark);
}

.faq-items .faq-item.active {
  background-color: var(--blue-accent);
}

.faq-items .faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-question-text {
  font-family: var(--manrope);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--deep-charcoal);
}

/* growth section */
.growth {
  background: var(--white);
  padding: 80px 0;
}

.growth .header {
  margin-bottom: 32px;
  text-align: start;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 40px 0;
  overflow: hidden;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  position: relative;
  flex: 0 0 33.333%;
  color: var(--white);
  padding: 16px 100px 16px 60px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%, 20px 50%); */
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  width: 65px;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0% 0%, 68% 50%, 0% 100%, 30% 100%, 100% 50%, 30% 0%);
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-family: var(--manrope);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}

.step1 .circle {
  background: var(--bright-purple);
}

.step2 .circle {
  background: var(--bright-teal);
}

.step3 .circle {
  background: var(--bright-blue);
}

.step4 .circle {
  background: var(--bright-rose);
}

.step5 .circle {
  background: var(--bright-amber);
}

.step h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
}

.step p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}

/* WHY CHOOSE PERIOD TRACKER SECTION */

.why-choose .header {
  font-size: 32px;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.why-choose-card {
  flex: 1 1 calc(33.333% - 20px);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: var(--white);
  border: 1px solid #E4E7EC;
  border-left-style: solid;
  border-left-width: 6px;
}

.why-choose-card.card-teal {
  border-left-color: var(--primary);
}

.why-choose-card.card-teal .gear-bg {
  color: var(--primary);
}

.why-choose-card.card-yellow {
  border-left-color: var(--yellow);
}

.why-choose-card.card-yellow .card-icon-wrapper {
  background-color: var(--yellow);
}

.why-choose-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-choose-card .card-icon-wrapper {
  position: relative;
  width: 91px;
  height: 91px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  -webkit-mask-image: url('../images/icon-bg-pattern.svg');
  mask-image: url('../images/icon-bg-pattern.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* .why-choose-card .gear-bg {
  position: absolute;
  max-width: 91px;
  max-height: 91px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  -webkit-mask-image: url('../images/icon-bg-pattern.svg');
  mask-image: url('../images/icon-bg-pattern.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
} */

.why-choose-card .inner-icon {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-card .card-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
  color: var(--deep-charcoal);
  font-family: var(--manrope);
}

.why-choose-card .card-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  color: var(--charcoal-dark);
  max-width: 256px;
}

/* .card-purple {
  background: var(--soft-purple);
}

.card-purple::before,
.card-purple::after {
  background: var(--overlay-purple);
}

.card-purple .card-icon {
  background: var(--deep-purple);
}

.card-purple .card-title {
  color: var(--deep-purple);
}

.card-teal {
  background: var(--soft-teal);
}

.card-teal::before,
.card-teal::after {
  background: var(--overlay-teal);
}

.card-teal .card-icon {
  background: var(--deep-teal);
}

.card-teal .card-title {
  color: var(--deep-teal);
}

.card-blue {
  background: var(--soft-blue);
}

.card-blue::before,
.card-blue::after {
  background: var(--overlay-blue);
}

.card-blue .card-icon {
  background: var(--deep-blue);
}

.card-blue .card-title {
  color: var(--deep-blue);
}

.card-pink {
  background: var(--soft-pink);
}

.card-pink::before,
.card-pink::after {
  background: var(--overlay-pink);
}

.card-pink .card-icon {
  background: var(--deep-rose);
}

.card-pink .card-title {
  color: var(--deep-rose);
}

.card-orange {
  background: var(--soft-orange);
}

.card-orange::before,
.card-orange::after {
  background: var(--overlay-orange);
}

.card-orange .card-icon {
  background: var(--deep-amber);
}

.card-orange .card-title {
  color: var(--deep-amber);
} */

/* responsive  */

@media (max-width: 1280px) {

  /* hero section  */
  .progress,
  .calendar {
    right: 0;
  }

  /* feature section  */

  .wide .feature-title,
  .wide .feature-description {
    max-width: 100%;
  }

  .feature-categories .feature-image,
  .feature-progress .feature-image {
    position: unset;
  }

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

  .step {
    flex: none;
    padding: 16px 80px 16px 60px;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 0;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .motivation-icon {
    right: 43px;
  }

  .why-choose-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 992px) {
  .hero-content {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .footer-top-grid,
  .arrows {
    grid-template-columns: 1fr;
  }

  .footer-resources {
    justify-self: center;
    text-align: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }

  .footer-app-block {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-get-app {
    font-size: 36px;
  }

  .brand-text {
    display: none;
  }

  .contact-info {
    gap: 20px;
  }

  /* feature section  */
  .features-section {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .wide {
    grid-column: span 1;
    min-height: auto;
    padding-bottom: 0;
  }

  .features h1 {
    font-size: 34px;
  }

  .feature-card .feature-image {
    position: static;
    width: min(50%, 320px);
    margin: 20px auto 0;
  }

  .wide .feature-image {
    width: min(82%, 340px);
    margin: 20px auto 0;
  }

  .wide .feature-title,
  .wide .feature-description {
    max-width: 100%;
  }

  .motivation-section .header {
    font-size: 34px;
    line-height: 1.2;
    max-width: 680px;
  }

  .motivation-card {
    max-width: 100%;
  }

  .motivation-card h2 {
    font-size: 23px
  }

  .motivation-card p {
    font-size: 17px;
    line-height: 25px;
    max-width: 200px;
  }

  /* growth section  */
  .step h3 {
    font-size: 26px;
  }

  .step p {
    font-size: 20px;
  }

  .motivation-icon {
    right: 56px;
  }

}

@media (min-width: 600px) and (max-width: 991px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "logo logo"
      "features resources";
    align-items: start;
    justify-items: stretch;
    gap: 1.75rem 2rem;
    text-align: left;
  }

  .footer-logo {
    grid-area: logo;
    justify-self: center;
  }

  .footer-logo img {
    width: 180px;
    max-width: 100%;
  }

  .footer-features {
    grid-area: features;
    justify-self: start;
    text-align: left;
  }

  .footer-resources {
    grid-area: resources;
    justify-self: end;
    text-align: left;
  }
}

@media (max-width: 768px) {

  .info-box h3 {
    font-size: 24px;
  }

  .btn-primary {
    font-size: 14px;
    line-height: 100%;
    padding: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 125;
  }

  body.menu-open {
    overflow: hidden;
  }

  .brand {
    position: relative;
    z-index: 125;
  }

  .nav-links {
    position: fixed;
    top: 67px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    padding: 20px 20px 34px;
    border-radius: 0;
    background: var(--white);
    border: none;
    box-shadow: none;
    z-index: 124;
  }

  .nav-links.open {
    display: flex;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: inline-block;
  }

  .nav {
    position: relative;
    justify-content: space-between;
    padding: 10px;
    gap: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
  }

  .hero-features-pills {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    border-radius: 20px;
  }

  .hero-features-pills .divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .hero-text-content {
    padding-bottom: 60px;
  }

  .hero-stage {
    padding-top: 0;
    background: none;
    border-radius: 0;
  }

  .concentric-circles {
    display: none;
  }

  .hero-title {
    font-size: 32px;
    max-width: 100%;
    line-height: normal;
  }

  .header {
    font-size: 20px;
    line-height: normal;
  }

  .motivation-section .header {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
  }

  /* .header::after {
    background-size: inherit;
  } */

  .hero-title br {
    display: none;
  }

  .phone-mockup {
    left: 0;
    width: 100%;

  }

  .why-choose-card .card-desc {
    line-height: normal;
    font-size: 18px;
  }

  .why-choose-card .card-title {
    font-size: 20px;
  }

  .why-choose-card {
    padding: 20px;
  }

  /* habit section  */
  .motivation-section {
    padding: 0 20px 60px 20px;
  }

  .motivation-card {
    width: 100%;
    padding: 20px;
    border-radius: 17px;
  }

  .motivation-card h2 {
    font-size: 23px;
  }

  .motivation-card p {
    font-size: 17px;
    line-height: 25px;
  }

  .motivation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* testimonials  */
  .contact-info {
    grid-template-columns: 1fr;
  }

  .reviews-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 16px;
    padding-bottom: 6px;
  }

  .reviews-cards::-webkit-scrollbar {
    display: none;
  }

  .reviews-cards .review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 26px 20px;
  }

  .reviews-cards .light,
  .reviews-cards .green {
    padding: 26px 20px;
  }

  .reviews-cards .review-content {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 40px;
  }

  .reviews-cards .review-user h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .testimonial-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
  }

  .testimonial-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  }

  .testimonial-arrow svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .testimonial-arrow svg path {
    fill: currentColor;
  }

  .testimonial-arrow.is-active {
    background: var(--primary);
    color: var(--white);
  }

  .testimonial-arrow.is-inactive {
    border-color: var(--primary);
    background: var(--white);
    color: var(--primary);
    cursor: not-allowed;
  }

  .testimonials {
    padding: 60px 0;
  }

  .cta h3 {
    font-size: 20px;
    line-height: 30px;
  }

  /* contact section  */
  .contact-form {
    padding: 34px 20px;
    border-radius: 24px;
  }

  .info-box {
    padding: 32px 20px;
  }

  .name-email-group {
    flex-direction: column;
    gap: 0;
  }

  .contact-section {
    padding: 60px 0 0 0;
  }

  .email,
  .location,
  .social {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  /* faq section  */

  .faq {
    padding: 0 0 50px 0;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-have-questions {
    width: 100%;
  }

  .faq-question-text,
  .faq-answer {
    font-size: 16px;
    line-height: 26px;
  }

  /* footer section  */

  .footer-top-grid,
  .footer-resources {
    text-align: start;
  }

  .footer-resources {
    justify-self: start;
  }

  .footer-heading {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .footer-links a {
    font-size: 20px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-logo {
    width: 100%;
  }

  /* growth section  */
  .growth {
    padding: 50px 0;
  }

  .steps {
    flex-direction: column;
    gap: 12px;
  }

  .circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 16px;
    line-height: 1.4;
  }

  .motivation-inner-card {
    max-width: 345px;
  }

  .motivation-icon svg {
    width: 40px;
    height: 40px;
  }

  .motivation-icon {
    right: 14%;
  }
}

@media (max-width: 600px) {
  .motivation-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .motivation-icon {
    right: 15%;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .feature-card .feature-image.feature {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .wide .feature-image {
    width: min(100%, 340px);
    margin: 20px auto 0;
  }

  .motivation-cards {
    gap: 20px;
  }

  .step::after {
    width: 50px;
  }

  .motivation-icon {
    right: 8%;
  }
}