/* ============================================================
   style.css – Page Specific Styles (Index)
   Aufbau:
   1) Hero Section
   2) Grids & Layout
   3) Feature Cards
   4) Responsive Anpassungen
   ============================================================ */

:root {
  --hero-gap: clamp(1.8rem, 1.5vw, 1.2rem);
  --brand: #C75300;
}

/* GLOBAL PAGE BACKGROUND FIX */
html, body {
  background: var(--bg-2) !important;
}



.egym-word {
  white-space: nowrap;
  display: inline-block;
}

/* ============================================================
   FCH — HERO SECTION (Dark, Apple-Clean)
   ============================================================ */

   /* Hero Basis */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Farbklecks eindeutig zugeordnet */
.hero-blob::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 37%;
  width: 500px;
  height: 500px;

  background: radial-gradient(
    circle at center,
    rgba(204, 168, 100, 0.35) 0%,
    rgba(184, 168, 100, 0.15) 40%,
    rgba(184, 168, 100, 0.05) 70%,
    rgba(184, 168, 100, 0) 100%
  );

  z-index: 0;
  pointer-events: none;
  transform: rotate(15deg);
}
.hero-blob::before {
  filter: blur(120px);
}

/* SECTION BASE */
.hero-section {
  background: var(--bg-2); /* gleiche Farbe wie Header */
  padding-top: 85px;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  text-align: center;
  width: 100%;
  position: relative;
  min-height: clamp(540px, 64vw, 900px);
}

/* MEDIA WRAPPER — Bild mit radius + offenen Seiten */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: clamp(88%, 94%, 96%);
  margin-inline: auto;
  margin-top: var(--hero-gap);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  border-radius: 30px;
  overflow: hidden;
  height: clamp(480px, 60vw, 820px);
}

/* HERO IMAGE */
.hero-media {
  position: relative;
  width: 54%;
  height: 88%;
  object-fit: cover;
  border-radius: 30px;
  margin-right: 0;
  
}


  .hero-content {
    position: absolute;
    top: 45%;
    left: clamp(2rem, 8vw, 12rem);
    transform: translateY(-50%);
    width: min(620px, 51%);
    text-align: left;
    padding-right: clamp(1rem, 4vw, 3rem);
    z-index: 2;
  }


/* TEXT CONTENT */
.hero-eyebrow {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: .5px;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink-1);
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.hero-subtitle {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* CTA GROUP */
.hero-cta-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* BUTTON BASE */
.hero-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: clamp(.9rem, 1vw, 1.1rem) clamp(2.2rem, 3vw, 2.8rem);
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: 500;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}

/* PRIMARY BUTTON */
.hero-btn.primary {
  background: var(--brand);
  color: #111;
}

.hero-btn.primary:hover {
  background: color-mix(in srgb, var(--brand) 90%, white);
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.hero-btn.secondary {
  border: 2px solid var(--ink-1);
  color: var(--ink-1);
  background: transparent;
}

.hero-btn.secondary:hover {
  background: var(--ink-1);
  color: #000;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS — FCH STANDARD
   ============================================================ */

@media (max-width: 480px) {

  /* Full Hero – Edge to Edge */
  .hero-media-wrapper {
    width: 100vw;
    height: 100svh;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
.hero-media-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 2;
    pointer-events: none;
  }

    .hero-content {
    position: absolute;
    top: 30%;
    left: 6%;
    transform: none;
    padding: 0;
    z-index: 5;
    width: 88%;
    text-align: left;
    left: 4%;
    width: 92%;
  }

  .hero-content h1,
  .hero-content .hero-title {
    
    line-height: 1.22;
    max-width: 88%;
  }

  .hero-subtitle {
    
    max-width: 88%;
    margin-bottom: 1rem;
  }



  .hero-cta-group {
    flex-direction: column;
    gap: 0.6rem;
    width: 90% !important;
    margin-left: 5% !important;
  }

  .hero-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    width: 100% !important;
    justify-content: center;
  }

  .hero-eyebrow {
    margin-left: 0.2rem;
  }

  .hero-content .hero-eyebrow,
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-cta-group {
    margin-left: 5% !important;
    width: 90% !important;
  }
}

/* 480–768px — Mobile Landscape / Small Tablets */
@media (min-width: 480px) and (max-width: 900px) {
  .hero-media-wrapper {
    width: clamp(88%, 94%, 96%);
    margin-inline: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-media {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    border-radius: 20px;
  }
.hero-media-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.10) 65%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    top: 0;
    left: 5;
    transform: none;
    width: 100%;
    padding: 1.8rem 1.6rem;
    text-align: left;
  }
  .hero-content {
    width: clamp(420px, 88%, 760px);
  }

  .hero-content h1,
  .hero-content .hero-title {
    font-size: clamp(2.1rem, 5vw, 2.6rem);
    max-width: 92%;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    max-width: 92%;
  }

  .hero-cta-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .hero-btn {
    padding: 0.7rem 1.4rem;
  }
}

