/* ========================================
   Design Tokens
   ======================================== */
:root {
  --color-primary: #1c3d76;
  --color-teal: #88c4bc;
  --color-green: #4a9b8e;
  --color-green-teal: #4e9d97;
  --color-yellow-green: #dce38b;
  --color-heading: #101828;
  --color-body: #4a5565;
  --color-secondary: #475569;
  --color-muted: #64748b;
  --color-dark: #0f172a;
  --color-bg-tint: rgba(28, 61, 118, 0.08);
  --color-bg-light: #f8fafc;
  --color-footer-bg: #0f172b;
  --gradient-btn: linear-gradient(91deg, #88c4bc 15%, #1c3d76 94%);
  --gradient-teal: linear-gradient(165deg, #88c4bc 10%, #4e9d97 42%);
  --max-width: 986px;
  --font: 'Inter', sans-serif;
  --radius-card: 16px;
  --radius-pill: 9999px;
  --radius-faq: 32px;
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container padding for small screens */
@media (max-width: 768px) {
  .header__container,
  .system__container,
  .trust__container,
  .how__container,
  .why__container,
  .results__container,
  .hboard__container,
  .impl__container,
  .faq__container,
  .cta__container,
  .footer__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .why,
  .skleo,
  .fitness,
  .process,
  .modular {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 218px;
  height: 24px;
}

/* Navigation */
.header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--color-body);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: var(--color-heading);
}

/* Actions (language + CTA) */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__lang {
  position: relative;
  font-size: 14px;
  color: var(--color-body);
  cursor: pointer;
}

.header__lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.header__lang-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header__lang-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-body);
}

.header__lang-icon {
  width: 8px;
  height: 5px;
  transition: transform 0.2s;
}

.header__lang.open .header__lang-icon {
  transform: rotate(180deg);
}

.header__lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
}

.header__lang.open .header__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.header__lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.header__lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

.header__lang-option:hover {
  background: rgba(28, 61, 118, 0.05);
  color: var(--color-primary);
}

.header__lang-option.active {
  color: var(--color-primary);
  font-weight: 600;
}

.header__lang-check {
  width: 16px;
  height: 16px;
  opacity: 0;
  margin-left: auto;
}

.header__lang-option.active .header__lang-check {
  opacity: 1;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.header__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.header__cta .fa-arrow-right {
  font-size: 14px;
}

/* Nav actions (only visible in mobile menu) */
.header__nav-actions {
  display: none;
}

/* Burger (hidden on desktop) */
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header responsive */
@media (max-width: 1100px) {
  .header {
    height: 72px;
  }

  .header__logo img {
    width: 160px;
    height: auto;
  }

  .header__lang {
    order: 2;
    margin-left: auto;
  }

  .header__burger {
    display: flex;
    order: 3;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav-link {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid #e5e7eb;
  }

  .header__nav-link:last-child {
    border-bottom: 1px solid #e5e7eb;
  }

  .header__actions {
    display: none;
  }

  .header__nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
  }

  .header__nav-actions .header__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  background: var(--color-bg-tint);
  padding: 130px 0 100px;
  overflow: hidden;
  min-height: 684px;
}

/* Background image — right 65% of the section */
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 35%;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg img {
  position: absolute;
  top: -11.3%;
  left: 0;
  width: 100%;
  height: 122.6%;
  object-fit: cover;
  max-width: none;
}

/* Content wrapper */
.hero__container {
  position: relative;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: flex-end;
  gap: 0;
}

/* ---- Left Column ---- */
.hero__left {
  flex: 0 0 54%;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Tagline */
.hero__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 20px;
}

.hero__tagline .accent {
  color: var(--color-green);
}

.hero__tagline .normal {
  color: var(--color-body);
}

/* Heading */
.hero__heading {
  font-size: 55px;
  font-weight: 800;
  line-height: 60.5px;
  color: var(--color-heading);
}

/* Subtitle */
.hero__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-body);
  max-width: 473px;
  width: 100%;
}

