/* ==========================================================================
   HumaNex Transformation Hub — Mind & Life Coaching Homepage
   Design system: "The Inner Landscape"
   Signature motif: topographic contour lines + growth rings, reflecting the
   idea that coaching helps a person map and move through their own terrain.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&display=swap");

:root {
  /* Brand colors — pulled directly from the HumaNex logo */
  --theme: #55833B;
  --theme-2: #D3AF35;

  --hnx-green: #55833B;
  --hnx-green-dark: #2E4A1F;
  --hnx-green-deep: #1F3315;
  --hnx-green-light: #EAF0E1;
  --hnx-gold: #D3AF35;
  --hnx-gold-light: #F6ECC6;
  --hnx-cream: #FBF7EE;
  --hnx-paper: #F5EFE1;
  --hnx-ink: #26301C;
  --hnx-ink-soft: #5B6650;
  --hnx-white: #FFFFFF;

  --hnx-display: "Fraunces", "Georgia", serif;
  --hnx-body: "Inter", "Poppins", sans-serif;
  --hnx-eyebrow: "Poppins", sans-serif;
}

/* ---- base helpers -------------------------------------------------- */
.hnx-section {
  background: var(--hnx-cream);
  position: relative;
  overflow: hidden;
}
.hnx-section.is-tinted { background: var(--hnx-green-light); }
.hnx-section.is-deep {
  background: var(--hnx-green-deep);
  color: var(--hnx-white);
}
.hnx-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hnx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hnx-eyebrow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hnx-green);
}
.hnx-section.is-deep .hnx-eyebrow { color: var(--hnx-gold); }
.hnx-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--hnx-gold);
  display: inline-block;
}

.hnx-heading {
  font-family: var(--hnx-display);
  font-weight: 500;
  color: var(--hnx-green-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
}
.hnx-section.is-deep .hnx-heading { color: var(--hnx-white); }
.hnx-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--hnx-gold);
}
.hnx-lede {
  font-family: var(--hnx-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--hnx-ink-soft);
  margin-top: 18px;
  max-width: 520px;
}
.hnx-section.is-deep .hnx-lede { color: #C9D4BE; }

.hnx-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hnx-head-row.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hnx-head-row.center .hnx-heading { max-width: 640px; }

.hnx-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hnx-eyebrow);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: all .35s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.hnx-btn-fill {
  background: var(--hnx-gold);
  color: var(--hnx-green-deep);
}
.hnx-btn-fill:hover { background: var(--hnx-green); color: var(--hnx-white); transform: translateY(-2px); }
.hnx-btn-outline {
  background: transparent;
  border-color: rgba(38,48,28,.25);
  color: var(--hnx-ink);
}
.hnx-section.is-deep .hnx-btn-outline,
.hnx-section.is-green .hnx-btn-outline {
  border-color: rgba(255,255,255,.35);
  color: var(--hnx-white);
}
.hnx-btn-outline:hover { background: var(--hnx-white); border-color: var(--hnx-white); color: var(--hnx-green-deep); }
.hnx-btn i, .hnx-btn svg { transition: transform .35s ease; }
.hnx-btn:hover i, .hnx-btn:hover svg { transform: translate(3px,-3px); }

/* contour texture used as a faint background layer on several sections */
.hnx-contour-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

/* ======================= HERO (photo banner) ======================= */
.hnx-hero-photo {
  position: relative;
  overflow: visible;
  background: var(--hnx-green-deep);
  /* margin-bottom: 60px; */
}
.hnx-hero-photo-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}
.hnx-hero-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
  display: block;
}
.hnx-hero-photo-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(20, 28, 12, .82) 0%,
      rgba(20, 28, 12, .58) 30%,
      rgba(20, 28, 12, .18) 56%,
      rgba(20, 28, 12, 0) 72%);
}
.hnx-hero-photo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 21, 9, .55) 0%, rgba(15, 21, 9, 0) 26%);
}

.hnx-hero-photo-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 190px 0 130px;
}
.hnx-hero-photo-copy { max-width: 560px; }

.hnx-eyebrow-on-photo { color: var(--hnx-gold-light); }
.hnx-eyebrow-on-photo::before { background: var(--hnx-gold-light); }

