:root {
  --bg:    #07031A;
  --bg2:   #0D0825;
  --p1:    #7C4FFF;
  --p2:    #9D6FFF;
  --p3:    #C5AEFF;
  --pg:    #4A1FCC;
  --gold:  #C8A84B;
  --gold2: #E8C97A;
  --hi:    #F0ECFF;
  --mid:   #9B8EC4;
  --lo:    #4E476B;
  --green: #4ADE80;
  --blue:  #38BDF8;
  --bdr:   rgba(124,79,255,0.15);
  --bdrhi: rgba(124,79,255,0.35);
  --font:  'Zen Maru Gothic', sans-serif;
  --font2: 'Zen Maru Gothic', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); font-family: var(--font); color: var(--hi); overflow-x: hidden; }

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hi-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 30px 0 80px;
  overflow: hidden;
}

/* ── BG layers ── */
.hi-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Animated blobs */
.hi-hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .14;
  animation: heroBlob 16s ease-in-out infinite;
}
.hi-hero__blob--1 {
  width: 600px; height: 600px;
  background: var(--p1);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hi-hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -80px; right: 10%;
  opacity: .08;
  animation-delay: -5s;
}
.hi-hero__blob--3 {
  width: 280px; height: 280px;
  background: var(--gold);
  top: 30%; right: 5%;
  opacity: .07;
  animation-delay: -10s;
}
@keyframes heroBlob {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.1) translate(30px,-20px); }
}

/* Grid */
.hi-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 10%, transparent 100%);
}

/* Diagonal accent line */
.hi-hero__diag {
  position: absolute;
  width: 1px; height: 100%;
  top: 0; right: 42%;
  background: linear-gradient(to bottom, transparent 0%, rgba(124,79,255,.15) 30%, rgba(124,79,255,.15) 70%, transparent 100%);
  transform: rotate(8deg) translateX(50%);
}

/* ── Inner ── */
.hi-hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── LEFT: text ── */
.hi-hero__left { display: flex; flex-direction: column; gap: 28px; }

/* Breadcrumb */
.hi-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--mid);
}
.hi-hero__breadcrumb a { color: var(--mid); text-decoration: none; transition: color .2s; }
.hi-hero__breadcrumb a:hover { color: var(--p3); }
.hi-hero__breadcrumb i { font-size: 9px; color: var(--lo); }

/* Badge */
.hi-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.22);
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  color: var(--green); letter-spacing: .06em;
  width: fit-content;
  animation: fadein .6s ease both;
}
.hi-hero__badge i { font-size: 11px; }
.hi-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}

/* Heading */
.hi-hero__heading {
  font-family: var(--font2);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--hi);
  animation: fadein .7s .1s ease both;
}
.hi-hero__heading em {
  font-style: italic;
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 55%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hi-hero__heading .line-green {
  font-style: italic;
  background: linear-gradient(120deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub */
.hi-hero__sub {
  font-size: 16px; color: var(--mid);
  line-height: 1.8; max-width: 500px;
  animation: fadein .7s .2s ease both;
}
.hi-hero__sub strong { color: var(--hi); font-weight: 600; }

/* Trust chips */
.hi-hero__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  animation: fadein .7s .3s ease both;
}
.hi-hero__chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: rgba(13,8,37,.8);
  border: 1px solid var(--bdrhi);
  border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--mid);
}
.hi-hero__chip i { color: var(--p2); font-size: 11px; }
.hi-hero__chip.gold i { color: var(--gold2); }
.hi-hero__chip.green i { color: var(--green); }

/* CTA row */
.hi-hero__cta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadein .7s .4s ease both;
}

.hi-hero__btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  color: #fff; border: none; border-radius: 12px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer; letter-spacing: .03em;
  box-shadow: 0 8px 30px rgba(124,79,255,.45);
  transition: all .25s; position: relative; overflow: hidden;
}
.hi-hero__btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
}
.hi-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(124,79,255,.6);
}

.hi-hero__btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: transparent;
  border: 1px solid var(--bdrhi);
  color: var(--hi); border-radius: 12px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all .25s;
}
.hi-hero__btn-secondary:hover {
  background: rgba(124,79,255,.08);
  border-color: var(--p2);
  transform: translateY(-2px);
}