/* CTA Button */
.hero__cta-wrap {
  padding-top: 8px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.hero__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero__cta .fa-arrow-right {
  font-size: 14px;
}

/* Partner Banner Bar */
.hero__banner {
  background: rgba(28, 61, 118, 0.7);
  min-height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.hero__banner-inner {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 10px;
}

.hero__banner-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__banner-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
  letter-spacing: -0.15px;
}

.hero__banner-line {
  display: block;
}

.hero__banner-logo {
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero__banner-logo--sweetwater {
  max-width: 211px;
  width: auto;
  max-height: 24px;
}

.hero__banner-logo--barmer {
  width: 69px;
  height: 39px;
}

.hero__banner-logo--adidas {
  width: 41px;
  max-height: 23px;
}

.hero__banner-logo--skleo {
  width: 55px;
  max-height: 17px;
}

.hero__banner-logo--fn {
  width: 115px;
  max-height: 22px;
}

/* ---- Right Column ---- */
.hero__right {
  flex: 1 0 0;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

/* Glass Card */
.hero__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 260px;
  width: 100%;
  padding: 15px 19px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-card);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.hero__card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero__card-label {
  font-size: 14px;
  font-weight: 800;
  line-height: 21px;
  color: var(--color-dark);
  white-space: nowrap;
}

.hero__card-sublabel {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-muted);
  white-space: nowrap;
}

.hero__card-plus {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
  .hero {
    padding: 110px 0 90px;
  }

  .hero__heading {
    font-size: 44px;
    line-height: 50px;
  }
}

@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .hero__right {
    align-self: flex-end;
  }

  .hero__bg {
    left: 45%;
    opacity: 0.6;
  }
}

@media (max-width: 1100px) {
  .hero {
    padding-bottom: 0;
    min-height: auto;
  }

  .hero__banner {
    position: relative;
    margin-top: 50px;
  }

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

@media (max-width: 768px) {

  .hero__heading {
    font-size: 36px;
    line-height: 42px;
  }

  .hero__bg {
    left: 30%;
    opacity: 0.3;
  }

  .hero__banner-group {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .hero__cards {
    align-items: flex-start;
  }

  .hero__card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 90px;
  }

  .hero__content {
    text-align: center;
    align-items: center;
  }

  .hero__heading {
    font-size: 28px;
    line-height: 34px;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__banner-text {
    font-size: 12px;
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero__banner-line {
    display: inline;
  }


  .hero__right {
    align-self: center;
    width: 100%;
  }

  .hero__cards {
    align-items: center;
  }
}

/* ========================================
   SYSTEM CARDS SECTION
   ======================================== */
.system {
  padding: 80px 0 69px;
}

.system__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Section Heading */
.system__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
  text-align: center;
}

/* Sub-heading between rows */
.system__subheading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
  text-align: center;
  margin-top: 16px;
}

.system__subtext {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  text-align: center;
  max-width: 724px;
  letter-spacing: -0.44px;
}

/* Card Row */
.system__row {
  display: flex;
  gap: 0;
  width: 100%;
}

/* Card */
.system__card {
  flex: 1;
  margin: 24px 12px 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

/* Card color variants */
.system__card--blue {
  background: rgba(28, 61, 118, 0.08);
}

.system__card--teal {
  background: rgba(136, 196, 188, 0.07);
}

.system__card--green {
  background: rgba(78, 157, 151, 0.14);
}

.system__card--yellow {
  background: rgba(220, 227, 139, 0.2);
}

/* Card Image */
.system__card-img {
  height: 192px;
  overflow: hidden;
}

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

/* Card Body */
.system__card-body {
  padding: 32px 18px 32px 32px;
  position: relative;
  padding-top: 46px;
}

/* Icon Circle — overlaps image */
.system__card-icon {
  position: absolute;
  top: -26px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.system__card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.system__card-icon--primary {
  background: var(--color-primary);
}

.system__card-icon--teal {
  background: var(--color-teal);
}

.system__card-icon--green-teal {
  background: var(--color-green-teal);
}

.system__card-icon--yellow {
  background: var(--color-yellow-green);
}

/* Card Title */
.system__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  color: var(--color-heading);
  margin-bottom: 8px;
}

/* Card Subtitle */
.system__card-subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  color: #000;
  margin-bottom: 8px;
}

/* Card Text */
.system__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  color: #000;
  margin-bottom: 16px;
}