.hnx-hero-photo-copy h1 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.1;
  color: var(--hnx-white);
  margin: 18px 0 22px;
  letter-spacing: -0.015em;
}
.hnx-hero-photo-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--hnx-gold-light);
  display: block;
}
.hnx-hero-photo-copy p {
  font-family: var(--hnx-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
  max-width: 470px;
}

.hnx-hero-photo-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hnx-btn-outline-on-photo {
  border-color: rgba(255, 255, 255, .4);
  color: var(--hnx-white);
}
.hnx-btn-outline-on-photo:hover { background: var(--hnx-white); border-color: var(--hnx-white); color: var(--hnx-green-deep); }
.hnx-btn-pill { border-radius: 50px; padding: 17px 32px; }

.hnx-hero-photo-badges {
  display: flex;
  gap: 28px;
  margin-top: 54px;
  flex-wrap: wrap;
}
.hnx-hero-photo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hnx-hero-photo-badge .num {
  font-family: var(--hnx-display);
  font-size: 26px;
  color: var(--hnx-gold-light);
}
.hnx-hero-photo-badge .lbl {
  font-family: var(--hnx-eyebrow);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.3;
}

/* ---- Hero slider (Swiper) ---- */
.hnx-hero-slider,
.hnx-hero-slider .swiper-wrapper,
.hnx-hero-slider .swiper-slide {
  position: relative;
}
.hnx-hero-slider .swiper-slide {
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}
.hnx-hero-slider .hnx-hero-photo-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.hnx-hero-slider .swiper-slide-active .hnx-hero-photo-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}
.hnx-hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hnx-white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.hnx-hero-slider-nav:hover {
  background: var(--hnx-gold-light);
  border-color: var(--hnx-gold-light);
  color: var(--hnx-green-deep);
}
.hnx-hero-slider-prev { left: 30px; }
.hnx-hero-slider-next { right: 30px; }
.hnx-hero-slider-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hnx-hero-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
  margin: 0;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hnx-hero-slider-pagination .swiper-pagination-bullet-active {
  background: var(--hnx-gold-light);
  width: 26px;
  border-radius: 6px;
}

/* ======================= STATS ======================= */
.hnx-stats { padding: 0 0 100px; }
.hnx-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hnx-stat {
  position: relative;
  padding: 30px 10px;
  text-align: center;
}
.hnx-stat::after {
  content: "";
  position: absolute;
  right: 0; top: 12px; bottom: 12px;
  width: 1px;
  background: rgba(38,48,28,.12);
}
.hnx-stat:last-child::after { display: none; }
.hnx-ring {
  width: 84px; height: 84px;
  margin: 0 auto 14px;
  position: relative;
}
.hnx-ring svg { width: 100%; height: 100%; }
.hnx-stat .num {
  font-family: var(--hnx-display);
  font-size: 32px;
  color: var(--hnx-green-dark);
}
.hnx-stat .lbl {
  font-family: var(--hnx-eyebrow);
  font-size: 12.5px;
  letter-spacing: .5px;
  color: var(--hnx-ink-soft);
  margin-top: 6px;
}

/* ======================= ABOUT ======================= */
.hnx-about { padding: 100px 0; }
.hnx-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.hnx-about-art { position: relative; }
.hnx-about-art img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(38, 48, 28, .18);
}
.hnx-about-quote {
  position: absolute;
  right: -6%;
  bottom: -8%;
  background: var(--hnx-green-dark);
  color: var(--hnx-white);
  padding: 22px 24px;
  border-radius: 18px;
  max-width: 230px;
  font-family: var(--hnx-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 20px 40px rgba(38,48,28,.25);
}
.hnx-about-quote cite {
  display: block;
  font-family: var(--hnx-eyebrow);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hnx-gold);
  margin-top: 12px;
}
.hnx-about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}
.hnx-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--hnx-body);
  font-size: 15.5px;
  color: var(--hnx-ink);
}
.hnx-about-list .ico {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--hnx-green-light);
  color: var(--hnx-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ======================= PILLARS ======================= */
.hnx-pillars { padding: 100px 0; }
.hnx-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hnx-pillar {
  background: var(--hnx-white);
  border-radius: 20px;
  padding: 38px 28px;
  border: 1px solid rgba(38,48,28,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.hnx-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(38,48,28,.12);
  border-color: transparent;
}
.hnx-pillar .idx {
  font-family: var(--hnx-display);
  font-style: italic;
  font-size: 14px;
  color: var(--hnx-gold);
}
.hnx-pillar .ico {
  width: 52px; height: 52px;
  margin: 14px 0 20px;
  color: var(--hnx-green);
}
.hnx-pillar .ico svg { width: 100%; height: 100%; }
.hnx-pillar h3 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--hnx-green-dark);
  margin: 0 0 10px;
}
.hnx-pillar p {
  font-family: var(--hnx-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--hnx-ink-soft);
  margin: 0;
}

