/* Global CSS */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
  font-family: 'Figtree', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

/* CSS Variables */
:root {
  /* Colors */
  --color-cyan-14: #064034;
  --color-yellow-36: #8EB205;
  --color-grey-20: #333333;
  --color-grey-40: #666666;
  --color-white: #FDFDFD;
  --color-light-bg: #f8f8f8;
  
  /* Font Families */
  --meterbolic-figtree-regular-font-family: "Figtree", Helvetica;
  --meterbolic-figtree-bold-font-family: "Figtree-Bold", Helvetica;
  --meterbolic-arial-bold-font-family: "Arial-Bold", Helvetica;
  
  /* Font Sizes */
  --meterbolic-semantic-heading-1-font-size: 52px;
  --meterbolic-semantic-heading-2-font-size: 42px;
  --meterbolic-semantic-heading-3-font-size: 20px;
  --meterbolic-figtree-regular-font-size: 17px;
  --meterbolic-arial-bold-font-size: 16px;
  
  /* Font Weights */
  --meterbolic-semantic-heading-1-font-weight: 700;
  --meterbolic-semantic-heading-2-font-weight: 700;
  --meterbolic-semantic-heading-3-font-weight: 600;
  --meterbolic-figtree-regular-font-weight: 400;
  --meterbolic-arial-bold-font-weight: 700;
  
  /* Line Heights */
  --meterbolic-semantic-heading-1-line-height: 1.2;
  --meterbolic-semantic-heading-2-line-height: 1.3;
  --meterbolic-semantic-heading-3-line-height: 1.4;
  --meterbolic-figtree-regular-line-height: 1.7;
  --meterbolic-arial-bold-line-height: normal;
}

/* =========================
   Hero Section 
========================= */
.hero-default {
  display: flex;
  min-height: 700px;
  align-items: center;
  padding: 5% 60px;
  margin-top: 2%;
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
  overflow: hidden;
}