/* Card List */
.system__card-list {
  list-style: disc;
  padding-left: 21px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
}

.system__card-list li {
  margin-bottom: 2px;
}

.system__card-list--primary {
  color: var(--color-primary);
}

.system__card-list--green {
  color: var(--color-green);
}

/* System Cards Responsive */
@media (max-width: 1024px) {
  .system {
    padding: 60px 0 50px;
  }

  .system__heading,
  .system__subheading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .system {
    padding: 48px 0 40px;
  }

  .system__row {
    flex-direction: column;
  }

  .system__card {
    margin: 12px 0 0;
  }

  .system__heading,
  .system__subheading {
    font-size: 26px;
    line-height: 34px;
  }

  .system__subtext {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .system__heading,
  .system__subheading {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ========================================
   TRUST STRIP SECTION
   ======================================== */
.trust {
  position: relative;
  padding: 80px 0;
  min-height: 705px;
  overflow: hidden;
}

/* Background + overlay */
.trust__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.trust__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 61, 118, 0.48);
}

/* Container */
.trust__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Heading */
.trust__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: #fff;
  text-align: center;
}

/* 4 Icon items row */
.trust__icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 16px 0;
}

.trust__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 140px;
}

.trust__icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 80, 0.9)) drop-shadow(5px 5px 3px rgba(0, 0, 80, 0.5));
}

.trust__icon-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.trust__icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: auto;
}

.trust__icon-label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18.2px;
  color: #fff;
  text-align: center;
}

/* Divider */
.trust__divider {
  width: 1826px;
  max-width: 95vw;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.3) 44.5%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0.3) 56%,
    rgba(255,255,255,0) 100%
  );
}

/* Logo row */
.trust__logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust__logo-svg {
  height: 48px;
  width: auto;
  max-width: 100%;
}

.trust__logo-suffix {
  font-size: 36px;
  font-weight: 800;
  line-height: 45.8px;
  color: #fff;
}

.trust__wirkung {
  font-size: 23px;
  font-weight: 300;
  line-height: 45.8px;
  color: #fff;
  text-align: center;
  margin-top: -12px;
}

/* Tags / Pills */
.trust__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

.trust__tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trust__tag span {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
  white-space: nowrap;
}

/* Bottom text */
.trust__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust__bottom-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.trust__bottom-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0) 100%
  );
}

/* Trust Strip Responsive */
@media (max-width: 1024px) {
  .trust {
    padding: 60px 0;
  }

  .trust__heading {
    font-size: 30px;
    line-height: 38px;
  }

  .trust__logo-suffix {
    font-size: 28px;
  }

  .trust__icons {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .trust {
    padding: 48px 0;
    min-height: auto;
  }

  .trust__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .trust__icons {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust__icon-item {
    width: calc(50% - 12px);
    max-width: none;
  }

  .trust__logo-row {
    flex-direction: column;
    gap: 4px;
  }

  .trust__logo-suffix {
    font-size: 22px;
  }

  .trust__wirkung {
    font-size: 18px;
    line-height: 28px;
  }

  .trust__tags {
    gap: 8px;
  }

  .trust__tag {
    padding: 7px 14px;
  }

  .trust__tag span {
    font-size: 12px;
    white-space: normal;
  }

  .trust__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .trust__bottom-divider {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.8) 50%,
      rgba(255,255,255,0) 100%
    );
  }
}

@media (max-width: 480px) {
  .trust__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .trust__icon-wrap {
    width: 54px;
    height: 54px;
  }

  .trust__icon-img {
    width: 54px;
    height: 54px;
  }

  .trust__icon-inner {
    width: 24px;
  }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how {
  padding: 80px 0;
  background: var(--color-bg-tint);
}

.how__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Header */
.how__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.how__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--color-green-teal);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.how__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
}

.how__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
}