/* Social proof */
.hi-hero__proof {
  display: flex; align-items: center; gap: 14px;
  animation: fadein .7s .5s ease both;
}
.hi-hero__avatars {
  display: flex;
}
.hi-hero__av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--p1), var(--pg));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  margin-left: -10px;
}
.hi-hero__av:first-child { margin-left: 0; }
.hi-hero__av:nth-child(2) { background: linear-gradient(135deg, var(--gold), #a07820); }
.hi-hero__av:nth-child(3) { background: linear-gradient(135deg, #38BDF8, #1a6fa0); }
.hi-hero__av:nth-child(4) { background: linear-gradient(135deg, var(--green), #1a8040); }
.hi-hero__proof-txt { display: flex; flex-direction: column; gap: 2px; }
.hi-hero__proof-val { font-size: 14px; font-weight: 700; color: var(--hi); }
.hi-hero__proof-lbl { font-size: 11px; color: var(--mid); }

/* ── RIGHT: Visual card ── */
.hi-hero__right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadein .9s .2s ease both;
}

/* Main card */
.hi-hero__card {
  position: relative; z-index: 2;
  width: 100%; max-width: 460px;
  background: linear-gradient(145deg, rgba(13,8,37,.97), rgba(10,5,29,.99));
  border: 1px solid var(--bdrhi);
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
}
.hi-hero__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--p1) 30%, var(--green) 60%, transparent);
}
.hi-hero__card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: radial-gradient(ellipse at bottom center, rgba(74,222,128,.05), transparent 70%);
  pointer-events: none;
}

/* Card header */
.hi-hero__card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hi-hero__card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(74,222,128,.15), rgba(74,222,128,.05));
  border: 1px solid rgba(74,222,128,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--green);
  box-shadow: 0 4px 20px rgba(74,222,128,.15);
}
.hi-hero__card-title { font-size: 18px; font-weight: 700; color: var(--hi); }
.hi-hero__card-sub   { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* Coverage bar */
.hi-hero__coverage {
  background: rgba(124,79,255,.06);
  border: 1px solid rgba(124,79,255,.15);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.hi-hero__coverage-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.hi-hero__coverage-lbl { font-size: 12px; color: var(--mid); }
.hi-hero__coverage-val { font-size: 22px; font-weight: 700; color: var(--p3); }
.hi-hero__bar-track {
  height: 6px; border-radius: 3px;
  background: rgba(124,79,255,.15);
  overflow: hidden;
}
.hi-hero__bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--p1), var(--green));
  width: 0;
  animation: barFill 1.4s .8s ease forwards;
}
@keyframes barFill { to { width: 78%; } }

/* Feature rows */
.hi-hero__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hi-hero__feat-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(124,79,255,.1);
  border-radius: 10px;
  transition: border-color .25s, transform .2s;
}
.hi-hero__feat-row:hover { border-color: rgba(124,79,255,.3); transform: translateX(4px); }
.hi-hero__feat-ico {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.hi-hero__feat-ico.green  { background: rgba(74,222,128,.1);  color: var(--green); }
.hi-hero__feat-ico.purple { background: rgba(124,79,255,.15); color: var(--p2); }
.hi-hero__feat-ico.gold   { background: rgba(200,168,75,.12); color: var(--gold2); }
.hi-hero__feat-ico.blue   { background: rgba(56,189,248,.1);  color: var(--blue); }
.hi-hero__feat-name { font-size: 13px; font-weight: 600; color: var(--hi); }
.hi-hero__feat-desc { font-size: 11.5px; color: var(--mid); margin-top: 1px; }
.hi-hero__feat-check {
  margin-left: auto; color: var(--green); font-size: 13px;
}

/* Card CTA */
.hi-hero__card-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hi-hero__card-btn {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  color: #fff; border: none; border-radius: 10px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; letter-spacing: .03em;
  box-shadow: 0 4px 16px rgba(124,79,255,.35);
  transition: all .25s; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hi-hero__card-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
}
.hi-hero__card-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,79,255,.5); }

