:root {
  --fhi-indigo: #2D1B4E;
  --fhi-indigo-deep: #1E1235;
  --fhi-violet: #6B3FA0;
  --fhi-magenta: #C2478D;
  --fhi-coral: #FF7A5C;
  --fhi-amber: #FFB84D;
  --fhi-cream: #FBF7F1;
  --fhi-cream-deep: #F3ECE3;
  --fhi-ink: #241C31;
  --fhi-ink-soft: #5B5468;
  --fhi-white: #FFFEFC;
  --fhi-border: rgba(36, 28, 49, 0.1);
  --fhi-gradient-main: linear-gradient(135deg, var(--fhi-indigo) 0%, var(--fhi-violet) 32%, var(--fhi-magenta) 62%, var(--fhi-coral) 88%, var(--fhi-amber) 100%);
  --fhi-gradient-soft: linear-gradient(135deg, rgba(45,27,78,0.05), rgba(255,122,92,0.07));
  --fhi-shadow-sm: 0 2px 8px rgba(36,28,49,0.06);
  --fhi-shadow-md: 0 8px 24px rgba(36,28,49,0.10), 0 2px 6px rgba(36,28,49,0.06);
  --fhi-shadow-lg: 0 24px 48px rgba(45,27,78,0.16), 0 8px 16px rgba(194,71,141,0.12);
  --fhi-shadow-glow: 0 12px 40px rgba(194,71,141,0.25);
  --fhi-radius-sm: 8px;
  --fhi-radius-md: 16px;
  --fhi-radius-lg: 24px;
  --fhi-radius-xl: 32px;
  --fhi-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--fhi-cream);
  color: var(--fhi-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: var(--fhi-ink);
  margin: 0 0 0.6em;
  font-weight: 800;
}

p { margin: 0 0 1em; color: var(--fhi-ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.fhi-section__inner {
  max-width: var(--fhi-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fhi-section__head {
  max-width: 720px;
  margin: 0 0 3rem;
  & h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; }
  &--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: none;
  }
}

.fhi-section__lead { font-size: 1.1rem; max-width: 640px; }

.fhi-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fhi-amber);
  margin-bottom: 1rem;
  &--dark { color: var(--fhi-magenta); }
  &--light { color: #FFDAB8; }
}

.fhi-gradient-text {
  background: var(--fhi-gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.fhi-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--fhi-radius-md);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  min-height: 44px;

  &--light {
    background: var(--fhi-white);
    color: var(--fhi-indigo);
    box-shadow: var(--fhi-shadow-md);
    &:hover { transform: translateY(-2px); box-shadow: var(--fhi-shadow-lg); }
  }
  &--ghost {
    background: transparent;
    color: var(--fhi-cream);
    border-color: rgba(251,247,241,0.4);
    &:hover { background: rgba(251,247,241,0.12); border-color: rgba(251,247,241,0.7); }
  }
  &--outline-dark {
    background: transparent;
    color: var(--fhi-ink);
    border-color: var(--fhi-ink);
    &:hover { background: var(--fhi-ink); color: var(--fhi-cream); }
  }
  &--gradient {
    background: var(--fhi-gradient-main);
    color: var(--fhi-white);
    box-shadow: var(--fhi-shadow-glow);
    &:hover { transform: translateY(-2px); box-shadow: 0 16px 46px rgba(194,71,141,0.35); }
  }
  &--header {
    background: var(--fhi-gradient-main);
    color: var(--fhi-white);
    box-shadow: var(--fhi-shadow-sm);
    padding: 0.7rem 1.3rem;
    &:hover { box-shadow: var(--fhi-shadow-md); transform: translateY(-1px); }
  }
  &--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }
}

.fhi-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--fhi-magenta);
  transition: gap .3s ease, color .3s ease;
  &:hover { gap: 0.8rem; color: var(--fhi-coral); }
}


.fhi-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251,247,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fhi-border);
  transition: all .4s ease;

  &.fhi-header--mini {
    background: transparent;
    border-bottom-color: transparent;
    & .fhi-header__inner { display: none; }
  }
}

.fhi-header__inner {
  max-width: var(--fhi-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  gap: 1rem;
}

.fhi-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--fhi-indigo);
  &--light { color: var(--fhi-cream); }
}