/* 3 Step Cards */
.how__steps {
  display: flex;
  gap: 0;
  width: 100%;
}

.how__step {
  flex: 1;
  margin: 24px 12px 0;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how__step-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how__step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.how__step-meta {
  display: flex;
  flex-direction: column;
}

.how__step-num {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-secondary);
  letter-spacing: -0.31px;
}

.how__step-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--color-heading);
  letter-spacing: -0.31px;
}

.how__step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.75);
  letter-spacing: -0.31px;
}

/* Process Image */
.how__image {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.how__image img {
  width: 100%;
  display: block;
}

/* Re-Checks Bar */
.how__rechecks {
  width: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14.8px;
}

.how__rechecks-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}

.how__rechecks-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: rgba(255, 255, 255, 0.9);
}

/* How It Works Responsive */
@media (max-width: 1024px) {
  .how {
    padding: 60px 0;
  }

  .how__heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .how {
    padding: 48px 0;
  }

  .how__steps {
    flex-direction: column;
  }

  .how__step {
    margin: 12px 0 0;
  }

  .how__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .how__subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .how__rechecks-text {
    font-size: 14px;
    line-height: 22px;
  }

  .how__rechecks-text br {
    display: none;
  }
}

@media (max-width: 480px) {
  .how__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .how__step {
    padding: 24px 20px;
  }

  .how__rechecks {
    padding: 24px;
  }
}

/* ========================================
   WHY SECTION
   ======================================== */
.why {
  padding: 80px 0;
}

.why__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Left: Text */
.why__text {
  flex: 0 0 50%;
  padding: 48px 0px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--color-green-teal);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.why__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
}

.why__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
}

/* Right: Image */
.why__image {
  flex: 1;
  padding: 48px 24px 0;
}

.why__image img {
  width: 100%;
  height: 439px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
}

/* Why Section Responsive */
@media (max-width: 1024px) {
  .why {
    padding: 60px 0;
  }

  .why__heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .why {
    padding: 48px 0;
  }

  .why__container {
    flex-direction: column;
    gap: 24px;
  }

  .why__text {
    padding: 0;
  }

  .why__image {
    padding: 0;
  }

  .why__image img {
    height: 300px;
  }

  .why__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .why__desc {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .why__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .why__image img {
    height: 220px;
  }
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results {
  padding: 80px 0;
  background: var(--color-bg-tint);
}

.results__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Header */
.results__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.results__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--color-green-teal);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.results__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
}

.results__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
  max-width: 600px;
}

/* Team Image */
.results__image {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.results__image img {
  width: 100%;
  aspect-ratio: 926 / 231.5;
  object-fit: cover;
  display: block;
}

/* 3 Result Cards */
.results__cards {
  display: flex;
  gap: 0;
  width: 100%;
}

.results__card {
  flex: 1;
  margin: 24px 12px 0;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 32px 19px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.results__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.results__card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.results__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-heading);
  letter-spacing: -0.45px;
}

.results__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(33, 37, 41, 0.75);
}

/* Results Responsive */
@media (max-width: 1024px) {
  .results {
    padding: 60px 0;
  }

  .results__heading {
    font-size: 30px;
    line-height: 38px;
  }

  .results__cards {
    flex-direction: column;
  }

  .results__card {
    margin: 12px 0 0;
  }
}

@media (max-width: 768px) {
  .results {
    padding: 48px 0;
  }

  .results__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .results__image img {
    aspect-ratio: auto;
    height: 200px;
  }

  .results__subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .results__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .results__card {
    padding: 24px 20px;
  }

  .results__card-title {
    font-size: 18px;
    line-height: 24px;
  }
}

/* ========================================
   HEALTH BOARD SECTION
   ======================================== */
.hboard {
  padding: 80px 0;
  background: linear-gradient(165deg, #88c4bc 10%, #4e9d97 42%);
}

.hboard__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Header */
.hboard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0;
}

.hboard__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: #fff;
}

.hboard__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.44px;
  max-width: 576px;
}

/* Dashboard Image */
.hboard__dashboard {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 2px;
}

