/* ================================================================
   HEALTHY HUNGER — Landing Page Stylesheet
   Figma → Web | Nunito + Inter | Mobile-first responsive
   ================================================================ */

/* ── Custom Properties ── */
:root {
  --hh-darkest: #00462E;
  --hh-dark: #004d33;
  --hh-green: #158555;
  --hh-mid: #168553;
  --hh-deep: #006A3F;
  --hh-light: #22AD6E;
  --hh-lime: #BDE80D;
  --hh-text: #151313;
  --hh-muted: #484848;
  --hh-gray: #F5F5F5;
  --hh-white: #FFFFFF;

  --font: 'Nunito', sans-serif;
  --font-b: 'Inter', sans-serif;

  --pad: clamp(1.25rem, 5vw, 8.75rem);
  --cmax: 1720px;
  --r-card: 19.87px;
  --r-btn: 10px;
  --shadow: 0px 39.73px 130px rgba(30, 43, 62, 0.10);
  --trans: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--hh-text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--cmax);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Outer-pad wrapper (for rounded green cards) ── */
.outer-pad {
  background: #fff;
  padding: clamp(1rem, 1vw, 1rem) 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.15;
  border-radius: var(--r-btn);
  padding: 0.6375rem 1.65rem;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lime {
  background: #BDE80D;
  color: var(--hh-text);
}

.btn-lime:hover,
.btn-lime:focus-visible {
  background: #cef040;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(189, 232, 13, 0.35);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-glass-dark {
  background: rgba(0, 70, 46, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 8px;
  font-weight: 700;
}

/* ── Section labels / eyebrows ── */
.section-eyebrow {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hh-lime);
  margin-bottom: 0.875rem;
}

.section-eyebrow.green {
  color: var(--hh-green);
}

.section-eyebrow.center {
  text-align: center;
}

/* ── Section headings ── */
.section-heading {
  font-size: clamp(2rem, 3.8vw, 3.4375rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--hh-text);
  margin-bottom: 1.25rem;
}

.section-heading.white {
  color: #fff;
}

.section-heading.center {
  text-align: center;
}

/* ── Reveal animation (JS-triggered) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Keyframes ── */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(12px)
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: .30
  }

  50% {
    opacity: .65
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--hh-darkest) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-img {
  height: 38px;
  width: auto;
}

/* Nav link typography & transitions */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #fff !important;
}

/* ── Primary nav — active state & underline indicator ── */
.navbar-nav.nav-primary .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.navbar-nav.nav-primary .nav-link::after {
  content: '';
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--hh-lime);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.navbar-nav.nav-primary .nav-link:hover,
.navbar-nav.nav-primary .nav-link:focus-visible {
  color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-nav.nav-primary .nav-link:hover::after,
.navbar-nav.nav-primary .nav-link:focus-visible::after {
  transform: scaleX(0.55);
  opacity: 0.45;
}

.navbar-nav.nav-primary .nav-link.is-active {
  color: var(--hh-lime) !important;
}

.navbar-nav.nav-primary .nav-link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar-nav.nav-primary .nav-link.is-active:hover,
.navbar-nav.nav-primary .nav-link.is-active:focus-visible {
  color: var(--hh-lime) !important;
}

/* ── Header actions (language + login) ── */
.nav-actions {
  width: 100%;
}

@media (min-width: 992px) {
  .nav-actions {
    width: auto;
    flex-shrink: 0;
  }
}

/* ── Language selector dropdown ── */
.nav-lang-wrap {
  position: relative;
  display: inline-flex;
}

.nav-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 5.25rem;
  padding: 0.5rem 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.nav-lang-trigger::after {
  margin-left: 0.15rem;
  border-top-color: rgba(255, 255, 255, 0.65);
  transition: border-top-color 0.22s ease, transform 0.22s ease;
}

.nav-lang-trigger:hover,
.nav-lang-trigger:focus-visible,
.nav-lang-wrap.show .nav-lang-trigger {
  border-color: var(--hh-lime);
  color: var(--hh-lime);
  background: rgba(189, 232, 13, 0.08);
  box-shadow: 0 0 0 3px rgba(189, 232, 13, 0.12);
}

.nav-lang-trigger:hover::after,
.nav-lang-trigger:focus-visible::after,
.nav-lang-wrap.show .nav-lang-trigger::after {
  border-top-color: var(--hh-lime);
}

.nav-lang-trigger:focus-visible {
  outline: none;
}

.nav-lang-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.85;
}

.nav-lang-current {
  min-width: 2rem;
  text-align: left;
}

.nav-lang-menu {
  min-width: 13.5rem;
  margin-top: 0.65rem !important;
  padding: 0.5rem;
  border: 1px solid rgba(0, 70, 46, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 4px 6px rgba(0, 70, 46, 0.04),
    0 18px 40px rgba(0, 70, 46, 0.14);
  animation: navLangFadeIn 0.22s ease;
}

@keyframes navLangFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-lang-menu-label {
  padding: 0.35rem 0.75rem 0.5rem;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 70, 46, 0.45);
  list-style: none;
}

.nav-lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--hh-darkest);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-lang-option:hover,
.nav-lang-option:focus-visible {
  background: rgba(21, 133, 85, 0.08);
  color: var(--hh-green);
  outline: none;
}

.nav-lang-option:active {
  transform: scale(0.98);
}

.nav-lang-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.nav-lang-option-name {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-lang-option-code {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 70, 46, 0.45);
  transition: color 0.2s ease;
}

.nav-lang-option:hover .nav-lang-option-code,
.nav-lang-option:focus-visible .nav-lang-option-code {
  color: rgba(21, 133, 85, 0.7);
}

.nav-lang-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-lang-option.is-active {
  background: rgba(189, 232, 13, 0.14);
  color: var(--hh-darkest);
}

.nav-lang-option.is-active .nav-lang-option-code {
  color: var(--hh-green);
}

.nav-lang-option.is-active .nav-lang-check {
  background: var(--hh-lime);
  color: var(--hh-darkest);
}