/* ============================================================
   HERO — TABLET VIEW (768–1200px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1200px) {

  .hero-media-wrapper {
    width: clamp(88%, 94%, 96%);
    margin-inline: auto;
    border-radius: 20px;
  }

  .hero-media {
    width: 100%;
    height: 90vh;
  }
  .hero-media-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.00) 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .hero-content {
    position: absolute;
    top: 46%;
    left: clamp(2rem, 8vw, 12rem);
    transform: translateY(-50%);
    width: clamp(480px, 62%, 760px);
    text-align: left;
    padding-right: clamp(1rem, 4vw, 3rem);
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    margin-left: 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    line-height: 1.22;
    margin-bottom: 1.2rem;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.55;
    margin-bottom: 1.4rem;
  }

  .hero-cta-group {
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 0.7rem 1.6rem;
  }


  /* Farbklecks eindeutig zugeordnet */
  .hero-blob::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -15%;
    width: 300px;
    height: 300px;
  }
  .hero-blob::before {
    filter: blur(120px);
  }
}

/* 1440+ — Large Desktop / Widescreen */
@media (min-width: 1440px) {
  .hero-media-wrapper {
    width: 94%;
  }
}

/* ============================================================
   2) GLOBAL PAGE LAYOUT (specific for this page)
   ============================================================ */

.page-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.page-section-sm {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.page-section-lg {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}


/* Max width wrappers */
.wrapper {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

/* Wide wrapper (Hero, Big grids, etc.) */
.wrapper-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}


/* ============================================================
   3) FEATURE GRID
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-top: 0px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
}


/* ============================================================
   4) GENERAL IMAGE / MEDIA BEHAVIOUR
   ============================================================ */

img.fullwidth {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}


/* ============================================================
   5) RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 900px) {

  .hero {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .features-grid {
    gap: var(--space-4);
  }
}

@media (max-width: 600px) {

  .hero {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }

  .hero p {
    margin-bottom: var(--space-5);
  }
}




/* ================================
   SECTION WRAPPER
================================ */

.fch-benefits {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
}

.fch-benefits .container {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ================================
   HEADER
================================ */

.fch-benefits__head {
  margin-bottom: 3rem;
}

.fch-benefits__head .eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.fch-benefits__head .title {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: var(--ink-1);
}

/* ================================
   GRID
================================ */

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

/* ================================
   GRID ITEMS
================================ */

.benefit-item {
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Middle row divider — only between row 1 and 2 */
.benefit-item:nth-child(-n+3) {
  border-bottom: 1px solid var(--line-1);
}

/* VERTICAL LINES – floating style */
.benefit-item:nth-child(3n+1)::after,
.benefit-item:nth-child(3n+2)::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: var(--line-1);
}

/* ================================
   TEXT CONTENT
================================ */

.benefit-index {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  color: var(--brand);
}

.benefit-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--ink-1);
}

.benefit-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 85%;
}

/* ================================
   ICON SLOT
================================ */

.benefit-icon {
  position: relative;
  bottom: auto;
  right: auto;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  font-weight: 200 !important;
  color: var(--ink-1);
  opacity: 0.9;
  line-height: 1;
  display: inline-block;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .fch-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item:nth-child(2n+1)::after {
    right: 0;
  }
  .benefit-item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 640px) {

  .fch-benefits__head {
    width: 94%;
    margin-inline: auto;
    margin-bottom: 2rem;
    padding: 0;
    text-align: left;
  }

  .fch-benefits__head .eyebrow {
    
    letter-spacing: 0.08rem;
    margin-bottom: 0.4rem;
  }

  .fch-benefits__head .title {
    line-height: 1.25;
    max-width: 100%;
  }


  .fch-benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-item::after {
    display: none !important;
  }

  .benefit-item {
    border-bottom: 1px solid var(--line-1);
  }

  .fch-benefits__grid > .benefit-item:last-child {
    border-bottom: none;
  }
}







/* ============================================================
   HEALTH SPLIT SECTIONS (Physio / Reha / Prävention)
   3-Blöcke wie eGym – aber neutral & FCH-Brand
============================================================ */

/* ============================
   HEALTH SECTION HEADLINE
============================= */

.health-section-headline {
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(2rem, 4vw, 4rem);
  margin-top: 100px;
}

.health-section-eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem, 1vw, 1rem);
  letter-spacing: .5px;
  display: block;
  margin-bottom: .6rem;
}

.health-section-title {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-1);
  margin-bottom: clamp(.6rem, 1vw, 1rem);
  max-width: 900px;
}