.hboard__dashboard img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* 4 Feature Cards */
.hboard__features {
  display: flex;
  gap: 0;
  width: 100%;
}

.hboard__feature {
  flex: 1;
  margin: 24px 12px 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 25px 21px 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hboard__feature-icon {
  width: 32px;
  height: 32px;
}

.hboard__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hboard__feature-text strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
  color: #fff;
}

.hboard__feature-text span {
  font-size: 13px;
  font-weight: 400;
  line-height: 19.2px;
  color: #fff;
}

/* Health Board Responsive */
@media (max-width: 1024px) {
  .hboard {
    padding: 60px 0;
  }

  .hboard__header {
    padding: 0;
  }

  .hboard__heading {
    font-size: 30px;
    line-height: 38px;
  }

  .hboard__features {
    flex-wrap: wrap;
  }

  .hboard__feature {
    flex: 1 1 calc(50% - 24px);
    margin: 12px;
  }
}

@media (max-width: 768px) {
  .hboard {
    padding: 48px 0;
  }

  .hboard__heading {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 480px) {
  .hboard__feature {
    flex: 1 1 100%;
    margin: 8px 0;
  }
}

/* ========================================
   IMPLEMENTATION SECTION
   ======================================== */
.impl {
  padding: 93px 0 80px;
  background: var(--color-bg-tint);
}

.impl__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Header */
.impl__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.impl__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--color-green-teal);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.impl__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
}

.impl__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
  max-width: 888px;
}

.impl__subtitle strong {
  font-weight: 700;
}

/* Two Cards Row */
.impl__row {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

/* Left: Photo */
.impl__photo {
  width: 50%;
  display: flex;
}

.impl__photo img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
}

/* Right: Gradient Card */
.impl__card {
  width: 50%;
  background: linear-gradient(131deg, #d52375 26%, #089edb 80%);
  border-radius: var(--radius-card);
  box-shadow: 10px 5px 25px rgba(0, 0, 0, 0.2);
  padding: 35px 48px 23px;
  display: flex;
  flex-direction: column;
}

.impl__card-logo {
  height: 36px;
  width: auto;
  margin-bottom: 24px;
  object-fit: contain;
  align-self: flex-start;
}

.impl__card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 28.8px;
  color: #fff;
  margin-bottom: 16px;
}

/* Checklist Items */
.impl__card-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.impl__card-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.impl__card-item div {
  display: flex;
  flex-direction: column;
  line-height: 24px;
}

.impl__card-item strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.impl__card-item span {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

/* Implementation Responsive */
@media (max-width: 1024px) {
  .impl {
    padding: 60px 0;
  }

  .impl__heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .impl {
    padding: 48px 0;
  }

  .impl__row {
    flex-direction: column;
  }

  .impl__photo {
    padding: 0;
  }

  .impl__photo {
    width: 100%;
  }

  .impl__photo img {
    height: 280px;
  }

  .impl__card {
    width: 100%;
    margin: 12px 0 0;
    padding: 32px 24px;
  }

  .impl__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .impl__subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ========================================
   WHY SECTION
   ======================================== */
.why {
  padding: 80px 0;
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/why-bg.webp') no-repeat center center;
  background-size: 100% 117%;
  background-position: bottom;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.why__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-primary);
  background: rgba(28, 61, 118, 0.1);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  margin-bottom: 16px;
}

.why__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 48px;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 16px;
}

.why__cards {
  display: flex;
  gap: 32px;
  width: 100%;
  margin-top: 16px;
}

.why__card {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-card);
  padding: 32px 24px 32px 32px;
  display: flex;
  flex-direction: column;
}

.why__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5ba89d 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why__card-icon img {
  width: 28px;
  height: 28px;
}

.why__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-heading);
  margin-bottom: 16px;
  max-width: 241px;
}

.why__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-body);
}

.why__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 48px;
}

