* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* FULL SCREEN HERO */
#hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  /* mobile-safe */
  background: url("../images/hero-bg.png") center / cover no-repeat;
}

/* OVERLAY */
#overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  padding: 0 6%;
  color: #fff;
}

/* LEFT CONTENT */
#hero-content {
  max-width: 540px;
}

#hero-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

#hero-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* ACTIONS */
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* AVATARS */
.avatars {
  display: flex;
}

.avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

/* RIGHT VIDEO */
#hero-video {
  margin-left: auto;
  position: relative;
}

.ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.play {
  position: absolute;
  right: -8px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* =======================
   TABLET RESPONSIVE
======================= */
@media (max-width:1024px) {
  #overlay {
    padding: 0 5%;
  }

  #hero-video {
    margin-left: 40px;
  }

  .ring {
    width: 100px;
    height: 100px;
  }

  .ring img {
    width: 75px;
    height: 75px;
  }
}

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:767px) {
  #overlay {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
  }

  #hero-content {
    max-width: 100%;
  }

  .actions {
    justify-content: center;
    gap: 16px;
  }

  .question {
    flex-direction: column;
    gap: 6px;
  }

  #hero-video {
    margin: 35px 0 0;
  }

  .ring {
    width: 90px;
    height: 90px;
  }

  .ring img {
    width: 65px;
    height: 65px;
  }

  .avatars img {
    width: 22px;
    height: 22px;
  }
}


/* =========================
   WHY MENTA SECTION
========================= */
#why-menta {
  max-width: 1400px;
  margin: 70px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 400px 1fr;
  /* slightly smaller left */
  gap: 50px;
  align-items: flex-start;
}

/* =========================
   LEFT IMAGE CARD (SMALLER HEIGHT)
========================= */
.left-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 480px;
  /* REDUCED HEIGHT */
}

.left-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QUESTION BADGE */
.question-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.avatars {
  display: flex;
}

.avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: -6px;
}

/* =========================
   RIGHT CONTENT (NO BLANK SPACE)
========================= */
.right-content {
  display: flex;
  flex-direction: column;
}

/* TAG */
.right-content .tag {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* TITLE */
.right-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* =========================
   IMAGE ROW (BIGGER HEIGHT)
========================= */
.image-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.img-card {
  height: 150px;
  /* BIGGER HEIGHT */
  border-radius: 16px;
  overflow: hidden;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   TEXT
========================= */
.right-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 720px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1024px) {
  #why-menta {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .left-card {
    height: 420px;
  }

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

  .img-card {
    height: 180px;
  }
}

@media(max-width:600px) {
  #why-menta {
    padding: 0 20px;
    margin: 50px auto;
  }

  .left-card {
    height: 360px;
  }

  .right-content h2 {
    font-size: 28px;
  }

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

  .img-card {
    height: 200px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* SECTION */
.features {
  padding: 80px 6%;
}

/* TOP ROW */
.features-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.badge {
  font-size: 14px;
  color: #666;
}

.top-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 12px;
}

.top-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 420px;
  margin-top: 32px;
  /* KEY: pushes text lower than title */
}

/* CARDS */
.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.25),
      transparent);
}

/* CARD CONTENT */
.content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}

.content h3 {
  font-size: 17px;
  font-weight: 500;
}

.content p {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 6px;
}

/* ARROW */
.arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
}