.fhi-nav {
  display: flex;
  gap: 1.8rem;
  @media (max-width: 960px) { display: none; }
}

.fhi-nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fhi-ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color .3s ease;
  &::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--fhi-gradient-main);
    transition: width .3s ease;
  }
  &:hover, &--active { color: var(--fhi-ink); }
  &:hover::after, &--active::after { width: 100%; }
}

.fhi-btn--header { @media (max-width: 960px) { display: none; } }

.fhi-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  & span {
    width: 22px; height: 2px;
    background: var(--fhi-ink);
    border-radius: 2px;
    transition: all .3s ease;
  }
  @media (max-width: 960px) { display: flex; }
}

.fhi-pill {
  display: none;
  position: fixed;
  top: 1.1rem;
  right: 1.5rem;
  z-index: 600;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--fhi-gradient-main);
  color: var(--fhi-white);
  box-shadow: var(--fhi-shadow-lg);
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
  &:hover { transform: scale(1.08); }
  &.fhi-pill--visible { display: flex; }
}


.fhi-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--fhi-gradient-main);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
  overflow-y: auto;

  &.fhi-mobile-overlay--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.fhi-mobile-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  & button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--fhi-cream);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s ease;
    &:hover { background: rgba(255,255,255,0.25); }
  }
}

.fhi-mobile-overlay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: auto 0;
  & a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--fhi-radius-lg);
    padding: 1.6rem 1rem;
    color: var(--fhi-cream);
    font-weight: 600;
    min-height: 110px;
    transition: background .3s ease, transform .3s ease;
    & i { font-size: 1.5rem; color: var(--fhi-amber); }
    &:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
  }
}


.fhi-hero {
  position: relative;
  background: var(--fhi-gradient-main);
  color: var(--fhi-cream);
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(4rem, 10vw, 7rem);
  overflow: hidden;

  &--inner { padding: clamp(2.5rem, 7vw, 5rem) 1.5rem clamp(3rem, 8vw, 5.5rem); }

  & h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 1.2rem;
    color: var(--fhi-cream);
    font-weight: 800;
  }
}

.fhi-hero__inner {
  max-width: var(--fhi-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;

  &--simple { grid-template-columns: 1fr; max-width: 760px; }

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

.fhi-hero__lead {
  font-size: 1.1rem;
  color: rgba(251,247,241,0.88);
  max-width: 560px;
}

.fhi-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}

.fhi-hero__tags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(251,247,241,0.85);
  & span { display: flex; align-items: center; gap: 0.5rem; }
  & i { color: var(--fhi-amber); }
}

.fhi-hero__media { position: relative; }
.fhi-hero__img {
  border-radius: var(--fhi-radius-xl);
  box-shadow: var(--fhi-shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.fhi-hero__floatcard {
  position: absolute;
  bottom: -1.6rem;
  left: -1.6rem;
  background: var(--fhi-white);
  color: var(--fhi-ink);
  border-radius: var(--fhi-radius-lg);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--fhi-shadow-lg);
  max-width: 260px;
  & i { font-size: 1.4rem; color: var(--fhi-coral); }
  & p { margin: 0; font-size: 0.85rem; color: var(--fhi-ink-soft); }
  @media (max-width: 560px) { left: 0.5rem; bottom: -1.2rem; padding: 0.8rem 1rem; }
}


.fhi-strip {
  background: var(--fhi-white);
  border-bottom: 1px solid var(--fhi-border);
  padding: 2.2rem 1.5rem;
}
.fhi-strip__inner {
  max-width: var(--fhi-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  @media (max-width: 900px) { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 560px) { grid-template-columns: 1fr; }
}
.fhi-strip__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fhi-ink);
  & i { color: var(--fhi-magenta); font-size: 1.2rem; flex-shrink: 0; }
}


.fhi-why {
  position: relative;
  background: var(--fhi-gradient-main);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.fhi-why__bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 40%),
              radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06), transparent 45%);
}
.fhi-why .fhi-section__head p { color: rgba(251,247,241,0.85); }
.fhi-why .fhi-eyebrow--dark { color: var(--fhi-amber); }
.fhi-why h2 { color: var(--fhi-cream); }

.fhi-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  &--two { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 1000px) { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 560px) { grid-template-columns: 1fr; }
}