/* ======================= PROGRAMS ======================= */
.hnx-programs { padding: 100px 0; }
.hnx-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hnx-program {
  background: var(--hnx-white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(38,48,28,.08);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.hnx-program:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(38,48,28,.13); }
.hnx-program-top {
  background: var(--hnx-green-light);
  padding: 34px 30px 26px;
  position: relative;
}
.hnx-program.is-featured .hnx-program-top { background: var(--hnx-green-dark); }
.hnx-program.is-featured .hnx-program-top h3,
.hnx-program.is-featured .hnx-program-top .tag { color: var(--hnx-white); }
.hnx-program-top .tag {
  font-family: var(--hnx-eyebrow);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hnx-green);
}
.hnx-program-top h3 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--hnx-green-dark);
  margin: 10px 0 0;
}
.hnx-program-badge {
  position: absolute;
  top: -1px; right: 22px;
  background: var(--hnx-gold);
  color: var(--hnx-green-deep);
  font-family: var(--hnx-eyebrow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 0 0 10px 10px;
}
.hnx-program-body {
  padding: 26px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hnx-program-body p {
  font-family: var(--hnx-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--hnx-ink-soft);
  margin: 0 0 20px;
}
.hnx-program-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
}
.hnx-program-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hnx-body);
  font-size: 14px;
  color: var(--hnx-ink);
}
.hnx-program-body li i { color: var(--hnx-green); font-size: 12px; }
.hnx-program-body .hnx-btn { margin-top: auto; align-self: flex-start; }

/* ======================= PROCESS / THE PATH ======================= */
.hnx-process { padding: 110px 0 100px; }
.hnx-path-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.hnx-path-rail::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--hnx-green) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  z-index: 0;
}
.hnx-step { position: relative; z-index: 1; padding-right: 10px; }
.hnx-step .mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--hnx-white);
  border: 2px solid var(--hnx-green);
  color: var(--hnx-green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hnx-display);
  font-size: 20px;
  margin-bottom: 22px;
}
.hnx-step.is-last .mark { background: var(--hnx-gold); border-color: var(--hnx-gold); color: var(--hnx-green-deep); }
.hnx-step h4 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--hnx-green-dark);
  margin: 0 0 8px;
}
.hnx-step p {
  font-family: var(--hnx-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--hnx-ink-soft);
  margin: 0;
}

/* ======================= PRICING / PACKAGES ======================= */
.hnx-pricing { padding: 100px 0; }
.hnx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hnx-price-card {
  background: var(--hnx-white);
  border-radius: 22px;
  padding: 36px 30px;
  border: 1px solid rgba(38,48,28,.08);
}
.hnx-price-card.is-popular {
  background: var(--hnx-green-dark);
  color: var(--hnx-white);
  position: relative;
  transform: translateY(-14px);
  box-shadow: 0 30px 60px rgba(38,48,28,.22);
}
.hnx-price-card.is-popular .hnx-price-tier,
.hnx-price-card.is-popular .hnx-price-desc { color: #C9D4BE; }
.hnx-price-pop-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--hnx-gold);
  color: var(--hnx-green-deep);
  font-family: var(--hnx-eyebrow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
}
.hnx-price-tier {
  font-family: var(--hnx-eyebrow);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hnx-green);
}
.hnx-price-amount {
  font-family: var(--hnx-display);
  font-size: 42px;
  margin: 12px 0 4px;
}
.hnx-price-amount sup {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--hnx-body);
  opacity: .7;
}
.hnx-price-desc {
  font-family: var(--hnx-body);
  font-size: 14px;
  color: var(--hnx-ink-soft);
  margin: 0 0 24px;
}
.hnx-price-card ul {
  list-style: none;
  padding: 22px 0 0;
  margin: 24px 0 30px;
  border-top: 1px solid rgba(38,48,28,.1);
  display: grid;
  gap: 13px;
}
.hnx-price-card.is-popular ul { border-top-color: rgba(255,255,255,.15); }
.hnx-price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hnx-body);
  font-size: 14px;
}
.hnx-price-card li i { color: var(--hnx-gold); font-size: 12px; }
.hnx-price-card .hnx-btn { width: 100%; justify-content: center; }