.nav-lang-option.is-switching {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .navbar-nav.nav-primary .nav-link {
    width: 100%;
    padding: 0.65rem 1rem;
  }

  .navbar-nav.nav-primary .nav-link::after {
    display: none;
  }

  .navbar-nav.nav-primary .nav-link.is-active {
    background: rgba(189, 232, 13, 0.12);
    color: var(--hh-lime) !important;
    box-shadow: inset 3px 0 0 var(--hh-lime);
  }

  .navbar-nav.nav-primary .nav-link:hover:not(.is-active),
  .navbar-nav.nav-primary .nav-link:focus-visible:not(.is-active) {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-lang-wrap {
    width: 100%;
  }

  .nav-lang-trigger {
    width: 100%;
    justify-content: center;
  }

  .nav-lang-menu {
    width: 100%;
    min-width: 0;
  }
}

.nav-login {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-login:hover {
  color: var(--hh-lime) !important;
}

/* ── Header login popover (v2) ── */
.nav-login-wrap {
  position: relative;
  display: inline-flex;
}

.nav-login-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.55rem 1.35rem;
  border: 1.5px solid var(--hh-lime);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-login-trigger:hover,
.nav-login-wrap.is-open .nav-login-trigger {
  border-color: #BDE80D;
  color: #BDE80D;
  background: rgba(189, 232, 13, 0.06);
  box-shadow: 0 0 0 3px rgba(189, 232, 13, 0.12);
}

.nav-login-trigger:focus-visible {
  outline: none;
  border-color: #BDE80D;
  box-shadow: 0 0 0 3px rgba(189, 232, 13, 0.28);
}

.nav-login-backdrop {
  display: none;
}

.nav-login-popover {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 1080;
  width: min(22.5rem, calc(100vw - 2rem));
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 70, 46, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 70, 46, 0.04),
    0 18px 40px rgba(0, 70, 46, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-login-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-login-popover[hidden] {
  display: block;
}

.nav-login-popover-arrow {
  position: absolute;
  top: -7px;
  right: 1.75rem;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 70, 46, 0.08);
  border-left: 1px solid rgba(0, 70, 46, 0.08);
  transform: rotate(45deg);
}

.nav-login-popover-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.nav-login-popover-eyebrow {
  margin: 0;
  padding-top: 0.15rem;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #5f6f68;
  line-height: 1.45;
}

.nav-login-popover-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #6b7a73;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-login-popover-close:hover {
  background: rgba(21, 133, 85, 0.08);
  color: #00462E;
}

.nav-login-popover-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nav-login-field {
  position: relative;
  display: block;
}

.nav-login-field-icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  transform: translateY(-50%);
  display: inline-flex;
  color: #8a9a92;
  pointer-events: none;
  transition: color 0.2s ease;
}

.nav-login-input {
  width: 100%;
  height: 3rem;
  padding: 0 2.75rem 0 2.65rem;
  border: 1.5px solid #dde5e0;
  border-radius: 10px;
  background: #fafcfb;
  color: #1a2420;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-login-input::placeholder {
  color: #9aa8a1;
  font-weight: 400;
}

.nav-login-input:hover {
  border-color: #b8cfc3;
  background: #ffffff;
}

.nav-login-input:focus {
  outline: none;
  border-color: #158555;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(189, 232, 13, 0.22);
}

.nav-login-field:focus-within .nav-login-field-icon {
  color: #158555;
}

.nav-login-eye-btn {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #8a9a92;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-login-eye-btn:hover {
  color: #158555;
  background: rgba(21, 133, 85, 0.08);
}

.nav-login-popover-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.35rem;
}

.nav-login-forgot {
  align-self: flex-end;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #158555;
  transition: color 0.2s ease;
}

.nav-login-forgot:hover {
  color: #00462E;
}

.nav-login-error {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.22);
  color: #b42318;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}

.nav-login-error[hidden] {
  display: none;
}

.nav-login-input.is-invalid {
  border-color: #e35d6a;
  background: #fff8f8;
}

.nav-login-input.is-invalid:focus {
  border-color: #e35d6a;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.16);
}

.nav-login-field:focus-within .nav-login-input.is-invalid + .nav-login-eye-btn,
.nav-login-field:has(.nav-login-input.is-invalid) .nav-login-field-icon {
  color: #c94c59;
}

.nav-login-submit {
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 10px; 
  background: linear-gradient(135deg, #BDE80D 0%, #126f47 100%);
  color: #ffffff;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(21, 133, 85, 0.28);
}

.nav-login-submit:hover {
  background: linear-gradient(135deg, #158555 0%, #126f47 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 70, 46, 0.32);
}

.nav-login-submit:active {
  transform: translateY(0);
}

.nav-login-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(189, 232, 13, 0.35), 0 8px 20px rgba(21, 133, 85, 0.28);
}

.nav-login-submit:disabled,
.nav-login-submit.is-loading {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

@media (max-width: 991.98px) {
  .nav-login-wrap {
    width: 100%;
    justify-content: center;
  }

  .nav-login-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1070;
    background: rgba(0, 70, 46, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .nav-login-backdrop.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .nav-login-popover {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -48%) scale(0.96);
    transform-origin: center;
    width: min(22.5rem, calc(100vw - 2rem));
  }

  .nav-login-popover.is-open {
    transform: translate(-50%, -50%) scale(1);
  }

  .nav-login-popover-arrow {
    display: none;
  }
}

body.nav-login-open {
  overflow: hidden;
}

/* Mobile responsive collapse style */
@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  background: var(--hh-darkest);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(5rem, 9vw, 8rem);
}

/* Glow blobs */
.hero-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  animation: pulseGlow 7s ease-in-out infinite;
}

.glow-tr {
  width: 488px;
  height: 488px;
  right: -60px;
  top: 310px;
  background: #158555;
  filter: blur(147px);
  animation-delay: 0s;
}

.glow-tr2 {
  width: 348px;
  height: 348px;
  right: -40px;
  top: -120px;
  background: #168553;
  filter: blur(105px);
  animation-delay: 1s;
}