.fhi-card {
  background: var(--fhi-white);
  border-radius: var(--fhi-radius-lg);
  padding: 2rem 1.7rem;
  box-shadow: var(--fhi-shadow-lg);
  border-top: 4px solid transparent;
  border-image: var(--fhi-gradient-main) 1;
  transition: transform .35s ease, box-shadow .35s ease;
  &:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(45,27,78,0.22); }
}
.fhi-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--fhi-radius-md);
  background: var(--fhi-gradient-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  & i { font-size: 1.3rem; background: var(--fhi-gradient-main); -webkit-background-clip: text; background-clip: text; color: transparent; }
}
.fhi-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.fhi-card p { font-size: 0.95rem; margin: 0; }


.fhi-courses { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--fhi-cream); }

.fhi-swiper { padding-bottom: 3.5rem; position: relative; }
.fhi-course-card {
  background: var(--fhi-white);
  border-radius: var(--fhi-radius-lg);
  overflow: hidden;
  box-shadow: var(--fhi-shadow-md);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  &:hover { transform: translateY(-6px); box-shadow: var(--fhi-shadow-lg); }
  & img { width: 100%; height: 210px; object-fit: cover; }
}
.fhi-course-card__body { padding: 1.4rem 1.4rem 1.6rem; }
.fhi-course-card__meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--fhi-ink-soft); margin-top: 0.8rem;
  & i { color: var(--fhi-magenta); }
}

.fhi-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  &--beginner { background: rgba(255,184,77,0.18); color: #93610B; }
  &--intermediate { background: rgba(194,71,141,0.15); color: var(--fhi-magenta); }
}

.swiper-pagination-bullet { background: var(--fhi-violet); opacity: 0.35; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--fhi-magenta); }
.swiper-button-next, .swiper-button-prev { color: var(--fhi-magenta); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.3rem; }


.fhi-steps { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--fhi-cream-deep); }
.fhi-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  @media (max-width: 1000px) { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 560px) { grid-template-columns: 1fr; }
}
.fhi-step {
  background: var(--fhi-white);
  border-left: 4px solid var(--fhi-magenta);
  border-radius: var(--fhi-radius-md);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--fhi-shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
  &:hover { box-shadow: var(--fhi-shadow-md); transform: translateY(-4px); }
}
.fhi-step__num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--fhi-gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}
.fhi-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.fhi-step p { font-size: 0.92rem; margin: 0; }


.fhi-philosophy {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--fhi-white);
  overflow: hidden;
}
.fhi-philosophy__shapes {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.fhi-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
  &--one { width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,184,77,0.3), transparent 70%); top: -60px; left: -60px; }
  &--two { width: 320px; height: 320px; background: radial-gradient(circle, rgba(194,71,141,0.22), transparent 70%); bottom: -100px; right: -80px; }
  &--three { width: 160px; height: 160px; background: radial-gradient(circle, rgba(107,63,160,0.25), transparent 70%); top: 40%; right: 15%; }
}
.fhi-philosophy__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  @media (max-width: 900px) { grid-template-columns: 1fr; }
}
.fhi-philosophy__media img {
  border-radius: var(--fhi-radius-xl);
  box-shadow: var(--fhi-shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.fhi-checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.7rem;
  & li { display: flex; gap: 0.7rem; font-size: 0.95rem; color: var(--fhi-ink); }
  & i { color: var(--fhi-magenta); margin-top: 3px; }
}


.fhi-dualcta { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--fhi-cream-deep); }
.fhi-dualcta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  @media (max-width: 800px) { grid-template-columns: 1fr; }
}
.fhi-dualcta__card {
  border-radius: var(--fhi-radius-xl);
  padding: 2.6rem 2.2rem;
  &--primary {
    background: var(--fhi-gradient-main);
    color: var(--fhi-cream);
    box-shadow: var(--fhi-shadow-glow);
    & p { color: rgba(251,247,241,0.88); }
  }
  &--secondary {
    background: var(--fhi-white);
    border: 1px solid var(--fhi-border);
    box-shadow: var(--fhi-shadow-md);
  }
  & h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
}