.hi-hero__card-outline {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--bdrhi);
  color: var(--p3); border-radius: 10px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; gap: 7px;
}
.hi-hero__card-outline:hover {
  background: rgba(124,79,255,.08);
  transform: translateY(-2px);
}

/* Floating badges */
.hi-hero__float {
  position: absolute;
  background: linear-gradient(135deg, rgba(13,8,37,.97), rgba(10,5,29,.99));
  border: 1px solid var(--bdrhi);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  font-family: var(--font);
  z-index: 3;
}
.hi-hero__float--tl {
  top: -20px; left: -30px;
  animation: floatBob 4s ease-in-out infinite;
}
.hi-hero__float--br {
  bottom: -20px; right: -24px;
  animation: floatBob 4s 2s ease-in-out infinite;
}
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hi-hero__float-ico {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.hi-hero__float-ico.green  { background: rgba(74,222,128,.15); color: var(--green); }
.hi-hero__float-ico.gold   { background: rgba(200,168,75,.15); color: var(--gold2); }
.hi-hero__float-val { font-size: 14px; font-weight: 700; color: var(--hi); }
.hi-hero__float-lbl { font-size: 10px; color: var(--lo); letter-spacing: .04em; }

/* Glow ring behind card */
.hi-hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.06) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* Scroll indicator */
.hi-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 5; cursor: pointer; text-decoration: none;
  animation: fadein 1s 1s ease both;
}
.hi-hero__scroll-txt { font-size: 10px; color: var(--lo); letter-spacing: .1em; text-transform: uppercase; }
.hi-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--lo), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}

/* Fade-in utility */
@keyframes fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hi-hero__inner {  gap: 50px; padding: 0 28px; }
  .hi-hero__right { justify-content: flex-start; }
  .hi-hero__card  { max-width: 100%; }
  .hi-hero__float--tl { top: -12px; left: -10px; }
  .hi-hero__float--br { bottom: -12px; right: -10px; }
}
@media (max-width: 640px) {
  .hi-hero { padding: 30px 0 70px; }
  .hi-hero__inner { padding: 0 20px; grid-template-columns: 1fr; }
  .hi-hero__float { display: none; }
  .hi-hero__card { padding: 24px 20px; }
  .hi-hero__cta-row { flex-direction: column; align-items: flex-start; }
  .hi-hero__btn-primary, .hi-hero__btn-secondary { width: 100%; justify-content: center; }
}



/* ................................................ section 1 ........................................ */
/* ══════════════════════════════
   HEALTH SECTION 1
══════════════════════════════ */
.health-section1{
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow: hidden;
}

.health-section1__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.health-section1__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}
.health-section1__blob--1{
  width: 340px;
  height: 340px;
  background: var(--p1);
  top: -60px;
  left: -60px;
}
.health-section1__blob--2{
  width: 260px;
  height: 260px;
  background: var(--green);
  bottom: -40px;
  right: 8%;
  opacity: .08;
}

.health-section1__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 90%);
}

.health-section1__inner{
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.health-section1__head{
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.health-section1__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(124,79,255,.1);
  border: 1px solid rgba(124,79,255,.22);
  color: var(--p3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.health-section1__badge i{
  color: var(--green);
  font-size: 12px;
}

.health-section1__title{
  font-family: var(--font2);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--hi);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.health-section1__title span{
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.health-section1__sub{
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 680px;
  margin: 0 auto;
}

.health-section1__gridcards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.health-section1__card{
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(13,8,37,.96), rgba(10,5,29,.98));
  border: 1px solid rgba(124,79,255,.18);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.health-section1__card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p1), var(--green), transparent);
  opacity: .9;
}

.health-section1__card:hover{
  transform: translateY(-8px);
  border-color: rgba(124,79,255,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.health-section1__icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}

.health-section1__icon.purple{
  background: rgba(124,79,255,.12);
  color: var(--p2);
  border-color: rgba(124,79,255,.22);
}
.health-section1__icon.gold{
  background: rgba(200,168,75,.12);
  color: var(--gold2);
  border-color: rgba(200,168,75,.22);
}
.health-section1__icon.green{
  background: rgba(74,222,128,.12);
  color: var(--green);
  border-color: rgba(74,222,128,.22);
}
.health-section1__icon.blue{
  background: rgba(56,189,248,.12);
  color: var(--blue);
  border-color: rgba(56,189,248,.22);
}

.health-section1__card-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--hi);
  margin-bottom: 10px;
  line-height: 1.3;
}