.glow-top {
  width: 726px;
  height: 374px;
  left: 50%;
  top: -187px;
  transform: translateX(-5%);
  background: #168553;
  opacity: .55;
  filter: blur(112px);
  animation-delay: 2s;
}

.glow-bl {
  width: 488px;
  height: 488px;
  left: -244px;
  top: 180px;
  background: #158555;
  filter: blur(147px);
  animation-delay: 3s;
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 160px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 160px);
  pointer-events: none;
}

/* Grid cell highlights (Figma white rectangles) */
.hero-grid-overlay::before,
.hero-grid-overlay::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.hero-grid-overlay::before {
  width: 159px;
  height: 160px;
  right: calc(50% - 480px - 160px);
  top: 160px;
}

.hero-grid-overlay::after {
  width: 159px;
  height: 160px;
  left: calc(50% + 480px);
  top: 320px;
}

/* Inner container — z-index keeps content above glow blobs */
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hh-lime);
  background: rgba(189, 232, 13, 0.12);
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  border: 1px solid rgba(189, 232, 13, 0.25);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.25rem, 3.8vw, 5.3125rem);
  font-weight: 800;
  /* Super bold & premium */
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* .hero-ctas replaced by Bootstrap d-flex gap-3 utilities in HTML */

.hero-footnote {
  font-size: clamp(1rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* .hero-footnote::before {
  content: '✦';
  color: var(--hh-lime);
  font-size: 1.2rem;
  line-height: 1;
} */

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(380px, 50vw, 560px);
}

/* Rings behind phone */
.hv-ring {
  position: absolute;
  top: 15%;
  left: 5%;
  pointer-events: none;
}

.hv-ring2 {
  position: absolute;
  top: 4%;
  right: -10%;
  pointer-events: none;
}

.hv-ring-outer {
  height: 500px;
}

.hv-ring-inner {
  height: 350px;
}

/* Floating cards */
.hv-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  box-shadow: -4px 7px 17px rgba(58, 0, 97, 0.10), -15px 27px 31px rgba(58, 0, 97, 0.09);
  z-index: 3;
}

.hv-card-rating {
  bottom: 0;
  left: -14%;
  animation: floatA 5s ease-in-out infinite;
}

/* .hv-card-premium {
  bottom: 170px;
  right: -35%;
  animation: floatB 5.5s ease-in-out infinite 1.5s;
} */

.float-a {
  animation: floatA 5s ease-in-out infinite;
}

.float-b {
  animation: floatB 5.5s ease-in-out infinite 1.5s;
}

.rating-stars {
  color: #F89D33;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.star-dim {
  opacity: 0.5;
}

.rating-val {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--hh-text);
}

.premium-crown {
  flex-shrink: 0;
  display: block;
}

.premium-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Hero person wrapper — animation lives here so tablet-logo floats with image */
.hero-person-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  animation: floatA 6s ease-in-out infinite 0.4s;
}

/* Hero person (woman with tablet) */
.hero-person {
  height: clamp(320px, 46vw, 522px);
  width: auto;
  object-fit: contain;
  display: block;
  /* filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.30)); */
}

/* Rocket badge — top-right of the circle */
.hero-rocket {
  /* top: clamp(10px, 3vw, 30px);
  right: clamp(95px, -1vw, 10px);
  width: clamp(72px, 8vw, 100px); */
  position: absolute;
  top: clamp(1px, 2vw, 120px);
  right: clamp(-10px, -1vw, 10px);
  width: clamp(72px, 8vw, 100px);
  z-index: 4;
}

/* Curved arrow — absolute inside hero-visual, pointing from left toward woman */
.hero-arrow {
  position: absolute;
  left: clamp(-110px, -7vw, -60px);
  top: 50%;
  transform: translateY(-30%);
  width: clamp(80px, 7vw, 115px);
  z-index: 5;
  opacity: 0.92;
  pointer-events: none;
}

/* White logo card — positioned % relative to .hero-person-wrap / .hero-person-stage */
.hero-tablet-logo {
  position: absolute;
  left: 40.5%;
  top: 49.9%;
  width: 23%;
  height: 28%;
  background: #ffffff;
  border-radius: 5px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
  transform: rotate(-4.6deg);
}

.hero-tablet-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* School landing — ring wraps behind head, in front of body */
.hero-visual-school {
  --hero-person-split: 27%;
  overflow: visible;
}

.hero-visual-school .hero-person-stage {
  position: relative;
  display: inline-block;
  line-height: 0;
  animation: floatA 6s ease-in-out infinite 0.4s;
}

.hero-visual-school .hero-person-body {
  position: relative;
  z-index: 1;
  clip-path: ellipse(69% 64% at 52% 36%);
  -webkit-clip-path: ellipse(69% 64% at 52% 36%);
}

.hero-visual-school .hero-person-head {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  filter: none;
  clip-path: inset(0 0 calc(100% - var(--hero-person-split)) 0);
  -webkit-clip-path: inset(0 0 calc(100% - var(--hero-person-split)) 0);
}

.hero-visual-school .hv-ring-inner {
  z-index: 0;
}

.hero-visual-school .hv-ring-outer {
  z-index: 0;
}

.hero-visual-school .hero-tablet-logo {
  z-index: 4;
}

/* Headline oval highlight ("second job.") */
.headline-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0 0.5rem;
}

.headline-oval {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  /* width: 112%; */
  height: 200%;
  pointer-events: none;
  opacity: 0.95;
}

/* ================================================================
   PARTNERS
   ================================================================ */
.partners-section {
  background: #fff;
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.partners-label {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hh-text);
  margin-bottom: 2.75rem;
}

.partners-track-wrap {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: running;
}