/* ======================= COACHES ======================= */
.hnx-team { padding: 100px 0; }
.hnx-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hnx-coach {
  text-align: center;
}
.hnx-coach-avatar {
  width: 100%;
  aspect-ratio: 1/1.05;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.hnx-coach-avatar svg { width: 100%; height: 100%; display: block; }
.hnx-coach h4 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--hnx-green-dark);
  margin: 0 0 4px;
}
.hnx-coach p {
  font-family: var(--hnx-eyebrow);
  font-size: 12.5px;
  letter-spacing: .5px;
  color: var(--hnx-ink-soft);
  margin: 0;
}

/* ======================= TESTIMONIALS ======================= */
.hnx-testimonial { padding: 100px 0; }
.hnx-t-slider .swiper-slide { height: auto; }
.hnx-t-card {
  background: var(--hnx-white);
  border-radius: 22px;
  padding: 38px 34px;
  border: 1px solid rgba(38,48,28,.08);
  height: 100%;
}
.hnx-t-card .mark {
  font-family: var(--hnx-display);
  font-style: italic;
  font-size: 42px;
  color: var(--hnx-gold);
  line-height: 1;
}
.hnx-t-card p {
  font-family: var(--hnx-body);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--hnx-ink);
  margin: 14px 0 24px;
}
.hnx-t-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hnx-t-person .av {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex: 0 0 46px;
}
.hnx-t-person h5 {
  font-family: var(--hnx-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--hnx-green-dark);
  margin: 0;
}
.hnx-t-person span {
  font-family: var(--hnx-eyebrow);
  font-size: 12px;
  color: var(--hnx-ink-soft);
}
.hnx-t-nav {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.hnx-t-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(38,48,28,.18);
  background: transparent;
  color: var(--hnx-green-dark);
  cursor: pointer;
  transition: all .3s ease;
}
.hnx-t-nav button:hover { background: var(--hnx-green); border-color: var(--hnx-green); color: var(--hnx-white); }

/* ======================= FAQ ======================= */
.hnx-faq { padding: 100px 0; }
.hnx-faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.hnx-faq-art { position: relative; }
.hnx-faq-art img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(38, 48, 28, .18);
}
.hnx-faq-list { display: grid; gap: 14px; }
.hnx-faq-item {
  background: var(--hnx-white);
  border-radius: 16px;
  border: 1px solid rgba(38,48,28,.08);
  overflow: hidden;
}
.hnx-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--hnx-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--hnx-green-dark);
}
.hnx-faq-q .plus {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--hnx-green-light);
  color: var(--hnx-green);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease, color .3s ease;
  font-size: 13px;
}
.hnx-faq-item.is-open .hnx-faq-q .plus {
  background: var(--hnx-gold);
  color: var(--hnx-green-deep);
  transform: rotate(45deg);
}
.hnx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.hnx-faq-item.is-open .hnx-faq-a { max-height: 220px; }
.hnx-faq-a p {
  font-family: var(--hnx-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--hnx-ink-soft);
  padding: 0 24px 22px;
  margin: 0;
}