.health-section1__card-text{
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

/* Responsive */
@media (max-width: 1024px){
  .health-section1__inner{
    padding: 0 28px;
  }
  .health-section1__gridcards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .health-section1{
    padding: 80px 0;
  }
  .health-section1__inner{
    padding: 0 20px;
  }
  .health-section1__gridcards{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .health-section1__card{
    padding: 24px 20px;
  }
  .health-section1__title{
    font-size: 32px;
  }
}


/* ............................................. sectiuon 3 .......................................... */
/* ══════════════════════════════
   HEALTH SECTION 2
══════════════════════════════ */
.health-section2{
  position: relative;
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  overflow: hidden;
}

.health-section2__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.health-section2__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .1;
}
.health-section2__blob--1{
  width: 320px;
  height: 320px;
  background: var(--p1);
  top: 5%;
  right: -60px;
}
.health-section2__blob--2{
  width: 260px;
  height: 260px;
  background: var(--green);
  bottom: -40px;
  left: 5%;
  opacity: .08;
}

.health-section2__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 15%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 15%, transparent 85%);
}

.health-section2__inner{
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.health-section2__left{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.health-section2__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.health-section2__title{
  font-family: var(--font2);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--hi);
  letter-spacing: -.02em;
}

.health-section2__title span{
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 55%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.health-section2__sub{
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 560px;
}

.health-section2__points{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.health-section2__point{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(124,79,255,.12);
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.health-section2__point:hover{
  transform: translateX(6px);
  border-color: rgba(124,79,255,.28);
  background: rgba(124,79,255,.05);
}

.health-section2__point-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.health-section2__point-icon.green{
  background: rgba(74,222,128,.12);
  color: var(--green);
}
.health-section2__point-icon.purple{
  background: rgba(124,79,255,.15);
  color: var(--p2);
}
.health-section2__point-icon.gold{
  background: rgba(200,168,75,.12);
  color: var(--gold2);
}

.health-section2__point h4{
  font-size: 16px;
  color: var(--hi);
  margin-bottom: 4px;
  font-weight: 700;
}

.health-section2__point p{
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

.health-section2__right{
  display: flex;
  justify-content: center;
}

.health-section2__panel{
  width: 100%;
  max-width: 540px;
  background: linear-gradient(145deg, rgba(13,8,37,.97), rgba(10,5,29,.99));
  border: 1px solid var(--bdrhi);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.health-section2__panel::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--p1), transparent);
}

.health-section2__panel-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.health-section2__mini{
  display: inline-block;
  font-size: 11px;
  color: var(--lo);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.health-section2__panel-head h3{
  font-size: 24px;
  color: var(--hi);
  font-weight: 700;
}

.health-section2__status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 30px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.18);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.health-section2__status .dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,.65);
}

.health-section2__list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.health-section2__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(124,79,255,.1);
  transition: border-color .25s ease, transform .25s ease;
}

.health-section2__item:hover{
  border-color: rgba(124,79,255,.28);
  transform: translateY(-2px);
}

.health-section2__item-left{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.health-section2__item-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.health-section2__item-icon.green{
  background: rgba(74,222,128,.12);
  color: var(--green);
}
.health-section2__item-icon.purple{
  background: rgba(124,79,255,.15);
  color: var(--p2);
}
.health-section2__item-icon.gold{
  background: rgba(200,168,75,.12);
  color: var(--gold2);
}
.health-section2__item-icon.blue{
  background: rgba(56,189,248,.12);
  color: var(--blue);
}

.health-section2__item-title{
  font-size: 15px;
  font-weight: 700;
  color: var(--hi);
  margin-bottom: 4px;
}

.health-section2__item-text{
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--mid);
}

