/* ============================================================
   HENOVAFRESH — COMPLETE REDESIGN v5.2
   Updated: Pure Blend menu + Image-matched footer
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --hero-bg:       #0A1E12;
  --green-bright:  #6DC820;
  --green-btn:     #6DC820;
  --green-dark:    #1B3A2D;
  --green-brand:   #4A8C3E;
  --green-pale:    #EDF5E6;
  --green-light:   #C6E3AA;
  --sage:          #5A7A50;
  --sage-bg:       #8FA882;
  --olive:         #607856;
  --off-white:     #F5F4F2;
  --gray-light:    #F2F2F0;
  --border:        #E2E8DC;
  --text-dark:     #1A1A1A;
  --text-mid:      #3D3D3D;
  --text-gray:     #6B6B6B;
  --white:         #FFFFFF;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-pill:   100px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.15);
  --max-w:         1100px;
}

/* ── NAV override: hide old navs on this page ── */
.hf-nav,
.hf-pub-nav,
.hf-footer,
#hf-back-top { display: none !important; }

/* ============================================================
   INLINE NAV
   ============================================================ */
.hnv-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 30, 18, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hnv-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  gap: 16px;
}
.hnv-nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.hnv-nav-logo-leaf { width: 28px; height: 28px; flex-shrink: 0; }
.hnv-nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.hnv-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.hnv-nav-link:hover,
.hnv-nav-link.active { color: #fff; background: rgba(255,255,255,0.09); }
.hnv-nav-cta {
  background: var(--green-btn);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.hnv-nav-cta:hover { background: #7ED321; transform: translateY(-1px); }
.hnv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hnv-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hnv-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  /* No min-height — let content determine height naturally */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}
.hnv-hero::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(60,130,40,0.45) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hnv-hero-logo-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 42px 24px 0;
}
.hnv-hero-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hnv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 44px 24px 0;
  max-width: 700px;
  margin: 0 auto;
}
.hnv-hero-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.hnv-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(44px, 9vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hnv-hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 28px;
}
.hnv-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hnv-btn-hero-green {
  background: var(--green-btn);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.hnv-btn-hero-green:hover { background: #7ED321; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(109,200,32,0.38); }
.hnv-btn-hero-dark {
  background: rgba(30,30,30,0.85);
  color: rgba(255,255,255,0.9);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.hnv-btn-hero-dark:hover { background: rgba(50,50,50,0.95); transform: translateY(-2px); }

/* ── Single hero image — large, close to buttons, bleeds to bottom ── */
.hnv-hero-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;           /* tightened from 780px */
  margin: 8px auto 0;         /* reduced from 28px — closes gap */
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hnv-hero-main-img {
  width: 100%;
  max-height: 400px;          /* reduced from 520px */
  object-fit: contain;
  object-position: center;    /* was center bottom — that pushed image down inside tall container */
  display: block;
  filter: drop-shadow(0 -8px 32px rgba(0,0,0,0.30));
}

/* ============================================================
   SECTION 2 — WHY CHOOSE HENOVAFRESH
   ============================================================ */
.hnv-why {
  background: #EDEDE9;
  padding: 84px 0 80px;
}
.hnv-why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hnv-why-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
}
.hnv-why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 52px;
  line-height: 1.15;
}
.hnv-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 52px;
}
.hnv-why-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 24px 36px;
  text-align: center;
  border: 1.5px solid #E4EBE0;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hnv-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(74,140,62,0.14);
  border-color: var(--green-light);
}
.hnv-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hnv-why-icon svg { width: 72px; height: 72px; }
.hnv-why-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #2E7D22;
  margin-bottom: 12px;
  line-height: 1.3;
}
.hnv-why-card-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
}
.hnv-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7BD428;
  color: #1A2E10;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 48px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.hnv-btn-green:hover { background: #8AE034; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123,212,40,0.38); }