.fhi-faq { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--fhi-white); }
.fhi-faq__list { display: grid; gap: 1rem; max-width: 820px; }
.fhi-faq__item {
  background: var(--fhi-cream);
  border: 1px solid var(--fhi-border);
  border-radius: var(--fhi-radius-md);
  padding: 1.1rem 1.4rem;
  & summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    &::after { content: '+'; font-size: 1.3rem; color: var(--fhi-magenta); }
  }
  &[open] summary::after { content: '−'; }
  & p { margin: 0.9rem 0 0; font-size: 0.95rem; }
}


.fhi-team { padding: clamp(3rem, 7vw, 5rem) 0; }
.fhi-team__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  &--reverse { grid-template-columns: 1.1fr 0.9fr; & .fhi-team__media { order: 2; } }
  @media (max-width: 860px) {
    grid-template-columns: 1fr;
    &--reverse .fhi-team__media { order: 0; }
  }
}
.fhi-team__media img {
  border-radius: var(--fhi-radius-xl);
  box-shadow: var(--fhi-shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.fhi-approach { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--fhi-cream-deep); }


.fhi-process { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.fhi-process__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--fhi-border);
  &:last-child { border-bottom: none; }
}
.fhi-process__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--fhi-gradient-main);
  color: var(--fhi-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--fhi-shadow-glow);
}
.fhi-process__body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.fhi-classroom { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--fhi-cream-deep); }
.fhi-classroom__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  @media (max-width: 860px) { grid-template-columns: 1fr; }
}
.fhi-classroom__media img { border-radius: var(--fhi-radius-xl); box-shadow: var(--fhi-shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.fhi-review { padding: clamp(3rem, 7vw, 5rem) 0; }
.fhi-review__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  @media (max-width: 860px) { grid-template-columns: 1fr; }
}
.fhi-review__media img { border-radius: var(--fhi-radius-xl); box-shadow: var(--fhi-shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }


.fhi-library { padding: clamp(3rem, 7vw, 5rem) 0; }
.fhi-library__group { margin-bottom: 3.5rem; &:last-child { margin-bottom: 0; } }
.fhi-library__head { max-width: 620px; margin-bottom: 1.6rem; & h2 { font-size: 1.6rem; } }
.fhi-library__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  @media (max-width: 900px) { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 600px) { grid-template-columns: 1fr; }
}
.fhi-library__card {
  background: var(--fhi-white);
  border-radius: var(--fhi-radius-lg);
  overflow: hidden;
  box-shadow: var(--fhi-shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  &:hover { transform: translateY(-5px); box-shadow: var(--fhi-shadow-lg); }
  & img { width: 100%; height: 180px; object-fit: cover; }
}
.fhi-library__cardbody {
  padding: 1.2rem 1.3rem 1.4rem;
  & h3 { font-size: 1rem; margin-bottom: 0.4rem; }
  & p { font-size: 0.9rem; margin-bottom: 0.6rem; }
  & span { font-size: 0.82rem; color: var(--fhi-ink-soft); display: flex; align-items: center; gap: 0.4rem; }
  & i { color: var(--fhi-magenta); }
}

.fhi-cta-band { padding: clamp(3rem, 6vw, 4.5rem) 0; background: var(--fhi-gradient-main); }
.fhi-cta-band__inner { text-align: center; max-width: 620px; margin: 0 auto; }
.fhi-cta-band h2 { color: var(--fhi-cream); }
.fhi-cta-band p { color: rgba(251,247,241,0.88); margin-bottom: 1.6rem; }


.fhi-contact { padding: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.fhi-contact__grid {
  max-width: var(--fhi-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  @media (max-width: 900px) { grid-template-columns: 1fr; }
}
.fhi-contact__map {
  border-radius: var(--fhi-radius-xl);
  overflow: hidden;
  box-shadow: var(--fhi-shadow-md);
  min-height: 340px;
  & iframe { width: 100%; height: 100%; min-height: 340px; }
}
.fhi-contact__form {
  background: var(--fhi-white);
  border-radius: var(--fhi-radius-xl);
  padding: 2.2rem;
  box-shadow: var(--fhi-shadow-md);
}
.fhi-form__row {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  & label { font-size: 0.9rem; font-weight: 600; & span { color: var(--fhi-coral); } }
  & input[type="text"], & input[type="email"], & input[type="tel"], & textarea {
    border: 1px solid var(--fhi-border);
    border-radius: var(--fhi-radius-sm);
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--fhi-cream);
    transition: border-color .3s ease, box-shadow .3s ease;
    &:focus { outline: none; border-color: var(--fhi-magenta); box-shadow: 0 0 0 3px rgba(194,71,141,0.15); }
  }
  &--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem;
    & input { margin-top: 4px; width: 20px; height: 20px; }
    & label { font-weight: 400; font-size: 0.88rem; }
  }
}
.fhi-form__note { font-size: 0.82rem; color: var(--fhi-ink-soft); margin-top: 0.8rem; }

.fhi-timeline { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--fhi-cream-deep); }
.fhi-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  @media (max-width: 1000px) { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 560px) { grid-template-columns: 1fr; }
}
.fhi-timeline__item {
  background: var(--fhi-white);
  border-radius: var(--fhi-radius-md);
  padding: 1.6rem 1.3rem;
  box-shadow: var(--fhi-shadow-sm);
  position: relative;
  border-bottom: 3px solid var(--fhi-magenta);
}
.fhi-timeline__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fhi-gradient-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  & i { color: var(--fhi-magenta); }
}
.fhi-timeline__item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.fhi-timeline__item p { font-size: 0.88rem; margin: 0; }