.hero-default .overlay {
  background-color: #0640344c;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-default .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}

.hero-default .container {
  position: relative;
  max-width: 1500px;
  width: 100%;
  z-index: 2;
  margin-top: 5%;
  margin-left: 4%;
}

.hero-default .heading {
  margin-bottom: 16px;
  font-size: 50px;
}

.hero-default .text-wrapper {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: var(--meterbolic-semantic-heading-1-font-weight);
  color: #ffffff;
  font-size: 50px;
  line-height: var(--meterbolic-semantic-heading-1-line-height);
  margin-bottom: 16px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}

.hero-default .div {
  max-width: 600px;
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: 500;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero-default .introducing-the-only-wrapper {
  margin-bottom: 36px;
  opacity: 0.95;
}

.hero-default .introducing-the-only {
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-weight: var(--meterbolic-figtree-regular-font-weight);
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-default .component {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #8eb205;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-default .component:hover {
  background-color: #7a9e04;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-default .component:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.hero-default .text {
  font-family: "Arial-Bold", Helvetica, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
}

/* Partners Section */
.section-partners {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 30px 0;
  background-color: var(--color-light-bg);
  flex-wrap: wrap;
}

.section-partners img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.section-partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Glucose Tracking Section */
.component-section {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 100px 90px;
  background-color: #fdfdfd;
}

.component-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.component-section .text {
  width: 50%;
}

.component-section .heading {
  margin-bottom: 40px;
}

.component-section .many-people-track {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: var(--meterbolic-semantic-heading-2-font-weight);
  color: #064034;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.component-section .insulin-resistance {
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-weight: var(--meterbolic-figtree-regular-font-weight);
  color: #333333;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.component-section .component {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #8eb205;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.component-section .component:hover {
  background-color: #7a9e04;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.component-section .text-wrapper {
  font-family: var(--meterbolic-arial-bold-font-family);
  font-weight: var(--meterbolic-arial-bold-font-weight);
  color: #fdfdfd;
  font-size: var(--meterbolic-arial-bold-font-size);
}

.component-section .image-container {
  width: 45%;
  text-align: center;
}

.component-section .image-container img {
  max-width: 100%;
  height: auto;
}

/* Journey Section */
.section-journey {
  width: 100%;
  padding: 100px 90px;
  background-color: #064034;
  position: relative;
  text-align: center;
}

.section-journey .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.1;
}

.section-journey .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-journey .heading-journey {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: var(--meterbolic-semantic-heading-2-font-weight);
  color: #fdfdfd;
  font-size: 40px;
  margin-bottom: 60px;
}

.section-journey .journey-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.section-journey .journey-card {
  flex: 1;
  background-color: #ffffff1a;
  border-radius: 12px;
  border-left: 4px solid #8eb205;
  padding: 35px 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.section-journey .journey-card:hover {
  transform: translateY(-5px);
}

.section-journey .journey-card img {
  width: 80px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.section-journey .journey-card h2 {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: var(--meterbolic-semantic-heading-3-font-weight);
  color: #8eb205;
  font-size: var(--meterbolic-semantic-heading-3-font-size);
  margin-bottom: 15px;
}

.section-journey .journey-card p {
  font-family: var(--meterbolic-figtree-regular-font-family);
  font-weight: var(--meterbolic-figtree-regular-font-weight);
  color: #ffffff;
  font-size: var(--meterbolic-figtree-regular-font-size);
  line-height: var(--meterbolic-figtree-regular-line-height);
  opacity: 0.9;
}

/* Reveal The Truth Section */
.section-reveal-the {
  width: 100%;
  padding: 100px 90px;
  background: #FDFDFD;
  display: flex;
  justify-content: center;
}

.section-reveal-the .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-reveal-the .content {
  width: 45%;
}

.section-reveal-the .metabolic-health {
  color: #8EB205;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
}

.section-reveal-the .reveal-the-truth {
  color: #064034;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.section-reveal-the .you-re-not-lazy-you {
  color: #333333;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.section-reveal-the .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.section-reveal-the .benefit-item {
  display: flex;
  align-items: center;
}

.section-reveal-the .checkmark {
  color: #8EB205;
  font-size: 20px;
  font-weight: 700;
  margin-right: 12px;
}

.section-reveal-the .benefit-text {
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
}

.section-reveal-the .image-container {
  width: 45%;
  text-align: center;
}

.section-reveal-the .image-container img {
  max-width: 100%;
  height: auto;
}

/* Health Meets Longevity Section */
.section-where-health {
  width: 100%;
  padding: 100px 90px;
  background: #064034;
  display: flex;
  justify-content: center;
}

.section-where-health .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-where-health .image-container {
  width: 40%;
  text-align: center;
}

.section-where-health .image-container img {
  max-width: 100%;
  height: auto;
}

.section-where-health .content {
  width: 55%;
}

.section-where-health .where-health-meets {
  color: white;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-where-health .unlock-the-secrets,
.section-where-health .discover-the-life {
  color: white;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

.section-where-health .button-health {
  display: inline-flex;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid #8EB205;
  color: #8EB205;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.section-where-health .button-health:hover {
  background-color: #8EB205;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Small Middle Section */
.section-small-middle {
  width: 100%;
  padding: 80px 90px;
  background: #FDFDFD;
  display: flex;
  justify-content: center;
}

.section-small-middle .container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.section-small-middle .component-2 {
  background: white;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 35px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.section-small-middle .component-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-small-middle .icon {
  width: 50px;
  height: 50px;
  background: #8EB205;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.section-small-middle .heading-3 {
  color: #064034;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-small-middle .description {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

/* Stay in Touch Section */
.section-stay-in {
  width: 100%;
  padding: 100px 90px;
  background: #064034;
  display: flex;
  justify-content: center;
}

.section-stay-in .frame-54 {
  max-width: 90%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-stay-in .frame-55 {
  width: 40%;
  text-align: center;
  background: transparent;
}

.section-stay-in .frame-55 img {
  max-width: 100%;
  height: auto;
}

.section-stay-in .frame-53 {
  width: 45%;
  margin-right: 5%;
}

.section-stay-in .heading-2-stay {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-stay-in .take-your-health {
  color: white;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

.section-stay-in .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-stay-in .input {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: white;
  font-size: 15px;
}

.section-stay-in .input::placeholder {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  font-size: 15px;
}

.section-stay-in .button-subscribe {
  padding: 14px 28px;
  background: #8EB205;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
}

.section-stay-in .button-subscribe:hover {
  background: #7a9e04;
}

/* Testimonials Section */
.section-testimonials {
  width: 100%;
  padding: 100px 90px;
  background: #FDFDFD;
  display: flex;
  justify-content: center;
}

.testimonials-container {
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.testimonials-heading {
  color: #064034;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  font-family: var(--meterbolic-figtree-bold-font-family);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #FDFDFD;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
  width: 96px;
  height: 26px;
  background-color: #f0f0f0;
  border-radius: 30px;
  margin-bottom: 30px;
}

.testimonial-quote {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--meterbolic-figtree-regular-font-family);
}

.testimonial-author {
  color: #064034;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--meterbolic-figtree-bold-font-family);
}

.testimonial-role {
  color: #666666;
  font-size: 14px;
  font-family: var(--meterbolic-figtree-regular-font-family);
}

/* =========================
   Start Your Journey Section - FIXED HEIGHT
============================= */
.section-journey-start {
  width: 100%;
  padding: 100px 90px;
  background: var(--color-light-bg);
  display: flex;
  justify-content: center;
}

.section-journey-start .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.heading-journey {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-weight: var(--meterbolic-semantic-heading-2-font-weight);
  color: var(--color-cyan-14);
  font-size: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  align-items: stretch;
}

.journey-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(142, 178, 5, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: auto;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.journey-card.featured {
  border: 2px solid #8EB205;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8EB205;
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.journey-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.journey-card-header h2 {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cyan-14);
  margin: 0;
}

.journey-price {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 32px;
  font-weight: 700;
  color: #8EB205;
}

.journey-subtitle {
  color: var(--color-grey-40);
  font-size: 18px;
  margin-bottom: 25px;
  font-style: italic;
}

.journey-features {
  margin-bottom: 25px;
}

.journey-features h3 {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-cyan-14);
  margin-bottom: 15px;
}

.journey-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-features li {
  color: var(--color-grey-20);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.journey-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8EB205;
  font-weight: 700;
}

.journey-why {
  color: var(--color-grey-20);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(142, 178, 5, 0.05);
  border-radius: 8px;
  border-left: 3px solid #8EB205;
}

.journey-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-cyan-14);
  color: var(--color-white);
  border-radius: 8px;
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.journey-button.primary {
  background: #8EB205;
}

.journey-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.journey-button.primary:hover {
  background: #7a9e04;
}

.journey-button:not(.primary):hover {
  background: #053028;
}

/* Feature Comparison Table */
.feature-comparison {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-comparison h3 {
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-cyan-14);
  text-align: center;
  margin-bottom: 30px;
}

.feature-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.feature-comparison th {
  background: var(--color-cyan-14);
  color: var(--color-white);
  padding: 15px 20px;
  text-align: left;
  font-family: var(--meterbolic-figtree-bold-font-family);
  font-size: 16px;
  font-weight: 600;
}

.feature-comparison th:first-child {
  border-radius: 8px 0 0 0;
}

.feature-comparison th:last-child {
  border-radius: 0 8px 0 0;
}

.feature-comparison td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-grey-20);
  font-size: 15px;
}

.feature-comparison tr:last-child td {
  border-bottom: none;
}

.feature-comparison tr:nth-child(even) {
  background: rgba(142, 178, 5, 0.03);
}

/* =========================
   RESPONSIVE MEDIA QUERIES
========================= */

/* Large Devices (1200px - 1299px) */
@media (max-width: 1299px) {
  .hero-default .container {
    margin-left: 2%;
  }
  
  .hero-default .text-wrapper {
    font-size: 46px;
  }
  
  .hero-default .div {
    font-size: 24px;
  }
  
  .component-section .many-people-track,
  .section-reveal-the .reveal-the-truth,
  .section-where-health .where-health-meets,
  .section-stay-in .heading-2-stay,
  .testimonials-heading {
    font-size: 38px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Medium Devices (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-default,
  .component-section,
  .section-journey,
  .section-reveal-the,
  .section-where-health,
  .section-small-middle,
  .section-stay-in,
  .section-testimonials,
  .section-journey-start {
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .hero-default .text-wrapper {
    font-size: 42px;
  }
  
  .hero-default .div {
    font-size: 22px;
  }
  
  .component-section .many-people-track,
  .section-reveal-the .reveal-the-truth,
  .section-where-health .where-health-meets,
  .section-stay-in .heading-2-stay,
  .testimonials-heading {
    font-size: 36px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-small-middle .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .section-journey .journey-cards {
    gap: 20px;
  }
  
  .section-journey .journey-card {
    padding: 30px 20px;
  }
}

/* Tablet Devices (768px - 991px) */
@media (max-width: 991px) {
  .hero-default,
  .component-section,
  .section-journey,
  .section-reveal-the,
  .section-where-health,
  .section-small-middle,
  .section-stay-in,
  .section-testimonials,
  .section-journey-start {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .hero-default {
    min-height: 600px;
    text-align: center;
  }
  
  .hero-default .container {
    margin-left: 0;
    margin-top: 10%;
  }
  
  .hero-default .text-wrapper {
    font-size: 38px;
  }
  
  .hero-default .div {
    font-size: 20px;
    margin: 0 auto 24px;
  }
  
  .hero-default .introducing-the-only {
    margin: 0 auto 36px;
  }
  
  .component-section .container,
  .section-reveal-the .container,
  .section-where-health .container {
    flex-direction: column;
    gap: 50px;
  }
  
  .component-section .text,
  .component-section .image-container,
  .section-reveal-the .content,
  .section-reveal-the .image-container,
  .section-where-health .image-container,
  .section-where-health .content {
    width: 100%;
    text-align: center;
  }
  
  .component-section .many-people-track,
  .section-reveal-the .reveal-the-truth,
  .section-where-health .where-health-meets,
  .section-stay-in .heading-2-stay,
  .testimonials-heading {
    font-size: 32px;
  }
  
  .section-journey .journey-cards {
    flex-direction: column;
    gap: 25px;
  }
  
  .section-journey .journey-card {
    padding: 25px 20px;
  }
  
  .section-reveal-the .benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .section-stay-in .frame-54 {
    flex-direction: column;
    gap: 50px;
  }
  
  .section-stay-in .frame-55,
  .section-stay-in .frame-53 {
    width: 100%;
    margin-right: 0;
  }
  
  .journey-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-comparison {
    padding: 30px 25px;
  }
  
  .section-partners {
    gap: 25px;
    padding: 25px 20px;
  }
  
  .section-partners img {
    max-width: 130px;
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  .hero-default,
  .component-section,
  .section-journey,
  .section-reveal-the,
  .section-where-health,
  .section-small-middle,
  .section-stay-in,
  .section-testimonials,
  .section-journey-start {
    padding: 60px 30px;
  }
  
  .hero-default {
    min-height: 500px;
    padding: 80px 30px;
  }
  
  .hero-default .text-wrapper {
    font-size: 32px;
    line-height: 1.1;
  }
  
  .hero-default .div {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .hero-default .introducing-the-only {
    font-size: 16px;
  }
  
  .component-section .many-people-track,
  .section-reveal-the .reveal-the-truth,
  .section-where-health .where-health-meets,
  .section-stay-in .heading-2-stay,
  .testimonials-heading,
  .heading-journey {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .component-section .insulin-resistance,
  .section-reveal-the .you-re-not-lazy-you,
  .section-where-health .unlock-the-secrets,
  .section-where-health .discover-the-life,
  .section-stay-in .take-your-health {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .section-small-middle .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-small-middle .component-2 {
    padding: 25px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .journey-card {
    padding: 30px 25px;
  }
  
  .journey-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .journey-card-header h2 {
    font-size: 24px;
  }
  
  .journey-price {
    font-size: 28px;
  }
  
  .section-journey .journey-card {
    padding: 25px 20px;
    min-height: 250px;
  }
  
  .section-journey .journey-card img {
    width: 60px;
    height: 75px;
  }
  
  .feature-comparison {
    padding: 20px;
    overflow-x: auto;
  }
  
  .feature-comparison table {
    min-width: 500px;
  }
  
  .feature-comparison h3 {
    font-size: 20px;
  }
  
  .section-partners {
    gap: 20px;
    padding: 20px 15px;
  }
  
  .section-partners img {
    max-width: 110px;
  }
}

/* Small Mobile Devices (375px - 575px) */
@media (max-width: 575px) {
  .hero-default,
  .component-section,
  .section-journey,
  .section-reveal-the,
  .section-where-health,
  .section-small-middle,
  .section-stay-in,
  .section-testimonials,
  .section-journey-start {
    padding: 50px 20px;
  }
  
  .hero-default {
    min-height: 450px;
    padding: 70px 20px;
  }
  
  .hero-default .text-wrapper {
    font-size: 28px;
  }
  
  .hero-default .div {
    font-size: 16px;
  }
  
  .hero-default .introducing-the-only {
    font-size: 15px;
  }
  
  .component-section .many-people-track,
  .section-reveal-the .reveal-the-truth,
  .section-where-health .where-health-meets,
  .section-stay-in .heading-2-stay,
  .testimonials-heading,
  .heading-journey {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .component-section .insulin-resistance,
  .section-reveal-the .you-re-not-lazy-you,
  .section-where-health .unlock-the-secrets,
  .section-where-health .discover-the-life,
  .section-stay-in .take-your-health {
    font-size: 15px;
  }
  
  .section-partners {
    gap: 15px;
    padding: 15px 10px;
  }
  
  .section-partners img {
    max-width: 90px;
  }
  
  .section-journey .journey-card h2 {
    font-size: 18px;
  }
  
  .section-journey .journey-card p {
    font-size: 15px;
  }
  
  .section-stay-in .form {
    gap: 15px;
  }
  
  .section-stay-in .input {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .section-stay-in .button-subscribe {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .journey-button {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .feature-comparison table {
    min-width: 400px;
  }
}

/* Extra Small Mobile Devices (below 374px) */
@media (max-width: 374px) {
  .hero-default .text-wrapper {
    font-size: 24px;
  }
  
  .hero-default .div {
    font-size: 15px;
  }
  
  .component-section .many-people-track,
  .section-reveal-the .reveal-the-truth,
  .section-where-health .where-health-meets,
  .section-stay-in .heading-2-stay,
  .testimonials-heading,
  .heading-journey {
    font-size: 22px;
  }
  
  .section-partners img {
    max-width: 80px;
  }
  
  .section-small-middle .component-2 {
    padding: 20px 15px;
  }
  
  .testimonial-card {
    padding: 25px 15px;
  }
}