.health-section2__check{
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
}

.health-section2__panel-bottom{
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.health-section2__btn-primary{
  flex: 1;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(124,79,255,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.health-section2__btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124,79,255,.48);
}

.health-section2__btn-secondary{
  flex: 1;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--bdrhi);
  border-radius: 12px;
  color: var(--hi);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.health-section2__btn-secondary:hover{
  transform: translateY(-2px);
  background: rgba(124,79,255,.08);
  border-color: var(--p2);
}

@media (max-width: 1024px){
  .health-section2__inner{
    /* grid-template-columns: 1fr; */
    padding: 0 28px;
    gap: 36px;
  }
}

@media (max-width: 640px){
  .health-section2{
    padding: 30px 0;
  }

  .health-section2__inner{
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .health-section2__panel{
    padding: 22px 18px;
  }

  .health-section2__panel-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .health-section2__panel-bottom{
    flex-direction: column;
  }

  .health-section2__btn-primary,
  .health-section2__btn-secondary{
    width: 100%;
  }
}


/* ..................................... section 3 ......................................................... */
/* ══════════════════════════════
   HEALTH SECTION 3
══════════════════════════════ */
.health-section3{
  position: relative;
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow: hidden;
}

.health-section3__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.health-section3__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .1;
}
.health-section3__blob--1{
  width: 320px;
  height: 320px;
  background: var(--p1);
  top: -70px;
  left: -80px;
}
.health-section3__blob--2{
  width: 280px;
  height: 280px;
  background: var(--gold);
  bottom: -60px;
  right: 4%;
  opacity: .08;
}

.health-section3__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at center, black 18%, transparent 88%);
}

.health-section3__inner{
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.health-section3__head{
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.health-section3__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(124,79,255,.1);
  border: 1px solid rgba(124,79,255,.22);
  color: var(--p3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.health-section3__badge i{
  color: var(--gold2);
  font-size: 12px;
}

.health-section3__title{
  font-family: var(--font2);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--hi);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.health-section3__title span{
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.health-section3__sub{
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 680px;
  margin: 0 auto;
}

.health-section3__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.health-section3__card{
  position: relative;
  background: linear-gradient(145deg, rgba(13,8,37,.97), rgba(10,5,29,.99));
  border: 1px solid rgba(124,79,255,.16);
  border-radius: 24px;
  padding: 28px 24px;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}

.health-section3__card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p1), var(--green), transparent);
}

.health-section3__card:hover{
  transform: translateY(-8px);
  border-color: rgba(124,79,255,.34);
  box-shadow: 0 22px 42px rgba(0,0,0,.34);
}

.health-section3__card--featured{
  border-color: rgba(74,222,128,.26);
  box-shadow: 0 20px 40px rgba(74,222,128,.08);
}

.health-section3__card--featured::before{
  background: linear-gradient(90deg, transparent, var(--green), var(--gold2), transparent);
}

.health-section3__ribbon{
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 30px;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.health-section3__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 86px;
}

.health-section3__icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.health-section3__icon.purple{
  background: rgba(124,79,255,.14);
  color: var(--p2);
}
.health-section3__icon.green{
  background: rgba(74,222,128,.12);
  color: var(--green);
}
.health-section3__icon.gold{
  background: rgba(200,168,75,.12);
  color: var(--gold2);
}

.health-section3__tag{
  font-size: 11px;
  color: var(--lo);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: right;
}

.health-section3__card-title{
  font-size: 24px;
  font-weight: 700;
  color: var(--hi);
  margin-bottom: 10px;
}

.health-section3__card-text{
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}

.health-section3__pricebox{
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(124,79,255,.06);
  border: 1px solid rgba(124,79,255,.12);
  margin-bottom: 22px;
}

.health-section3__price-label{
  display: block;
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 6px;
}

.health-section3__price{
  font-size: 32px;
  font-weight: 700;
  color: var(--hi);
  line-height: 1;
}

.health-section3__price span{
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
  margin-left: 4px;
}

.health-section3__features{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.health-section3__feature{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}

.health-section3__feature i{
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.health-section3__btn{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(124,79,255,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.health-section3__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124,79,255,.48);
}

@media (max-width: 1024px){
  .health-section3__inner{
    padding: 0 28px;
  }

  .health-section3__cards{
    /* grid-template-columns: 1fr; */
    gap: 22px;
  }
}

@media (max-width: 640px){
  .health-section3{
    padding: 30px 0;
  }

  .health-section3__inner{
    padding: 0 20px;
  }

  .health-section3__card{
    padding: 24px 20px;
  }
  .health-section3__cards{
    padding: 24px 20px;
    grid-template-columns: 1fr;
  }

  .health-section3__top{
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .health-section3__tag{
    text-align: left;
  }
  
}

/* ............................................. section 4 .......................................... */
/* ══════════════════════════════
   HEALTH SECTION 4
══════════════════════════════ */
.health-section4{
  position: relative;
  padding: 20px 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  overflow: hidden;
}

.health-section4__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.health-section4__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .1;
}
.health-section4__blob--1{
  width: 320px;
  height: 320px;
  background: var(--p1);
  top: -70px;
  right: -60px;
}
.health-section4__blob--2{
  width: 280px;
  height: 280px;
  background: var(--green);
  bottom: -50px;
  left: 4%;
  opacity: .08;
}

.health-section4__grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at center, black 18%, transparent 88%);
}

.health-section4__inner{
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.health-section4__head{
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.health-section4__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.health-section4__badge i{
  font-size: 12px;
}

.health-section4__title{
  font-family: var(--font2);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--hi);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.health-section4__title span{
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.health-section4__sub{
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 680px;
  margin: 0 auto;
}

.health-section4__timeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.health-section4__line{
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,79,255,.15), rgba(74,222,128,.3), rgba(124,79,255,.15));
  z-index: 0;
}

.health-section4__step{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.health-section4__num{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(124,79,255,.32);
  margin-bottom: 20px;
  border: 4px solid var(--bg2);
}

.health-section4__card{
  width: 100%;
  background: linear-gradient(145deg, rgba(13,8,37,.97), rgba(10,5,29,.99));
  border: 1px solid rgba(124,79,255,.14);
  border-radius: 22px;
  padding: 24px 20px;
  min-height: 250px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  position: relative;
  overflow: hidden;
}

.health-section4__card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p1), var(--green), transparent);
}