.why__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Why Responsive */
@media (max-width: 1024px) {
  .why__heading {
    font-size: 30px;
    line-height: 38px;
  }

  .why__cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why__cards {
    flex-direction: column;
  }

  .why__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .why__cta {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .why__heading {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ========================================
   SKLEO SECTION
   ======================================== */
.skleo {
  padding: 80px 0 160px;
}

.skleo__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Block */
.skleo__hero {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.skleo__hero-left {
  flex: 0 0 52%;
  padding: 48px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skleo__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-primary);
  background: rgba(28, 61, 118, 0.1);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}

.skleo__hero-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
}

.skleo__hero-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
}

.skleo__hero-right {
  flex: 0 0 47%;
  padding: 48px 15px 0 21px;
}

.skleo__hero-img {
  width: 100%;
  height: 398px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
}

/* Feature Cards Grid */
.skleo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: var(--max-width);
  margin-top: 48px;
  position: relative;
}

.skleo__grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -17%);
  width: 100%;
  height: 115%;
  background: radial-gradient(ellipse at center, rgba(28, 61, 118, 0.8) 0%, rgba(28, 61, 118, 0.25) 50%, rgba(28, 61, 118, 0.2) 100%);
  filter: blur(64px);
  opacity: 0.6;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.skleo__grid .skleo__card:last-child {
  grid-column: 2;
}

.skleo__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-card);
  padding: 24px 10px 24px 24px;
}

.skleo__card-icon {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.skleo__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.skleo__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: var(--color-body);
}

.skleo__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 48px;
}

.skleo__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Skleo Responsive */
@media (max-width: 1024px) {
  .skleo__hero-heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .skleo__hero {
    flex-direction: column;
    align-items: center;
  }

  .skleo__hero-left {
    flex: none;
    padding: 0;
  }

  .skleo__hero-right {
    flex: none;
    padding: 24px 0 0;
  }

  .skleo__hero-img {
    height: 300px;
  }

  .skleo__hero-heading {
    font-size: 26px;
    line-height: 34px;
  }

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

  .skleo__grid .skleo__card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .skleo__hero-heading {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ========================================
   FITNESS SECTION
   ======================================== */
.fitness {
  padding: 80px 0 140px;
  background: #88C4BC26;
  overflow: hidden;
}

.fitness__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Block (image left, text right) */
.fitness__hero {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.fitness__hero-left {
  flex: 0 0 50%;
  padding: 48px 24px 0 24px;
}

.fitness__hero-img {
  width: 100%;
  height: 439px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
  object-position: 103% center;
}

.fitness__hero-right {
  flex: 0 0 50%;
  padding: 48px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fitness__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #5ba89d;
  background: rgba(136, 196, 188, 0.3);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}

.fitness__hero-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: var(--color-heading);
}

.fitness__hero-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
}

/* Feature Cards Grid */
.fitness__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: var(--max-width);
  margin-top: 48px;
}

.fitness__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-card);
  padding: 24px 16px 24px 24px;
}

.fitness__card-icon {
  width: auto;
  height: 36px;
  object-fit: contain;
  margin-bottom: 16px;
}

.fitness__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.fitness__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: var(--color-body);
}

.fitness__card-device {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 2 / 4;
}

.fitness__device-img {
  width: 158%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.fitness__card--r2c1 { grid-column: 1; grid-row: 2; }
.fitness__card--r2c3 { grid-column: 3; grid-row: 2; }
.fitness__card--r3c1 { grid-column: 1; grid-row: 3; }
.fitness__card--r3c3 { grid-column: 3; grid-row: 3; }

/* CTAs */
.fitness__ctas {
  display: flex;
  gap: 16px;
  margin-top: 80px;
}

.fitness__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
}

.fitness__cta strong {
  font-weight: 900;
}