.health-section-sub {
  max-width: 820px;
  color: var(--ink-2);
  font-size: var(--fs-lead);
  line-height: 1.6;
  opacity: .85;
  margin-top: .2rem;
}



/* Refactored health-split-section for compact vertical spacing and uniform row gap */
.health-split-section {
  background: var(--bg-2);
  padding: 0;                   /* remove large vertical padding */
  margin: 0;                    /* remove extra external spacing */
  
}

.health-split-section + .health-split-section {
  margin-top: clamp(1.0rem, 2vw, 2.0rem);   /* uniform row gap */
}

.health-split {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(520px, 1.6fr);
  gap: clamp(1rem, 4vw, 2rem);

  padding-inline: clamp(1.6rem, 5vw, 3rem);
  align-items: stretch;
}


.health-split.reverse {
  grid-template-columns: minmax(520px, 1.6fr) minmax(420px, 1.1fr);
}

.health-split.reverse .health-split-media {
  order: 2;
}

.health-split.reverse .health-split-content {
  order: 1;
}

/* MEDIA */
.health-split-media {
  background: var(--bg-3);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: clamp(420px, 42vw, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT CARD */
.health-split-content {
  background: var(--bg-3);
  border-radius: 30px;
  padding: clamp(1.2rem, 1.8vw, 1.8rem);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===============================
   HEALTH CARD – STABILES LAYOUT
================================ */

.health-eyebrow,
.health-title {
  flex-shrink: 0;
}

.health-title {
  margin-top: 0.6rem;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Push content to bottom */
.health-text,
.health-btn {
  margin-top: auto;
}

.health-text {
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .health-text {
    opacity: 1 !important;
    transform: none !important;
  }
}

.health-eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem, 1vw, 1rem);
  letter-spacing: .5px;
}

.health-title {
  color: var(--ink-1);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
}

.health-text {
  color: var(--ink-2);
  font-size: calc(var(--fs-lead) - .15rem);
  line-height: 1.55;
  opacity: .9;
}

/* LIST */
.health-list {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.health-list li {
  color: var(--ink-1);
  font-size: calc(var(--fs-body) - .12rem);
  opacity: .95;
}

/* CTA */
.health-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2rem;
  background: var(--brand);
  color: #111;
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: 500;
  transition: all .25s ease;
}

.health-btn:hover {
  opacity: .85;
  transform: translateY(-2px);
}


/* ============================================================
   HEALTH SPLIT — MOBILE + TABLET Reihenfolge fixen
   (Bild → Text → Bild → Text)
============================================================ */
/* ============================================================
   HEALTH SPLIT — Reihenfolge fixen für Mobile + Tablet
   Egal ob reverse: immer Bild → Text
============================================================ */
@media (max-width: 1200px) {

  /* Grid wird 1-Spaltig → Reihenfolge erzwingen */
  .health-split-media {
    order: 1 !important;
  }

  .health-split-content {
    order: 2 !important;
  }
}
/* ============================================================
   HEALTH SPLIT — MOBILE (0–480px)
   Breite 94%, Stack, saubere Abstände
============================================================ */
@media (max-width: 480px) {

  /* Section Headline */
  .health-section-headline,
  .health-section-eyebrow,
  .health-section-title,
  .health-section-sub {
    width: 94% !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    text-align: left !important;
  }

  /* Split Layout */
  .health-split {
    width: 94% !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 1.6rem !important;
  }
  .health-eyebrow {
    margin-bottom: 10px;
  }

  .health-split-media {
    height: 360px !important;
  }

  .health-split-content {
    padding: 1.4rem 1.2rem !important;
    border-radius: 20px !important;
  }

  /* Titles / Text */
  .health-title {
    font-size: 1.5rem !important;
  }

  .health-text {
    font-size: calc(var(--fs-body) + .05rem) !important;
  }

  .health-list li {
    font-size: calc(var(--fs-body) - .1rem) !important;
  }
}


/* ============================================================
   HEALTH SPLIT — TABLET (768–1200px)
   Breite 92%, 1 Spalte Stack, saubere Symmetrie
============================================================ */
@media (min-width: 768px) and (max-width: 1200px) {

  .health-section-headline,
  .health-section-eyebrow,
  .health-section-title,
  .health-section-sub,
  .health-split {
    width: 92% !important;
    max-width: 92% !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    text-align: left !important;
  }

  .health-split {
    grid-template-columns: 1fr !important;
    gap: 2.4rem !important;
  }

  .health-split-media {
    height: clamp(660px, 52vw, 480px) !important;
  }

  .health-split-content {
    padding: 2rem !important;
    border-radius: 26px !important;
  }
}
@media (min-width: 700px) and (max-width: 1400px) {

  /* Titel */
  .health-split-content .health-title {
    margin-bottom: .8rem;
    line-height: 1.35;
  }

   .health-split-media {
    height: clamp(790px, 52vw, 480px) !important;
  }
  /* Fließtext */
  .health-split-content .health-text {
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }
.health-eyebrow {
    margin-bottom: 10px;
  }
  /* Listenblock */
  .health-split-content .health-list {
    margin-top: .8rem;
    margin-bottom: 1.2rem;
    gap: .9rem;          /* Abstand zwischen Listeneinträgen */
  }

  .health-split-content .health-list li {
    line-height: 1.55;
  }
}
/* ============================================================
   HEALTH SPLIT — TABLET SMALL (480–768px)
   Mehr Luft in Cards & Text
============================================================ */
@media (min-width: 480px) and (max-width: 768px) {

  .health-split {
    gap: 2.4rem !important;
  }

  .health-split-content {
    padding: 2rem 1.8rem !important;
    gap: 1.6rem !important; /* vorher 1.0rem */
  }

  .health-eyebrow {
    margin-bottom: 10px;
  }
  .health-title {
    margin-top: 0 !important;
    margin-bottom: .4rem;
    line-height: 1.3;
  }

  .health-text {
    line-height: 1.65;
  }

  .health-list {
    gap: .8rem;
  }
}

/* ============================================================
   HEALTH POPUP – OVERLAY
============================================================ */

.health-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s ease-out;
}

.health-popup-overlay.show {
  display: flex !important;
  opacity: 1;
}

/* ============================================================
   HEALTH POPUP – BOX
============================================================ */

.health-popup {
  width: min(640px, 94%);
  max-height: 80vh;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: clamp(2rem, 3vw, 3rem);
  color: var(--ink-1);

  transform: scale(.92);
  opacity: 0;
  transition: transform .28s ease-out, opacity .28s ease-out;

  overflow-y: auto;
  scrollbar-width: none;
}

.health-popup::-webkit-scrollbar {
  display: none;
}

.health-popup-overlay.show .health-popup {
  opacity: 1;
  transform: scale(1);
}

/* X Button */
.health-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all .25s ease;
}