.hnv-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-dark);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.hnv-btn-dark:hover { background: #333; transform: translateY(-2px); }

/* ============================================================
   SECTION 3 — PURE BLEND MENU  ← REDESIGNED TO MATCH IMAGE 1
   ============================================================ */
.hnv-menu {
  background: #E8E3DA;
  padding: 84px 0 80px;
}
.hnv-menu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hnv-menu-header {
  text-align: center;
  margin-bottom: 52px;
}
/* "Pure Blend" title — large italic serif exactly as in image */
.hnv-menu-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 11vw, 96px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.0;
  font-style: italic;
  letter-spacing: -0.01em;
}
.hnv-menu-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.hnv-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 52px;
}
/* Card — olive-green background, matches image exactly */
.hnv-menu-card {
  background: #4E5E3C;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  transition: all 0.22s;
}
.hnv-menu-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.28); }

/* Product name — bold white, at top of card */
.hnv-menu-card-top {
  padding: 20px 20px 12px;
  flex-shrink: 0;
  min-height: 80px;
  display: flex;
  align-items: flex-start;
}
.hnv-menu-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Product image — light beige middle section, green top/bottom sandwich */
.hnv-menu-card-img-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #EAE5DC;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.hnv-menu-card-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  padding: 8px 12px;
}
.hnv-menu-card:hover .hnv-menu-card-img { transform: scale(1.05); }
.hnv-menu-card-img-placeholder {
  width: 100%;
  min-height: 200px;
  background: #EAE5DC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

/* Pricing section at bottom — green band matches top */
.hnv-menu-card-body {
  padding: 16px 20px 20px;
  background: #4E5E3C;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hnv-menu-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
}
.hnv-menu-price-row span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}
.hnv-menu-price-row span:last-child {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.hnv-menu-footer { text-align: center; }

/* ============================================================
   SECTION 4 — HOW IT WORKS
   ============================================================ */
.hnv-how {
  background: #7A9468;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.hnv-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hnv-how-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hnv-how-header {
  background: rgba(0,0,0,0.22);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin-bottom: 32px;
  text-align: center;
}
.hnv-how-header-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.hnv-how-steps { display: flex; flex-direction: column; gap: 10px; }
.hnv-how-step {
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.hnv-how-step:hover { background: rgba(255,255,255,0.2); }
.hnv-how-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  min-width: 30px;
}
.hnv-how-step-icon { font-size: 30px; flex-shrink: 0; }
.hnv-how-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.hnv-how-machine-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hnv-how-machine-img {
  width: 100%;
  max-width: 330px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

/* ============================================================
   SECTION 5 — HOW HENOVAFRESH VENDING WORKS
   ============================================================ */
.hnv-vending {
  background: #F2F1EE;
  padding: 92px 0 80px;
  position: relative;
  overflow: hidden;
}
.hnv-vending::before {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(109,200,32,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hnv-vending-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hnv-vending-header {
  text-align: center;
  margin-bottom: 56px;
}
.hnv-vending-top-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.hnv-vending-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 5.5vw, 48px);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hnv-vending-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 1.6;
}
.hnv-vending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid #E0DDD8;
  border-radius: 20px;
  overflow: hidden;
  background: #F2F1EE;
  max-width: 860px;
  margin: 0 auto 60px;
}
.hnv-vending-step {
  padding: 42px 36px 40px;
  position: relative;
  transition: background 0.2s;
}
.hnv-vending-step:nth-child(2),
.hnv-vending-step:nth-child(4) { border-left: 1.5px solid #E0DDD8; }
.hnv-vending-step:nth-child(3),
.hnv-vending-step:nth-child(4) { border-top: 1.5px solid #E0DDD8; }
.hnv-vending-step:hover { background: rgba(109,200,32,0.04); }
.hnv-vending-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hnv-vending-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(109,200,32,0.10);
  border: 1.5px solid rgba(109,200,32,0.25);
  flex-shrink: 0;
}
.hnv-vending-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(26,26,26,0.18);
  line-height: 1;
  flex-shrink: 0;
}
.hnv-vending-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hnv-vending-step-text {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.75;
}
.hnv-vending-visual-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.hnv-vending-visual-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 32px;
}
.hnv-vending-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hnv-vending-img-wrap {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hnv-vending-side-img {
  width: 180px;
  height: 260px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.hnv-vending-connector {
  flex: 1;
  min-width: 60px;
  max-width: 180px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

/* ============================================================
   SECTION 6 — FLEXIBLE PAYMENT OPTIONS
   ============================================================ */
.hnv-payment {
  background: #ECEAE5;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hnv-payment-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hnv-payment-header {
  text-align: center;
  margin-bottom: 52px;
}
.hnv-payment-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hnv-payment-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 6.5vw, 58px);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.hnv-payment-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 1.6;
}
.hnv-payment-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
}
.hnv-payment-card--uk       { grid-column: 1; grid-row: 1; }
.hnv-payment-visual-box--uk { grid-column: 2; grid-row: 1; }
.hnv-payment-card--africa   { grid-column: 1; grid-row: 2; }
.hnv-payment-visual-box--ng { grid-column: 2; grid-row: 2; }
.hnv-payment-card {
  background: #F5F4F0;
  border-radius: 20px;
  padding: 40px 38px 36px;
  border: 1.5px solid rgba(0,0,0,0.07);
}
.hnv-payment-card-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hnv-payment-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hnv-payment-methods-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.hnv-payment-stripe-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  flex-shrink: 0;
}
.hnv-payment-region { margin-bottom: 22px; }
.hnv-payment-region-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.hnv-payment-africa-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hnv-payment-list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hnv-payment-list-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #3A3A3A;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}
.hnv-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hnv-payment-powered {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5A5A5A;
  margin-top: 6px;
}
.hnv-payment-powered--arrow { font-weight: 600; }
.hnv-payment-security-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #7A7A7A;
  line-height: 1.7;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.09);
}
.hnv-payment-visual-box {
  border-radius: 20px;
  overflow: hidden;
  background: #C6D8BF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hnv-pay-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

/* ============================================================
   SECTION 7 — CTA
   ============================================================ */
.hnv-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  text-align: center;
  background: #A8B89A;
}
.hnv-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(220,255,150,0.55) 0%, transparent 65%);
  pointer-events: none;
}
.hnv-cta-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D4E1E;
  margin-bottom: 30px;
}
.hnv-cta-title {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 800;
  color: #1A2E10;
  line-height: 1.1;
  margin-bottom: 44px;
}
.hnv-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,60,30,0.7);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 48px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.hnv-cta-btn:hover { background: rgba(30,50,20,0.88); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* ============================================================
   SECTION 8 — FOUNDER & LEADERSHIP
   ============================================================ */
.hnv-team { background: #F5F7F5; padding: 84px 0; }
.hnv-team-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.hnv-team-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 48px;
  line-height: 1.15;
}
.hnv-team-cards { display: flex; flex-direction: column; gap: 20px; }
.hnv-team-card {
  background: #D8E8D0;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.hnv-team-photo-wrap { flex-shrink: 0; width: 110px; }
.hnv-team-photo {
  width: 110px;
  height: 140px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hnv-team-photo-placeholder {
  width: 110px;
  height: 140px;
  border-radius: var(--radius-md);
  background: #B8D4B0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px;
  color: var(--green-dark);
}
.hnv-team-info { flex: 1; }
.hnv-team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 6px;
}
.hnv-team-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.hnv-team-bio {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}
.hnv-vision-card {
  background: #D8E8D0;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  border: 2px solid #BED4B6;
}
.hnv-vision-label {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  font-style: italic;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.hnv-vision-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   SECTION 9 — REVIEWS
   ============================================================ */
.hnv-reviews {
  background: #6B7D5E;
  padding: 84px 0 80px;
  overflow: hidden;
}
.hnv-reviews-inner {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
}
.hnv-reviews-header {
  text-align: center;
  margin-bottom: 40px;
}
.hnv-reviews-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.hnv-reviews-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
}
.hnv-reviews-carousel-wrap { position: relative; }
.hnv-reviews-overflow { overflow: hidden; border-radius: 22px; }
.hnv-reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hnv-review-slide { min-width: 100%; flex-shrink: 0; }
.hnv-review-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 210px;
  padding: 26px 28px 32px;
  display: flex;
  flex-direction: column;
}
.hnv-review-card-bg { position: absolute; inset: -6px; z-index: 0; }
.hnv-review-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.30); z-index: 1; }
.hnv-review-card-content { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; }
.hnv-review-top-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.hnv-review-avatar {
  width: 50px; height: 50px; border-radius: 50%; overflow: hidden;
  border: 2.5px solid rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0;
}
.hnv-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hnv-review-qmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px; color: rgba(255,255,255,0.80); line-height: 0.8;
  display: block; align-self: flex-start; margin-top: -4px; letter-spacing: -0.04em;
}
.hnv-review-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff; line-height: 1.35; margin-top: auto;
}
.hnv-review-card--1 { background: linear-gradient(150deg, #1E3A12 0%, #2D5518 40%, #3A6B20 70%, #1A3010 100%); }
.hnv-review-card--1 .hnv-review-card-bg {
  background: radial-gradient(circle at 70% 30%, rgba(80,140,40,0.55) 0%, transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(30,80,15,0.6) 0%, transparent 50%);
}
.hnv-review-card--2 { background: #4A6B3A; }
.hnv-review-card--2 .hnv-review-card-bg {
  background: radial-gradient(circle at 50% 40%, rgba(100,160,60,0.35) 0%, transparent 60%);
}
.hnv-review-card--3 { background: linear-gradient(150deg, #1C3A10 0%, #2E5020 50%, #183010 100%); }
.hnv-review-card--3 .hnv-review-card-bg {
  background: radial-gradient(circle at 60% 20%, rgba(90,130,50,0.50) 0%, transparent 50%),
              radial-gradient(circle at 30% 75%, rgba(20,60,10,0.55) 0%, transparent 45%);
}
.hnv-reviews-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.hnv-rev-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer; padding: 0; transition: all 0.25s;
}
.hnv-rev-dot.active { background: #fff; transform: scale(1.3); }
.hnv-rev-dot:hover  { background: rgba(255,255,255,0.7); }

/* ============================================================
   SECTION 10 — FOOTER
   ============================================================ */
.hnv-footer { background: #fff; }

.hnv-footer-editorial {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: #E8EBE6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hnv-footer-editorial-text {
  position: relative;
  z-index: 2;
  padding: 64px 0 64px 60px;
}
.hnv-footer-editorial-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A3010;
  margin-bottom: 32px;
  display: block;
}
.hnv-footer-editorial-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 400;
  color: #1A2E10;
  line-height: 1.06;
  max-width: 560px;
}
.hnv-footer-editorial-img-wrap {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hnv-footer-editorial-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 40%, rgba(240,245,235,0.95) 0%, rgba(200,215,190,0.7) 50%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.hnv-footer-editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1.08) contrast(0.92);
}
.hnv-footer-editorial-glass-fallback {
  display: none;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%,
    rgba(255,255,255,0.95) 0%,
    rgba(220,230,210,0.75) 40%,
    rgba(180,200,170,0.40) 70%,
    transparent 100%
  );
  filter: blur(2px);
  position: relative;
  z-index: 2;
}
.hnv-footer-sage {
  background: #8FA882;
  padding: 0;
}
.hnv-footer-sage-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 60px 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.hnv-footer-col-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.hnv-footer-col-tagline .fresh  { color: #2D5520; font-weight: 700; }
.hnv-footer-col-tagline .eco    { color: #2D5520; font-weight: 700; }
.hnv-footer-tagline-text        { color: rgba(255,255,255,0.90); font-weight: 400; }
.hnv-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.hnv-footer-contact-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.hnv-footer-social-row { display: flex; gap: 18px; }
.hnv-footer-social-icon { font-size: 20px; color: rgba(255,255,255,0.80); transition: color 0.2s; text-decoration: none; }
.hnv-footer-social-icon:hover { color: #fff; }
.hnv-footer-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.hnv-footer-links { display: flex; flex-direction: column; gap: 14px; }
.hnv-footer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  transition: color 0.18s;
  line-height: 1;
}
.hnv-footer-link:hover { color: #fff; }
.hnv-footer-contact-col { display: flex; flex-direction: column; gap: 10px; }
.hnv-footer-contact-col-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.hnv-footer-contact-col-item strong {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.hnv-footer-social-row-col3 { display: flex; gap: 18px; margin-top: 16px; }
.hnv-footer-social-icon-lg {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.40);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.2s;
}
.hnv-footer-social-icon-lg:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }
.hnv-footer-bottom {
  background: #8FA882;
  border-top: 1px solid rgba(255,255,255,0.20);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hnv-footer-bottom-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.hnv-fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.hnv-fade-up.in { opacity: 1; transform: none; }
.hnv-d1 { transition-delay: 0.08s; }
.hnv-d2 { transition-delay: 0.16s; }
.hnv-d3 { transition-delay: 0.24s; }
.hnv-d4 { transition-delay: 0.32s; }
.hnv-d5 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — TABLET <= 960px
   ============================================================ */
@media (max-width: 960px) {
  .hnv-how-inner         { grid-template-columns: 1fr; gap: 40px; }
  .hnv-how-machine-wrap  { order: -1; }
  .hnv-how-machine-img   { max-width: 280px; }
  .hnv-footer-editorial  { grid-template-columns: 1fr; }
  .hnv-footer-editorial-img-wrap { height: 320px; }
  .hnv-footer-editorial-text { padding: 52px 40px 48px; }
  .hnv-footer-sage-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 40px 36px; }
}

/* ============================================================
   RESPONSIVE — TABLET PAYMENT <= 820px
   ============================================================ */
@media (max-width: 820px) {
  .hnv-payment-grid {
    display: flex;
    flex-direction: column;
  }
  .hnv-payment-card--uk        { order: 1; }
  .hnv-payment-visual-box--uk  { order: 2; }
  .hnv-payment-card--africa    { order: 3; }
  .hnv-payment-visual-box--ng  { order: 4; }
  .hnv-payment-visual-box { min-height: 260px; }
}

/* ============================================================
   RESPONSIVE — MOBILE <= 640px
   ============================================================ */
@media (max-width: 640px) {
  .hnv-hamburger { display: flex; }
  .hnv-nav-links { display: none; }
  .hnv-nav-cta   { display: none; }

  /* Hero image mobile */
  .hnv-hero-img-wrap  { max-width: 100%; margin-top: 4px; }  /* reduced from 20px */
  .hnv-hero-main-img  { max-height: 300px; }                  /* reduced from 360px */

  .hnv-why-cards { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }

  .hnv-menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 100%; }
  .hnv-menu-card-top { padding: 14px 14px 8px; min-height: 58px; }
  .hnv-menu-card-name { font-size: 14px; }
  .hnv-menu-card-body { padding: 10px 12px 14px; }

  .hnv-payment { padding: 72px 0 64px; }
  .hnv-payment-card { padding: 28px 24px 26px; }
  .hnv-payment-card-heading { font-size: 21px; }
  .hnv-payment-visual-box { min-height: 220px; }

  .hnv-reviews-inner { max-width: 100%; }
  .hnv-review-quote  { font-size: 19px; }
  .hnv-review-qmark  { font-size: 56px; }

  .hnv-team-card        { padding: 20px 18px; gap: 16px; align-items: flex-start; }
  .hnv-team-photo-wrap  { flex-shrink: 0; width: 82px; }
  .hnv-team-photo       { width: 82px; height: 100px; border-radius: 10px; object-fit: cover; object-position: center top; }
  .hnv-team-photo-placeholder { width: 82px; height: 100px; font-size: 20px; }
  .hnv-team-name        { font-size: 15px; margin-bottom: 7px; }
  .hnv-team-bio         { font-size: 13px; line-height: 1.7; }
  .hnv-vision-card      { padding: 32px 20px; }
  .hnv-vision-label     { font-size: 30px; }
  .hnv-vision-text      { font-size: 14px; }

  .hnv-footer-editorial  { grid-template-columns: 1fr; min-height: auto; }
  .hnv-footer-editorial-text { padding: 48px 24px 44px; }
  .hnv-footer-editorial-img-wrap { height: 260px; }
  .hnv-footer-sage-inner { grid-template-columns: 1fr; padding: 36px 24px 32px; gap: 28px; }
  .hnv-footer-bottom     { padding: 18px 24px; }
}

@media (max-width: 400px) {
  .hnv-menu-grid  { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
}