.fitness__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Fitness Responsive */
@media (max-width: 1024px) {
  .fitness__hero-heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .fitness__hero {
    flex-direction: column;
    align-items: center;
  }

  .fitness__hero-left,
  .fitness__hero-right {
    flex: none;
    padding: 0;
  }

  .fitness__hero-left {
    order: 2;
    padding-top: 24px;
  }

  .fitness__hero-right {
    order: 1;
  }

  .fitness__hero-img {
    height: 300px;
  }

  .fitness__hero-heading {
    font-size: 26px;
    line-height: 34px;
  }

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

  .fitness__card--r2c1 { grid-column: auto; grid-row: auto; }
  .fitness__card--r2c3 { grid-column: auto; grid-row: auto; }
  .fitness__card--r3c1 { grid-column: auto; grid-row: auto; }
  .fitness__card--r3c3 { grid-column: auto; grid-row: auto; }

  .fitness__card-device {
    grid-column: span 2;
    grid-row: auto;
  }

  .fitness__device-img {
    width: 100%;
  }

  .fitness__card-device {
    grid-row: auto;
  }

  .fitness__card-empty {
    display: none;
  }

  .fitness__ctas {
    flex-direction: column;
    align-items: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .fitness__hero-heading {
    font-size: 22px;
    line-height: 30px;
  }

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

  .fitness__card-device {
    grid-column: auto;
  }
}

/* ========================================
   PROCESS / SWEETWATER SECTION
   ======================================== */
.process {
  padding: 96px 0 120px;
  overflow: hidden;
}

.process__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #05aae1;
  background: rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  letter-spacing: -0.15px;
  margin-bottom: 24px;
}

.process__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 48px;
  color: var(--color-heading);
  letter-spacing: -0.13px;
  margin-bottom: 24px;
}

.process__heading-accent {
  color: #05aae1;
}

.process__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: #475569;
  letter-spacing: -0.45px;
  max-width: 672px;
  margin-bottom: 48px;
}

.process__subtitle-accent {
  font-weight: 600;
  color: #0ea5e9;
}

/* 4 Step Cards */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 896px;
  height: 384px;
  background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.1) 50%, rgba(14, 165, 233, 0.1) 100%);
  filter: blur(64px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.process__step {
  background: #F8FAFCB2;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-card);
  padding: 32px 12px 32px 32px;
  text-align: left;
  position: relative;
}

.process__step-badge {
  position: absolute;
  top: -16px;
  right: -8px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(127deg, #d52375 26%, #089edb 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.31px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process__step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.process__step-icon img {
  width: 32px;
  height: 32px;
}

.process__step-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-heading);
  letter-spacing: -0.45px;
  margin-bottom: 12px;
}

.process__step-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #475569;
  letter-spacing: -0.44px;
}

.process__step-line {
  position: absolute;
  z-index: -1;
  top: 64px;
  left: -26px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.5) 0%, rgba(6, 182, 212, 0.5) 50%, rgba(14, 165, 233, 0.5) 100%);
}

.process__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 48px;
}

.process__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Process Responsive */
@media (max-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__step-line {
    display: none;
  }

  .process__heading {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .process__steps {
    grid-template-columns: 1fr;
  }

  .process__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .process__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .process__heading {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ========================================
   MODULAR SECTION
   ======================================== */
.modular {
  padding: 104px 0 120px;
  background: rgba(28, 61, 118, 0.08);
}

.modular__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modular__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 48px;
  color: var(--color-heading);
  letter-spacing: -0.13px;
  margin-bottom: 24px;
}

.modular__heading-teal {
  color: var(--color-teal);
}

.modular__heading-cyan {
  color: #0ea5e9;
}

.modular__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: #475569;
  letter-spacing: -0.45px;
  max-width: 752px;
  margin-bottom: 48px;
}

/* Two Cards */
.modular__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.modular__card {
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
}

.modular__card-img {
  height: 166px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

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

.modular__card-img--1 {
  object-position: center 44%;
}

.modular__card-img--2 {
  object-position: center 52%;
}

.modular__card-body {
  padding: 33px 19px 33px 33px;
}

.modular__card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-heading);
  letter-spacing: 0.07px;
  margin-bottom: 12px;
}

.modular__card-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: #475569;
  letter-spacing: -0.44px;
  margin-bottom: 16px;
}

.modular__card-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modular__card-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #475569;
  letter-spacing: -0.15px;
  padding-left: 14px;
  position: relative;
}

.modular__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.modular__card-list--navy li::before {
  background: var(--color-primary);
}

.modular__card-list--teal li::before {
  background: var(--color-teal);
}