.health-popup-close:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* Typography */
.health-popup-title {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1.2rem;
}

.health-popup-text {
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.health-popup-list {
  padding-left: 1.4rem;
}

.health-popup-list li {
  margin-bottom: .5rem;
  color: var(--ink-1);
  position: relative;
}

.health-popup-list li::marker {
  color: var(--brand);
  font-weight: 600;
}


/* Ensure full width for media/content on desktop before mobile queries */
.health-split-media,
.health-split-content {
  width: 100%;
}






/* ============================================================
   FCH — FAQ Section (Dark, Clean, Apple-Style)
============================================================ */

.fch-faq {
  padding: clamp(4rem, 6vw, 7rem) 0;
  background: var(--bg-2);
  padding-top: 100px;
}

.fch-faq__wrap {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
}


/* Eyebrow */
.fch-faq__eyebrow {
  color: var(--brand);
  font-size: clamp(.9rem,1vw,1rem);
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.fch-faq__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Title */
.fch-faq__title {
  font-size: var(--fs-h1);
  color: var(--ink-1);
  font-weight: 600;
  line-height: 1.15;
  margin: 1rem 0 2.2rem;
  max-width: 760px;
}

/* List */
.fch-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fch-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Question Button */
.fch-faq__question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: clamp(16px, 2vw, 22px) 0;
  font-size: var(--fs-body);
  color: var(--ink-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform .22s ease, color .22s ease;
}
.fch-faq__question:hover {
  transform: translateX(6px);
  color: var(--brand);
}

/* Icon */
.fch-faq__icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  position: relative;
  transition: background .2s ease;
}
.fch-faq__icon::before,
.fch-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--ink-1);
  transform: translate(-50%, -50%);
}
.fch-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.fch-faq__question[aria-expanded="true"] .fch-faq__icon::after {
  opacity: 0; /* Minus */
}
.fch-faq__question[aria-expanded="true"] .fch-faq__icon {
  background: color-mix(in srgb, var(--brand) 18%, transparent);
}

/* Answer */
.fch-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .28s ease;
}
.fch-faq__answer p {
  margin: 0 0 1rem;
  color: var(--ink-2);
  opacity: .85;
  line-height: 1.6;
  max-width: 720px;
}

/* Footnote */
.fch-faq__footnote {
  margin-top: clamp(2rem,4vw,3rem);
  color: var(--ink-2);
  opacity: .85;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 200px;
}

@media (min-width: 600px) and (max-width: 1200px) {
  .fch-faq__wrap {
    width: 92% !important;
    max-width: 92% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 600px) {
  .fch-faq__wrap {
    width: 94% !important;
    max-width: 94% !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.hero-section {
  margin-top: -5px;
}