.fhi-next { padding: clamp(3rem, 6vw, 5rem) 0; }
.fhi-next__back { margin-top: 2.5rem; text-align: center; }


.fhi-legal { padding: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.fhi-legal__inner {
  max-width: 860px;
  margin: 0 auto;
  & h2 { font-size: 1.35rem; margin-top: 2.2rem; }
  & p { font-size: 0.98rem; }
}
.fhi-legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  box-shadow: var(--fhi-shadow-sm);
  border-radius: var(--fhi-radius-md);
  overflow: hidden;
  & th, & td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid var(--fhi-border); }
  & th { background: var(--fhi-indigo); color: var(--fhi-cream); font-weight: 600; }
  & tr:nth-child(even) { background: var(--fhi-cream-deep); }
}
.fhi-legal__deflist {
  margin: 1.5rem 0;
  & dt { font-weight: 700; color: var(--fhi-ink); margin-top: 1rem; }
  & dd { margin: 0.3rem 0 0; color: var(--fhi-ink-soft); }
}


.fhi-footer {
  background: var(--fhi-indigo-deep);
  color: rgba(251,247,241,0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 1.5rem;
  margin-top: auto;
}
.fhi-footer__inner {
  max-width: var(--fhi-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  @media (max-width: 900px) { grid-template-columns: 1fr 1fr; }
  @media (max-width: 560px) { grid-template-columns: 1fr; }
}
.fhi-footer__brand p { color: rgba(251,247,241,0.65); font-size: 0.9rem; margin-top: 1rem; }
.fhi-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  & h4 { color: var(--fhi-cream); font-size: 1rem; margin-bottom: 0.4rem; }
  & a { color: rgba(251,247,241,0.7); font-size: 0.9rem; transition: color .3s ease; &:hover { color: var(--fhi-amber); } }
  & p { color: rgba(251,247,241,0.7); font-size: 0.9rem; margin: 0; display: flex; gap: 0.5rem; align-items: flex-start; }
  & i { color: var(--fhi-amber); margin-top: 3px; }
}
.fhi-footer__bottom {
  max-width: var(--fhi-container);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251,247,241,0.12);
  font-size: 0.82rem;
  text-align: center;
  color: rgba(251,247,241,0.55);
}

html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }


.fhi-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--fhi-white);
  box-shadow: 0 -10px 40px rgba(36,28,49,0.18);
  display: none;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  padding: 1.6rem 2rem;
  border-top: 3px solid transparent;
  border-image: var(--fhi-gradient-main) 1;

  &.fhi-cookie--visible { display: grid; }

  & h4 { font-size: 1rem; margin-bottom: 0.4rem; }
  & p { font-size: 0.85rem; margin: 0; }

  @media (max-width: 800px) {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
}
.fhi-cookie__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.fhi-cookie__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  & input { width: 18px; height: 18px; }
}
.fhi-cookie__buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}


@media (max-width: 640px) {
  .fhi-section__head--split { flex-direction: column; align-items: flex-start; }
  .fhi-hero__floatcard { position: static; margin-top: 1rem; max-width: none; }
}