.p-img {
  flex-shrink: 0;
  width: clamp(120px, 20vw, 240px);
  height: clamp(30px, 4vw, 42px);
  object-fit: contain;
  padding: 0 1rem;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ================================================================
   WHY HEALTHY HUNGER
   ================================================================ */
.why-section {
  position: relative;
  background-color: #ffffff;
  padding: clamp(4rem, 7vw, 7rem) 0;
  overflow: hidden;
  z-index: 1;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vw;
  max-width: 1200px;
  max-height: 1200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(21, 133, 85, 0.08) 0%, rgba(21, 133, 85, 0.03) 40%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section .section-heading {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  position: relative;
  z-index: 2;
}

/* New layout: left card, center phone, right card (integrated with Bootstrap 5 row) */
.why-layout-new {
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

/* Left card: white card with illustration - aligns to top */
.why-card-left {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  align-self: start;
}

.why-left-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

/* Center phone - stays vertically centered */
.why-phone-new {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  align-self: center;
}

.why-phone-img {
  width: clamp(220px, 20vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
}

.why-play-btn {
  position: absolute;
  top: 51.5%;
  left: 49%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 3;
}

.why-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.why-label-bottom-left {
  position: absolute;
  bottom: clamp(60px, 8vw, 100px);
  left: clamp(-160px, -15vw, -180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.why-arrow-bl {
  width: clamp(60px, 6vw, 80px);
  height: auto;
}

.why-label-top-right {
  position: absolute;
  top: clamp(60px, 8vw, 100px);
  right: clamp(-140px, -12vw, -160px);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.why-arrow-tr {
  width: clamp(60px, 6vw, 80px);
  height: auto;
}

.why-phone-label-text {
  font-family: var(--font);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--hh-text);
  text-align: center;
  white-space: nowrap;
}

/* Right card: white card with badge and text - aligns to bottom */
.why-card-right {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
  min-height: 220px;
  justify-content: center;
  align-self: end;
}

.why-right-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  align-self: flex-start;
}

.why-badge-text {
  display: inline-flex;
  background: linear-gradient(90deg, #006A3F 0%, #168553 100%);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font);
  font-size: clamp(0.625rem, 0.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.why-badge-arrow {
  height: clamp(28px, 3.5vw, 40px);
  width: auto;
  opacity: 0.8;
}

.why-right-heading {
  font-family: var(--font);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--hh-text);
}

/* Why description */
.why-desc {
  text-align: center;
  max-width: 862px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--hh-muted);
}

/* ================================================================
   FULL-SERVICE DIFFERENCE
   ================================================================ */
.difference-wrap {
  background-color: #ffffff;
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.difference-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(21, 133, 85, 0.07) 0%, rgba(21, 133, 85, 0.025) 45%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Three-card row is handled natively by Bootstrap 5 row and columns */

.diff-card-new {
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card-new:hover {
  transform: translateY(-5px);
}

/* White cards (left + right) */
.diff-card-white {
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.5rem) 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

/* Heading at top of white cards */
.diff-card-heading {
  font-family: var(--font);
  font-size: clamp(0.9375rem, 1.15vw, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--hh-text);
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* Photo at bottom of white cards */
.diff-card-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  margin-top: auto;
}

/* Green center card */
.diff-card-green {
  background: linear-gradient(154deg, #158555 7%, #00462E 105%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: clamp(2rem, 3.5vw, 3rem);
  position: relative;
}

.diff-logo-white {
  position: absolute;
  top: clamp(1.75rem, 3vw, 2.5rem);
  right: clamp(1.75rem, 3vw, 2.5rem);
  height: clamp(36px, 4vw, 50px);
  width: auto;
}

.diff-green-heading {
  font-family: var(--font);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.diff-green-sub {
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================================
   BEFORE/AFTER COMPARISON
   ================================================================ */
.comparison-section {
  background: linear-gradient(154deg, #158555 7%, #00462E 105%);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Comparison wrap is handled natively by Bootstrap 5 row and columns */

/* Left column: text + CTA */
.comparison-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.comparison-eyebrow {
  font-family: var(--font);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hh-lime);
}

.comparison-heading {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.comparison-desc {
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.05vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}


/* Comparison columns — no card background, transparent */
.comparison-col {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
}

.comparison-diy {
  position: relative;
}

@media (min-width: 992px) {
  .comparison-diy::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
  }
}

.comparison-icon-wrap {
  width: clamp(40px, 5vw, 52px);
  height: clamp(40px, 5vw, 52px);
  background: var(--hh-lime);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.comparison-icon {
  width: clamp(20px, 2.5vw, 28px);
  height: auto;
}

.comparison-col-heading {
  font-family: var(--font);
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 1.5vw, 1.125rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  font-family: var(--font);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.25rem;
  position: relative;
}

.comparison-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 1.25em;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 150%;
  transform: translate(-50%, -30%);
  background: radial-gradient(ellipse at center, rgba(21, 133, 85, 0.08) 0%, rgba(21, 133, 85, 0.02) 40%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.section-heading-left {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--hh-text);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
  position: relative;
}

@media (min-width: 992px) {
  .steps-flow {
    min-height: clamp(380px, 40vw, 520px);
  }
}

/* Curved connector line — spans full width */
.steps-curve {
  position: absolute;
  left: 0;
  width: 90%;
  bottom: clamp(140px, 15vw, 175px);
  height: auto;
  opacity: 0.65;
  pointer-events: none;
  z-index: 2;
}

/* Individual step — column flex */
.step-new {
  display: flex;
  flex-direction: column;
}

/* Vertical positioning — diagonal stagger */
.step-1 {
  align-self: end;
}

.step-2 {
  align-self: center;
}

.step-3 {
  align-self: start;
}

/* Marker: bullet + large faded number side by side */
.step-marker {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  position: relative;
}

.step-bullet {
  width: clamp(22px, 2.8vw, 30px);
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.step-number-img {
  height: clamp(60px, 8vw, 105px);
  width: auto;
  opacity: 0.45;
  display: block;
  position: relative;
  z-index: 1;
}

/* Step content below the marker */
.step-content {
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.step-heading {
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--hh-text);
  margin-bottom: clamp(0.4rem, 0.8vw, 0.625rem);
}

.step-text {
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--hh-muted);
}

/* ================================================================
   QUOTE BANNER
   ================================================================ */
.quote-wrap {
  background: linear-gradient(154.16deg, #158555 7.82%, #00462E 105.84%);
  border-radius: var(--r-card);
  margin: 0 clamp(0.75rem, 2.5vw, 3rem);
  position: relative;
  overflow: hidden;
  /* Figma: 393px height at 1640px width → 23.96vw */
  min-height: clamp(220px, 23.96vw, 393px);
  display: flex;
  align-items: stretch;
}

.quote-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

/* Quote mark images — pinned to card corners */
.q-mark {
  position: absolute;
  width: clamp(36px, 3.5vw, 56px);
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.q-open {
  top: clamp(1.25rem, 3vw, 2rem);
  left: clamp(1.5rem, 4vw, 3rem);
}

.q-close {
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.5rem, 4vw, 3rem);
}

/* Inner: vertically + horizontally centered text */
.quote-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(3rem, 10vw, 9rem);
  position: relative;
  z-index: 1;
}

.q-text {
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

/* ================================================================
   CUSTOMER REVIEWS
   ================================================================ */
.reviews-section {
  padding: clamp(4rem, 4vw, 7rem) 0;
  background: #fff;
}

.reviews-section .section-heading {
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 55px 150px rgba(30, 43, 62, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.review-quote-icon {
  width: clamp(28px, 2.5vw, 36px);
  height: auto;
}

.review-stars {
  color: #FACC15;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--hh-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.25rem;
}

.review-av-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hh-text);
}

.review-role {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(21, 19, 19, 0.50);
  margin-top: 2px;
}

/* ================================================================
   STATS
   ================================================================ */
.stats-outer {
  padding: 2.5rem 0;
}

.stats-wrap {
  background: linear-gradient(146.74deg, #158555 3.08%, #00462E 75.28%);
  border-radius: var(--r-card);
  margin: 0 clamp(0.75rem, 2.5vw, 3rem);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.stats-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sg {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(80px);
  animation: pulseGlow 10s ease-in-out infinite;
}

.sg-1 {
  width: 400px;
  height: 400px;
  right: -100px;
  top: -100px;
  animation-delay: 0s;
}

.sg-2 {
  width: 400px;
  height: 400px;
  left: -100px;
  bottom: -80px;
  animation-delay: 4s;
}

.stats-wrap .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-size: clamp(2.5rem, 4.5vw, 4.375rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-lbl {
  font-size: clamp(0.7rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

/* ================================================================
   STATS + CTA MERGED
   ================================================================ */
.stats-cta-outer {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

.stats-cta-wrap {
  background: linear-gradient(146.74deg, #158555 3.08%, #00462E 75.28%);
  border-radius: var(--r-card);
  margin: 0 clamp(0.75rem, 2.5vw, 3rem);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.stats-cta-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stats-cta-container {
  position: relative;
  z-index: 1;
}

.stats-cta-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}

.check-box-img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  object-fit: contain;
}

.cta-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}

.cta-highlight .dollar-big {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cta-highlight .dollar-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0;
}

/* ================================================================
   CTA / WALK THROUGH
   ================================================================ */
.cta-outer {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.cta-wrap {
  background: linear-gradient(146.74deg, #158555 3.08%, #00462E 75.28%);
  border-radius: var(--r-card);
  margin: 0 clamp(0.75rem, 2.5vw, 3rem);
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.cta-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cg {
  position: absolute;
  border-radius: 50%;
  background: #158555;
  filter: blur(147px);
  animation: pulseGlow 8s ease-in-out infinite;
}

.cg-1 {
  width: 488px;
  height: 488px;
  right: -80px;
  top: -80px;
  animation-delay: 0s;
}

.cg-2 {
  width: 300px;
  height: 300px;
  left: 280px;
  bottom: -50px;
  animation-delay: 3s;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.cta-body {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 664px;
  margin: 1.25rem 0 2rem;
}

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-checklist::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 25px;
  left: 18px;
  border-left: 1px dashed rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.check-box-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--hh-lime);
  border-radius: 8px;
}

.check-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.check-sub {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.2rem;
}

.cta-see-fit {
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

/* CTA visual */
.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-img-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 0.8;
}

.cta-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(189, 232, 13, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.cta-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 40%, rgba(189, 232, 13, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(21, 133, 85, 0.20) 0%, transparent 50%);
}

.cta-dollar-badge {
  position: absolute;
  bottom: 28px;
  right: -18px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  text-align: center;
  animation: floatB 5s ease-in-out infinite;
}

.dollar-big {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.dollar-sub {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(21, 133, 85, 0.07) 0%, rgba(21, 133, 85, 0.02) 40%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.soc-btn {
  width: 44px;
  height: 44px;
  background: rgba(26, 26, 26, 0.09);
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.soc-btn:hover {
  background: var(--hh-green);
  color: #fff;
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2rem;
}

.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(27, 28, 28, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--hh-green);
}

.footer-copy {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(27, 28, 28, 0.55);
}

/* ================================================================
   RESPONSIVE — TABLET (≤1100px)
   ================================================================ */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
    width: 100%;
    max-width: 480px;
  }

  .hv-ring-outer {
    width: 420px;
    height: 420px;
  }

  .hv-ring-inner {
    width: 330px;
    height: 330px;
  }

  .hero-person {
    height: clamp(260px, 60vw, 400px);
  }

  .hero-rocket {
    width: clamp(60px, 10vw, 82px);
  }

  .hero-tablet-logo {
    padding: 6px 8px;
    border-radius: 7px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-footnote {
    justify-content: center;
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
  }

  .hero-arrow {
    display: none;
  }

  /* Why grid elements handled natively by Bootstrap 5 grid row */

  /* Difference and Comparison layout grids handled natively by Bootstrap 5 grid row */
  .diff-card-white {
    min-height: auto !important;
    padding: 1.75rem 1.75rem 1.25rem !important;
  }

  .diff-card-heading {
    margin-bottom: 1.5rem !important;
  }

  .diff-card-green {
    padding: 2.5rem 1.75rem;
    min-height: 220px;
  }

  .diff-card-photo {
    max-height: 280px;
    object-fit: cover;
    border-radius: 10px;
  }

  .steps-flow {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-curve {
    display: none;
  }

  .step-1,
  .step-2,
  .step-3 {
    align-self: flex-start;
  }

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

  .review-card {
    padding: 1.5rem 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    display: flex;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤640px)
   ================================================================ */
@media (max-width: 640px) {
  :root {
    --pad: 1.25rem;
  }

  .hv-ring-outer {
    width: 85vw !important;
    height: 85vw !important;
  }

  .hv-ring-inner {
    width: 65vw !important;
    height: 65vw !important;
  }

  .hv-card {
    padding: 8px 12px !important;
    border-radius: 10px !important;
    gap: 6px !important;
  }

  .hv-card-rating {
    bottom: 15px !important;
    left: 4% !important;
    right: auto !important;
  }

  .hv-card-premium {
    bottom: 90px !important;
    right: 3px !important;
    top: auto !important;
  }

  .rating-stars {
    font-size: 0.9rem !important;
  }

  .rating-val {
    font-size: 0.9rem !important;
  }

  .premium-label {
    font-size: 0.85rem !important;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .quote-wrap,
  .stats-wrap,
  .cta-wrap,
  .stats-cta-wrap {
    margin: 0 0.75rem;
  }

  .hide-mobile {
    display: none;
  }

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

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

  .footer-top {
    padding-bottom: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .cta-checklist {
    gap: 1rem;
  }

  .check-title {
    font-size: 1rem;
  }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ================================================================ */
@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 2.25rem;
  }

  .hv-card-premium {
    display: none !important;
  }
}

/* ================================================================
   HOMEPAGE CUSTOM ADDITIONS
   ================================================================ */
.home-hero {
  background: linear-gradient(135deg, #022F1E 0%, #0D5C3B 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.headline-arrow {
  position: absolute;
  right: -35px;
  bottom: -25px;
  width: 40px;
  height: 40px;
}

.hero-kids-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.kids-backdrop {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, #BDE80D 0%, transparent 70%);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.kids-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.kids-badge-canada {
  position: absolute;
  bottom: 8%;
  left: -5%;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  max-width: 260px;
  animation: floatA 6s ease-in-out infinite;
}

.canada-leaf-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.canada-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hh-text);
  line-height: 1.2;
}

.home-section-pad {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

/* ── White bg with a single small green glow accent (bottom-left corner only) ── */
.bg-green-tint {
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 40% 50% at 0% 100%, rgba(21, 133, 85, 0.10) 0%, transparent 70%);
}

/* Card Graph 35M */
.card-graph-35m {
  background: linear-gradient(135deg, #158555 0%, #00462E 100%);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 320px;
  box-shadow: 0 15px 35px rgba(0, 70, 46, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.graph-svg-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  pointer-events: none;
  opacity: 0.85;
}

.graph-svg-line {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4px;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s ease-out forwards;
}

.graph-svg-gradient {
  fill: url(#graphGradient);
}

.graph-dots circle {
  fill: #fff;
  stroke: #BDE80D;
  stroke-width: 3px;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.graph-overlay-card {
  background: #00301F;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.graph-overlay-title {
  color: #BDE80D;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.graph-overlay-body {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

/* Why Video Block */
.why-video-block {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.why-video-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 46, 30, 0.92) 0%, rgba(0, 46, 30, 0.3) 100%);
  z-index: 1;
}

.why-video-content {
  position: relative;
  z-index: 2;
  max-width: 450px;
  color: #fff;
}

.why-video-play-btn {
  position: absolute;
  left: 65%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: none;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(189, 232, 13, 0.4);
}

.why-video-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #158555;
  margin-left: 6px;
}

@media (max-width: 991px) {
  .why-video-block {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .why-video-block::before {
    background: rgba(0, 46, 30, 0.85);
  }

  .why-video-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .why-video-play-btn {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .why-video-play-btn:hover {
    transform: scale(1.1);
  }
}

/* Row role card design */
.role-card-wrapper {
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.role-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.role-card-img-col {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.role-card-content-col {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.role-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hh-text);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ================================================================
   HOMEPAGE — Hero Section
   ================================================================ */

/* ── Ambient Glow Decorations ── */
.hero-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.glow-tr {
  width: clamp(280px, 35vw, 500px);
  height: clamp(280px, 35vw, 500px);
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, #BDE80D 0%, transparent 65%);
  opacity: 0.22;
}

.glow-tr2 {
  width: clamp(200px, 25vw, 360px);
  height: clamp(200px, 25vw, 360px);
  top: 15%;
  right: 5%;
  background: radial-gradient(circle, #22AD6E 0%, transparent 65%);
  opacity: 0.3;
  animation: floatB 9s ease-in-out infinite;
}

.glow-top {
  width: clamp(300px, 40vw, 600px);
  height: clamp(180px, 22vw, 350px);
  top: -5%;
  left: 25%;
  background: radial-gradient(ellipse, #158555 0%, transparent 70%);
  opacity: 0.18;
}

.glow-bl {
  width: clamp(200px, 28vw, 420px);
  height: clamp(200px, 28vw, 420px);
  bottom: -15%;
  left: -8%;
  background: radial-gradient(circle, #BDE80D 0%, transparent 65%);
  opacity: 0.15;
  animation: floatA 11s ease-in-out infinite;
}

/* ── Grid Overlay ── */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

/* ── Hero Inner Container ── */
.hero-inner {
  position: relative;
  z-index: 2;
}

/* ── Hero Eyebrow ── */
.hero-eyebrow {
  display: inline-block;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hh-lime);
  background: rgba(189, 232, 13, 0.12);
  border: 1px solid rgba(189, 232, 13, 0.3);
  border-radius: 50px;
  padding: 0.35em 1.1em;
  margin-bottom: 1.2rem;
}

/* ── Hero Headline ── */
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

/* ── Headline Highlight (SVG underline + arrow) ── */
.headline-highlight {
  position: relative;
  display: inline-block;
  color: var(--hh-lime);
  white-space: nowrap;
}

.headline-oval {
  position: absolute;
  /* left: -4%; */
  bottom: -18px;
  width: 108%;
  height: auto;
  pointer-events: none;
  overflow: visible;
}

/* ── Hero Body & Footnote ── */
.hero-body {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-footnote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  max-width: 460px;
}

/* ── Responsive hero text ── */
@media (max-width: 991.98px) {

  .hero-body,
  .hero-footnote {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

/* ================================================================
   HOMEPAGE — Partners Section
   ================================================================ */

.partners-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  background: var(--hh-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.partners-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hh-muted);
  margin-bottom: 1.5rem;
}

.p-img {
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* filter: grayscale(100%); */
}

.p-img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-3px);
}

/* ================================================================
   HOW IT WORKS — Parents page (curved path, 4 steps)
   ================================================================ */

.hiw-section {
  padding: clamp(2rem, 2.5vw, 3rem) 0;
  background: #ffffff;
  overflow: visible;
}

/* Heading above the track */
.hiw-header {
  max-width: 520px;
  margin-bottom: 0.5rem;
}

.hiw-main-heading {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--hh-text);
}

/* ── Track container: SVG + absolutely-positioned steps ── */
.hiw-track {
  position: relative;
  height: 520px;
  overflow: visible;
}

/* SVG stretches to fill the track via preserveAspectRatio="none"  */
.hiw-curve-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Base step ── */
.hiw-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 170px;
  /* centre the block on its left% anchor */
  transform: translateX(-50%);
  z-index: 2;
}

/* Wrapper keeps ring + circle perfectly centred */
.hiw-step-node {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

/* Faint outer halo ring */
.hiw-step-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(160, 198, 225, 0.40);
  pointer-events: none;
}

/* Inner number circle */
.hiw-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid #c2d8ea;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #7a9db8;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 18px rgba(0, 80, 150, 0.06);
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hiw-step:hover .hiw-step-circle {
  border-color: var(--hh-green);
  color: var(--hh-green);
  box-shadow: 0 4px 24px rgba(21, 133, 85, 0.14);
}

/* Step text */
.hiw-step-body {
  text-align: center;
}

.hiw-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hh-text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.hiw-step-text {
  font-size: 0.8125rem;
  color: #6a7f90;
  line-height: 1.6;
}

/* ── Step positions
   SVG viewBox: 0 0 1200 520 (preserveAspectRatio="none")
   Circle centres in SVG coords → (x/1200) % left, (y-36)/520 % top

   Step 1 centre: (96,  370) → left 8%,    top = (370-36)/520 = 64.2%
   Step 2 centre: (384, 248) → left 32%,   top = (248-36)/520 = 40.8%
   Step 3 centre: (690, 130) → left 57.5%, top = (130-36)/520 = 18.1%
   Step 4 centre: (960,  42) → left 80%,   top = ( 42-36)/520 =  1.2%
   ── */
.hiw-step-1 {
  left: 8%;
  top: 64%;
}

.hiw-step-2 {
  left: 32%;
  top: 41%;
}

.hiw-step-3 {
  left: 57.5%;
  top: 18%;
}

.hiw-step-4 {
  left: 80%;
  top: 1%;
}

/* ── Tablet (md / lg) ── */
@media (max-width: 991.98px) {
  .hiw-track {
    height: 420px;
  }

  .hiw-step {
    width: 140px;
  }

  .hiw-step-circle {
    width: 60px;
    height: 60px;
    font-size: 0.875rem;
  }

  .hiw-step-ring {
    inset: -10px;
  }

  .hiw-step-node {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
  }

  .hiw-step-title {
    font-size: 0.8125rem;
  }

  .hiw-step-text {
    font-size: 0.75rem;
  }

  /* Recalculate tops for 420px container height, circle r=30
     Step 1: (370/520*420 - 30) = 299-30 = 269px → 64%
     Step 2: (248/520*420 - 30) = 200-30 = 170px → 40.5%
     Step 3: (130/520*420 - 30) = 105-30 = 75px  → 17.9%
     Step 4: ( 42/520*420 - 30) = 34-30  = 4px   → 0.9%
  */
  .hiw-step-1 {
    left: 7%;
    top: 64%;
  }

  .hiw-step-2 {
    left: 31%;
    top: 40%;
  }

  .hiw-step-3 {
    left: 57%;
    top: 18%;
  }

  .hiw-step-4 {
    left: 80%;
    top: 1%;
  }
}

/* ── Mobile: vertical numbered list ── */
@media (max-width: 575.98px) {
  .hiw-section {
    padding: 3rem 0 4rem;
  }

  .hiw-track {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Hide the SVG path on small screens */
  .hiw-curve-svg {
    display: none;
  }

  .hiw-step {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid #edf2f7;
    gap: 1.25rem;
  }

  .hiw-step:last-child {
    border-bottom: none;
  }

  .hiw-step-node {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .hiw-step-body {
    text-align: left;
    padding-top: 0.2rem;
  }
}

/* ================================================================
   WHY PARENTS LOVE HEALTHY HUNGER (Classrooms Section Redesign)
   ================================================================ */
.love-hh-section {
  padding: clamp(2rem, 3vw, 2.5rem) 0;
  background-color: #fafdfc;
  background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(21, 133, 85, 0.04) 0%, transparent 80%);
}

.love-hh-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.love-hh-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: #111111;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.love-hh-subtitle {
  color: #555555;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 400;
}

.love-hh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.love-hh-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 70, 46, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.love-hh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 70, 46, 0.07);
}

/* Card 2 special orange/red border matching the design image */
.love-hh-card.featured {
  border: 1px solid #FF8E75;
  box-shadow: 0 12px 35px rgba(255, 142, 117, 0.08);
}

.love-hh-card.featured:hover {
  box-shadow: 0 22px 45px rgba(255, 142, 117, 0.16);
}

.love-hh-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.love-hh-icon-box.gray-bg {
  background-color: #f0f4f2;
  color: #158555;
}

.love-hh-icon-box.green-bg {
  background-color: #158555;
  color: #ffffff;
}

.love-hh-icon-box svg {
  width: 24px;
  height: 24px;
}

.love-hh-card-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111111;
  margin-bottom: 1rem;
}

.love-hh-card-text {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .love-hh-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .love-hh-card {
    padding: 2.5rem 2rem;
  }
}

/* ================================================================
   READY TO GET STARTED BANNER
   ================================================================ */
.started-banner {
  background: linear-gradient(135deg, #0e6c43 0%, #064026 100%);
  border-radius: 16px;
  position: relative;
  overflow: visible;
  margin: 0 clamp(0.75rem, 2.5vw, 3rem);
  padding: 4rem clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 70, 46, 0.15);
}

.started-banner-content {
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.started-banner-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.started-banner-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  margin-bottom: 2rem;
  font-weight: 400;
}

.started-banner .btn-lime-cta {
  background-color: #BDE80D;
  color: #1c3614;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(189, 232, 13, 0.2);
}

.started-banner .btn-lime-cta:hover {
  background-color: #d2f720;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(189, 232, 13, 0.35);
}

.started-banner-mascot-wrap {
  position: absolute;
  right: 8%;
  bottom: 0;
  height: 110%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.started-banner-mascot {
  height: 100%;
  width: auto;
  object-fit: contain;
  transform: translateY(12px);
  z-index: 3;
}

.started-banner-shadow {
  position: absolute;
  bottom: -15px;
  width: 140px;
  height: 10px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .started-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    overflow: hidden;
  }

  .started-banner-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .started-banner-mascot-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 200px;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
  }

  .started-banner-mascot {
    height: 100%;
    transform: none;
  }
}

/* ================================================================
   YOU'RE ALWAYS IN CONTROL SECTION (Made in Canada Redesign)
   ================================================================ */
.control-section-img-wrap {
  /* border: 4px solid #3b82f6; */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12);
  display: block;
  transition: transform 0.3s ease;
}

.control-section-img-wrap:hover {
  transform: scale(1.015);
}

.control-section-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.control-badge-card {
  background: #158555;
  border-radius: 20px;
  padding: 1.75rem 2.25rem;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(21, 133, 85, 0.15);
}

.control-badge-icon {
  flex-shrink: 0;
  color: #ffffff;
  margin-top: 0.15rem;
}

.control-badge-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.control-badge-content {
  position: relative;
  z-index: 2;
}

.control-badge-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.control-badge-body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.control-badge-bg-silhouette {
  position: absolute;
  right: -5px;
  bottom: -20px;
  opacity: 0.08;
  color: #ffffff;
  pointer-events: none;
  z-index: 1;
}

.control-badge-bg-silhouette svg {
  width: 90px;
  height: 90px;
}

.control-stats-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  margin-top: 2.5rem;
}

.control-stat-item {
  display: flex;
  flex-direction: column;
}

.control-stat-number {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.1;
}

.control-stat-label {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #555555;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .control-stats-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ================================================================
   LOGIN SCREEN
   ================================================================ */
.login-body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', 'Nunito', sans-serif;
  background-color: #ffffff;
}

.login-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100vw;
}

.login-left {
  width: 50%;
  background-color: #00462e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.login-left-content {
  position: relative;
  z-index: 5;
}

.login-welcome-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  margin-bottom: 0.5rem;
}

.login-signup-prompt {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 500;
}

.login-signup-prompt a {
  color: #BDE80D;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.login-signup-prompt a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.login-kids-graphic {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 65%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.login-kids-img {
  width: 90%;
  max-height: 98%;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

.login-ring {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.login-ring-inner {
  height: clamp(220px, 26vw, 340px);
  bottom: 12%;
  left: 10%;
}

.login-ring-outer {
  height: clamp(320px, 42vw, 520px);
  bottom: 2%;
  right: -5%;
}

.login-right {
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.login-form-container {
  width: 100%;
  max-width: 440px;
}

.login-form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #158555;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
  display: block;
}

.login-form-input {
  width: 100%;
  padding: 1.1rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background-color: #edf2f0;
  font-size: 0.95rem;
  color: #111111;
  transition: all 0.3s ease;
}

.login-form-input::placeholder {
  color: #8fa098;
}

.login-form-input:focus {
  outline: none;
  background-color: #e5ebe8;
  border-color: rgba(21, 133, 85, 0.2);
  box-shadow: 0 0 0 4px rgba(21, 133, 85, 0.08);
}

.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-toggle-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #72847c;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.password-toggle-btn:hover {
  color: #158555;
}

.password-toggle-btn svg {
  width: 20px;
  height: 20px;
}

.login-forgot-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  color: #158555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-forgot-link:hover {
  color: #0d5f3c;
  text-decoration: underline;
}

.login-submit-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: 12px;
  border: none;
  background-color: #BDE80D;
  color: #1c3614;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
}

.login-submit-btn:hover {
  background-color: #d2f720;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(189, 232, 13, 0.3);
}

.login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2.25rem 0;
  color: #72847c;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.login-divider::before {
  margin-right: 1.25rem;
}

.login-divider::after {
  margin-left: 1.25rem;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-social-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-social-login:hover {
  background-color: #f8faf9;
  border-color: #cbd5e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* Responsive banner */
@media (max-width: 991.98px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-left {
    width: 100%;
    min-height: 480px;
    padding: 3rem 2rem 0;
  }

  .login-right {
    width: 100%;
    padding: 4rem 2rem;
  }

  .login-kids-graphic {
    position: relative;
    transform: none;
    left: auto;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
  }
}

.login-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.2s ease;
}

.login-back-btn:hover {
  color: #ffffff;
  transform: translateX(-3px);
  text-decoration: none;
}

.login-back-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}