.modular__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 48px;
}

.modular__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Modular Responsive */
@media (max-width: 768px) {
  .modular__cards {
    grid-template-columns: 1fr;
  }

  .modular__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .modular__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .modular__heading {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 100px 0 150px;
  background: #fff;
}

.faq__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
}

.faq__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 40px;
}

.faq__item {
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s;
}

.faq__item:hover {
  background: rgba(248, 250, 252, 0.9);
}

.faq__item.active {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq__question {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq__question span {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-heading);
  letter-spacing: -0.44px;
}

.faq__icon {
  width: 20px;
  height: 20px;
  color: #0EA5E9;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-content {
  padding: 0 32px 24px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body);
}

.faq__answer-content p {
  margin-bottom: 12px;
}

.faq__answer-content p:last-child {
  margin-bottom: 0;
}

.faq__answer-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq__answer-content li {
  margin-bottom: 8px;
}

.faq__image {
  margin-top: 100px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.faq__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom Motivational Block */
.faq__bottom {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.faq__bottom-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 48px;
  color: var(--color-heading);
  letter-spacing: -0.13px;
  max-width: 775px;
}

.faq__bottom-accent {
  color: var(--color-teal);
  display: block;
}

.faq__bottom-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  color: var(--color-secondary);
  letter-spacing: 0.07px;
  max-width: 668px;
}

.faq__bottom-cta-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-primary);
  letter-spacing: 0.07px;
}

.faq__bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(136, 196, 188, 0.5);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 8px;
}

.faq__bottom-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* FAQ Responsive */
@media (max-width: 1024px) {
  .faq {
    padding: 60px 0;
  }

  .faq__heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 0;
  }

  .faq__heading {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .faq__question {
    padding: 20px;
  }

  .faq__question span {
    font-size: 16px;
  }

  .faq__answer-content {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .faq__bottom-heading {
    font-size: 26px;
    line-height: 34px;
  }

  .faq__bottom-text {
    font-size: 18px;
    line-height: 28px;
  }

  .faq__bottom-cta-text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .faq__heading {
    font-size: 22px;
  }

  .faq__question span {
    font-size: 15px;
  }

  .faq__item {
    border-radius: 20px;
  }

  .faq__bottom-heading {
    font-size: 22px;
    line-height: 30px;
  }

  .faq__bottom-text {
    font-size: 16px;
    line-height: 26px;
  }

  .faq__bottom-cta-text {
    font-size: 16px;
  }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.cta {
  padding: 80px 0;
  background: rgba(136, 196, 188, 0.52);
}

.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 43.2px;
  color: #000;
}

.cta__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  color: var(--color-body);
  letter-spacing: -0.44px;
  margin-top: 16px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: var(--gradient-btn);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s, transform 0.2s;
}

.cta__btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 33px;
  background: rgba(74, 155, 142, 0.52);
  border: 1px solid var(--color-green-teal);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  transition: opacity 0.2s, transform 0.2s;
}

.cta__btn-secondary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.cta__note {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 24px;
}

/* CTA Responsive */
@media (max-width: 1024px) {
  .cta {
    padding: 60px 0;
  }

  .cta__heading {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 48px 0;
  }

  .cta__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .cta__subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .cta__btn-primary,
  .cta__btn-secondary {
    font-size: 16px;
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  .cta__buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .cta__btn-primary,
  .cta__btn-secondary {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-footer-bg);
  padding-top: 48px;
  text-align: center;
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__desc {
  font-size: 9px;
  font-weight: 400;
  line-height: 22.8px;
  color: #99a1af;
  max-width: 607px;
  letter-spacing: -0.15px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid #364153;
}

.footer__copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #99a1af;
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 28px;
  padding-left: 24px;
}

.footer__link {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #99a1af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__version {
  font-size: 11.2px;
  font-weight: 400;
  line-height: 16.8px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0;
  padding: 35px 5px 5px;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding-top: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__links {
    padding-left: 0;
  }

  .footer__version {
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .footer__links {
    gap: 20px;
  }
}