.health-section4__card:hover{
  transform: translateY(-8px);
  border-color: rgba(124,79,255,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.34);
}

.health-section4__icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.health-section4__icon.purple{
  background: rgba(124,79,255,.14);
  color: var(--p2);
}
.health-section4__icon.green{
  background: rgba(74,222,128,.12);
  color: var(--green);
}
.health-section4__icon.gold{
  background: rgba(200,168,75,.12);
  color: var(--gold2);
}
.health-section4__icon.blue{
  background: rgba(56,189,248,.12);
  color: var(--blue);
}

.health-section4__card-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--hi);
  line-height: 1.3;
  margin-bottom: 10px;
}

.health-section4__card-text{
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

.health-section4__bottom{
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.health-section4__btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(124,79,255,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.health-section4__btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124,79,255,.48);
}

.health-section4__btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--bdrhi);
  color: var(--hi);
  font-size: 14px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.health-section4__btn-secondary:hover{
  transform: translateY(-2px);
  background: rgba(124,79,255,.08);
  border-color: var(--p2);
}

@media (max-width: 1024px){
  .health-section4__inner{
    padding: 0 28px;
  }

  .health-section4__timeline{
    grid-template-columns: repeat(2, 1fr);
  }

  .health-section4__line{
    display: none;
  }
}

@media (max-width: 640px){
  .health-section4{
    padding: 30px 0;
  }

  .health-section4__inner{
    padding: 0 20px;
  }

  .health-section4__timeline{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .health-section4__card{
    min-height: auto;
  }

  .health-section4__bottom{
    flex-direction: column;
    align-items: stretch;
  }

  .health-section4__btn-primary,
  .health-section4__btn-secondary{
    width: 100%;
    min-width: auto;
  }
}