/* ======================= INSIGHTS / BLOG ======================= */
.hnx-insights { padding: 100px 0; }
.hnx-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hnx-insight {
  background: var(--hnx-white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(38,48,28,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hnx-insight:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(38,48,28,.12); }
.hnx-insight-art {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.hnx-insight-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.hnx-insight:hover .hnx-insight-art img { transform: scale(1.06); }
.hnx-insight-body { padding: 26px 28px 30px; }
.hnx-insight-meta {
  display: flex;
  gap: 16px;
  font-family: var(--hnx-eyebrow);
  font-size: 12px;
  color: var(--hnx-ink-soft);
  margin-bottom: 12px;
}
.hnx-insight-body h3 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--hnx-green-dark);
  margin: 0 0 16px;
}
.hnx-insight-body h3 a { color: inherit; text-decoration: none; }
.hnx-insight-body a.hnx-read {
  font-family: var(--hnx-eyebrow);
  font-size: 13px;
  font-weight: 600;
  color: var(--hnx-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ======================= CTA ======================= */
.hnx-cta-wrap { padding: 0 0 100px; }
.hnx-cta {
  background: var(--hnx-green-deep);
  border-radius: 32px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hnx-cta-text h2 {
  font-family: var(--hnx-display);
  font-weight: 500;
  font-size: 34px;
  color: var(--hnx-white);
  margin: 0 0 12px;
  max-width: 480px;
}
.hnx-cta-text h2 em { color: var(--hnx-gold); font-style: italic; font-weight: 400; }
.hnx-cta-text p {
  font-family: var(--hnx-body);
  color: #C9D4BE;
  font-size: 15.5px;
  max-width: 440px;
  margin: 0;
}
.hnx-cta-actions { position: relative; z-index: 2; }

/* ======================= FOOTER TWEAKS ======================= */
.hnx-footer-eyebrow {
  font-family: var(--hnx-eyebrow);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hnx-gold);
}

/* ======================= FOOTER ======================= */
.hnx-footer {
  background: var(--hnx-green-deep);
  padding: 80px 0 0;
}
.hnx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hnx-footer-brand .hnx-footer-logo { display: inline-block; margin-bottom: 20px; }
.hnx-footer-brand .hnx-footer-logo img { width: 130px; height: auto; }
.hnx-footer-brand p {
  font-family: var(--hnx-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: #C9D4BE;
  max-width: 320px;
  margin: 0 0 22px;
}
.hnx-footer-social { display: flex; gap: 10px; }
.hnx-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--hnx-white);
  text-decoration: none;
  transition: all .3s ease;
  font-size: 14px;
}
.hnx-footer-social a:hover { background: var(--hnx-gold); border-color: var(--hnx-gold); color: var(--hnx-green-deep); }
.hnx-footer-col .hnx-footer-eyebrow { display: block; margin-bottom: 20px; }
.hnx-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hnx-footer-col ul li a {
  font-family: var(--hnx-body);
  font-size: 14.5px;
  color: #C9D4BE;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}
.hnx-footer-col ul li a:hover { color: var(--hnx-gold); padding-left: 4px; }
.hnx-footer-contact li {
  font-family: var(--hnx-body);
  font-size: 14.5px;
  color: #C9D4BE;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.hnx-footer-contact li i { color: var(--hnx-gold); margin-top: 4px; font-size: 13px; }
.hnx-footer-contact li a { color: #C9D4BE; text-decoration: none; transition: color .3s ease; }
.hnx-footer-contact li a:hover { color: var(--hnx-gold); }
.hnx-footer-bottom { padding: 24px 0; }
.hnx-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.hnx-footer-bottom-row p {
  font-family: var(--hnx-body);
  font-size: 13px;
  color: #9AA894;
  margin: 0;
}
@media (max-width: 991px) {
  .hnx-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .hnx-footer-grid { grid-template-columns: 1fr; }
  .hnx-footer-bottom-row { flex-direction: column; text-align: center; }
}

/* ======================= HEADER ======================= */
.hnx-header { position: relative; z-index: 999; }
.hnx-header .container-fluid {
  max-width: 1320px;
  margin: -12px auto;
  padding: 0 122px !important;
}
@media (max-width: 1399px) {
  .hnx-header .container-fluid { padding: 0 60px !important; }
}
@media (max-width: 1199px) {
  .hnx-header .container-fluid { padding: 0 40px !important; }
}
@media (max-width: 767px) {
  .hnx-header .container-fluid { padding: 0 20px !important; }
}
@media (max-width: 480px) {
  .hnx-header .container-fluid { padding: 0 15px !important; }
}
.hnx-header .header-main { padding: 26px 0; transition: padding .35s ease; }
.hnx-header .logo a img { width: 108px !important; height: auto; transition: width .35s ease; }

.hnx-header .main-menu ul li { margin-inline-end: 40px; }
.hnx-header .main-menu ul li a {
  font-family: var(--hnx-eyebrow);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: none;
  color: var(--hnx-ink);
  padding: 10px 0;
  position: relative;
}
.hnx-header .main-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 2px;
  background: var(--hnx-gold);
  transition: width .3s ease;
}
.hnx-header .main-menu ul li:hover > a,
.hnx-header .main-menu ul li.active > a {
  color: var(--hnx-green);
}
.hnx-header .main-menu ul li:hover > a::after,
.hnx-header .main-menu ul li.active > a::after {
  width: 100%;
}
.hnx-header .header-right-items { gap: 56px; }
.hnx-header .header-right .hnx-btn { padding: 13px 24px; font-size: 13.5px; }
.hnx-header .header__hamburger .sidebar__toggle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(38,48,28,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--hnx-green-dark);
  cursor: pointer;
  transition: all .3s ease;
}
.hnx-header .header__hamburger .sidebar__toggle:hover {
  background: var(--hnx-green);
  border-color: var(--hnx-green);
  color: var(--hnx-white);
}
@media (max-width: 1199px) {
  .hnx-header .header-right-items { gap: 24px; }
}
@media (max-width: 767px) {
  .hnx-header .header-right-items { gap: 16px; }
  .hnx-header .header-right { gap: 12px !important; }
  .hnx-header .header-right .hnx-btn { padding: 10px 16px; font-size: 12.5px; }
  .hnx-header .header__hamburger .sidebar__toggle { width: 40px; height: 40px; }
}
@media (max-width: 400px) {
  .hnx-header .header-right-items { gap: 10px; }
  .hnx-header .header-right { gap: 8px !important; }
  .hnx-header .header-right .hnx-btn { padding: 8px 12px; font-size: 11.5px; }
  .hnx-header .header__hamburger .sidebar__toggle { width: 36px; height: 36px; font-size: 13px; }
  .hnx-header .logo a img { width: 84px !important; }
}

/* Sticky state */
.hnx-header.sticky {
  background: rgba(251, 247, 238, .92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 34px rgba(38,48,28,.1) !important;
  animation: none !important;
}
.hnx-header.sticky .header-main { padding: 16px 0; }
.hnx-header.sticky .logo a img { width: 88px !important; }

/* ======================= OFFCANVAS ======================= */
.hnx-offcanvas { background: var(--hnx-cream) !important; border-left: none !important; }
.hnx-offcanvas .offcanvas__close button {
  background: transparent;
  border: 1px solid rgba(38,48,28,.18);
  color: var(--hnx-green-dark);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.hnx-offcanvas .offcanvas__close button:hover { background: var(--hnx-gold); border-color: var(--hnx-gold); color: var(--hnx-green-deep); }
.hnx-offcanvas .mean-container .mean-nav ul li a { color: var(--hnx-ink); }
.hnx-offcanvas .social-icon a {
  background: transparent !important;
  border: 1px solid rgba(38,48,28,.18);
  color: var(--hnx-green-dark) !important;
}
.hnx-offcanvas .social-icon a:hover { background: var(--hnx-gold) !important; border-color: var(--hnx-gold); color: var(--hnx-green-deep) !important; }
.hnx-offcanvas .offcanvas__contact h3 {
  font-family: var(--hnx-display);
  color: var(--hnx-green-dark);
}
.hnx-offcanvas .offcanvas__contact .contact-list li span { color: var(--hnx-gold); }
.hnx-offcanvas .offcanvas__contact .contact-list li a,
.hnx-offcanvas .offcanvas__contact .contact-list li { color: var(--hnx-ink-soft); }
.hnx-offcanvas .offcanvas__contact .contact-list li a:hover { color: var(--hnx-green); }

@media (max-width: 1199px) {
  .hnx-header .header-main { padding: 18px 0; }
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1199px) {
  .hnx-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .hnx-programs-grid { grid-template-columns: repeat(2, 1fr); }
  .hnx-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hnx-team-grid { grid-template-columns: repeat(2, 1fr); }
  .hnx-insights-grid { grid-template-columns: repeat(2, 1fr); }
  .hnx-price-card.is-popular { transform: none; }
}
@media (max-width: 991px) {
  .hnx-hero-photo-inner { min-height: 600px; padding: 150px 0 90px; }
  .hnx-hero-photo-copy h1 { font-size: 44px; }
  .hnx-about-grid { grid-template-columns: 1fr; }
  .hnx-about-art img { height: 380px; }
  .hnx-about-quote { position: static; margin-top: 24px; max-width: 100%; }
  .hnx-faq-grid { grid-template-columns: 1fr; }
  .hnx-faq-art img { height: 340px; }
  .hnx-stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .hnx-stat:nth-child(2)::after { display: none; }
  .hnx-path-rail { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .hnx-path-rail::before { display: none; }
}
@media (max-width: 767px) {
  .hnx-heading { font-size: 32px !important; }
  .hnx-hero-photo-copy h1 { font-size: 32px !important; }
  .hnx-hero-photo-inner { min-height: 520px; padding: 130px 0 70px; }
  .hnx-hero-photo-badges { gap: 20px; }
  .hnx-hero-slider-nav { display: none; }
  .hnx-pillars-grid, .hnx-programs-grid, .hnx-pricing-grid, .hnx-team-grid, .hnx-insights-grid {
    grid-template-columns: 1fr;
  }
  .hnx-cta { padding: 46px 30px; flex-direction: column; text-align: center; }
  .hnx-cta-text h2, .hnx-cta-text p { max-width: 100%; }
  .hnx-hero-badges { gap: 20px; }
  .hnx-head-row { margin-bottom: 36px; }
}