/* RESPONSIVE */
@media(max-width:1000px) {
  .features-top {
    grid-template-columns: 1fr;
  }

  .top-right p {
    margin-top: 10px;
  }

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

  .card {
    height: 320px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* SECTION */
.testimonial {
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.badge {
  font-size: 14px;
  color: #777;
}

.testimonial-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 10px 0 30px;
}

.quote-icon {
  font-size: 50px;
  color: #cfd8e3;
  margin-bottom: 20px;
}

/* CARD STACK */
.testimonial-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.t-card {
  background: #f4f7fb;
  padding: 14px;
  border-radius: 14px;
  width: 120px;
  opacity: 0.6;
}

.t-card.active {
  opacity: 1;
  background: #e9f0fb;
}

.counter {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

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

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

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

.user span {
  font-size: 12px;
  color: #666;
}

/* TEXT */
.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* RIGHT IMAGE */
.testimonial-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

/* RESPONSIVE */
@media(max-width:1000px) {
  .testimonial {
    grid-template-columns: 1fr;
  }

  .testimonial-right img {
    height: 300px;
  }

  .testimonial-cards {
    flex-wrap: wrap;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* SECTION */
.experts {
  padding: 80px 6%;
}

/* TOP */
.experts-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.badge {
  font-size: 14px;
  color: #777;
}

.top-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 12px;
}

.top-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-top: 32px;
}

/* GRID */
.experts-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

/* FEATURED CARD */
.featured-card {
  background: #eaf1fb;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-card h3 {
  font-size: 20px;
  font-weight: 500;
}

.specialties {
  margin-top: 40px;
}

.specialties strong {
  font-size: 14px;
}

.specialties p {
  font-size: 14px;
  color: #444;
  margin-top: 6px;
}

/* EXPERT CARDS */
.experts-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expert-card {
  background: #f5f7fb;
  border-radius: 20px;
  overflow: hidden;
}

.expert-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.expert-info {
  padding: 16px;
}

.expert-info h4 {
  font-size: 15px;
  font-weight: 500;
}

.expert-info span {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media(max-width:1000px) {
  .experts-top {
    grid-template-columns: 1fr;
  }

  .top-right p {
    margin-top: 10px;
  }

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

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


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* SECTION */
.how-it-works {
  padding: 80px 6%;
}

/* TOP */
.hiw-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.badge {
  font-size: 14px;
  color: #777;
}

.hiw-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 12px;
}

.hiw-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-top: 32px;
}

/* CARDS */
.hiw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hiw-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
}

/* TEXT */
.step-desc {
  font-size: 14px;
  color: #666;
}

/* ICON */
.icon {
  font-size: 44px;
  color: #999;
  text-align: center;
}

/* TITLE */
.hiw-card h3 {
  font-size: 20px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width:1000px) {
  .hiw-top {
    grid-template-columns: 1fr;
  }

  .hiw-right p {
    margin-top: 10px;
  }

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

  .hiw-card {
    height: auto;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* SECTION */
/* SECTION */
/* SECTION */
.cta-section {
  padding: 80px 6%;
}

/* BOX */
.cta-box {
  background: #dfe9f6;
  border-radius: 20px;
  padding: 70px 20px;
  text-align: center;
}

/* TITLE */
.cta-box h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* TEXT */
.cta-box p {
  font-size: 14px;
  color: #555;
  max-width: 520px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #111;
  color: #fff;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn i {
  font-size: 13px;
}

.cta-btn:hover {
  background: #000;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .cta-box h2 {
    font-size: 26px;
  }
}


/* =========================
   MAIN FOOTER
========================= */
.main-footer {
  padding: 80px 2%;
}

.footer-wrapper {
  background: #ffffff;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 0;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* Soft shadow */
}

/* TOP CONTENT */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* Space out left icons, center text, right icons */
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ICONS */
.footer-icons {
  display: flex;
  gap: 14px;
}

.footer-icons a {
  width: 44px;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-icons a:hover {
  background: #f5f5f5;
  border-color: #333;
}

/* CENTER CONTENT */
.footer-content {
  text-align: center;
  margin-top: -10px;
  /* Slight visual adjustment */
}

.footer-content h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
  /* Regular weight */
  color: #111;
  margin-bottom: 30px;
}

.footer-btn-pill {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.footer-btn-pill:hover {
  background: #333;
  transform: translateY(-2px);
}

/* FOOTER TEXT (menta) */
.footer-text-large {
  font-family: "Times New Roman", Times, serif;
  /* Classic serif */
  font-size: 22vw;
  /* Responsive massive size */
  line-height: 0.75;
  color: #dfe7f2;
  /* Light blueish grey */
  text-align: center;
  position: relative;
  bottom: -4%;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  letter-spacing: -2vw;
  /* Tight tracking */
}

/* STAR IMAGE */
.star-img {
  position: absolute;
  top: 15%;
  /* Adjust relative to text */
  right: 18%;
  width: 8vw;
  /* Responsive size */
  height: 8vw;
  z-index: 3;
}

.star-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .main-footer {
    padding: 60px 4%;
  }

  .footer-wrapper {
    padding: 60px 20px 0;
    min-height: auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-icons.left,
  .footer-icons.right {
    order: 2;
  }

  .footer-content {
    order: 1;
  }

  .footer-text-large {
    font-size: 35vw;
    /* Bigger relative on mobile */
    letter-spacing: -10px;
  }

  .star-img {
    width: 60px;
    height: 60px;
    top: -20px;
    right: 10%;
  }
}