/* ============================================================
   ZEELIE — styles.css
   Organised by section. Add new section styles at the bottom.
   ============================================================

   TABLE OF CONTENTS
   -----------------
   1.  Base Reset & Body
   2.  Design Tokens (CSS Variables)
   3.  Typography Utilities
   4.  Buttons
   5.  Announcement Bar
   6.  Header & Navigation
   7.  Mobile Menu
   8.  Hero Section
   9.  Ticker Bar
   10. [STEP 3] Trust Bar  ← add here
   11. [STEP 3] Features   ← add here
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   1. BASE RESET & BODY
──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}


/* ────────────────────────────────────────────────────────────
   2. DESIGN TOKENS
──────────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --leaf:          #3A8A3F;
  --leaf-bright:   #52B756;
  --leaf-light:    #EEF6EE;
  --leaf-mid:      #C4E0C5;
  --forest:        #1B3A1F;
  --amber:         #F5A623;
  --amber-light:   #FEF3DC;

  /* Neutrals */
  --bg-base:       #F9FAF7;
  --text-primary:  #1C1C1C;
  --text-muted:    #6B7280;
  --text-body:     #4B5563;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(58,138,63,0.15);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 60px rgba(27,58,31,0.14);
}


/* ────────────────────────────────────────────────────────────
   3. TYPOGRAPHY UTILITIES
──────────────────────────────────────────────────────────── */
.font-display {
  font-family: 'Syne', sans-serif;
}


/* ────────────────────────────────────────────────────────────
   4. BUTTONS
──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--leaf);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(58,138,63,0.25);
}
.btn-primary:hover {
  background-color: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,58,31,0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Large variant */
.btn-primary-lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(58,138,63,0.35);
}

/* Ghost / outline variant */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  border: 1.5px solid var(--leaf-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--leaf);
  background-color: var(--leaf-light);
  transform: translateY(-1px);
}


/* ────────────────────────────────────────────────────────────
   5. ANNOUNCEMENT BAR
──────────────────────────────────────────────────────────── */
.announcement-bar {
  background-color: var(--forest);
  color: var(--leaf-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}
.announcement-bar a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.4rem;
}
.announcement-bar a:hover {
  text-decoration: underline;
}

.badge-new {
  background-color: var(--leaf-bright);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}


/* ────────────────────────────────────────────────────────────
   6. HEADER & NAVIGATION
──────────────────────────────────────────────────────────── */
#main-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#main-header.scrolled {
  background-color: rgba(249,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,58,31,0.08), 0 4px 24px rgba(0,0,0,0.06);
}

.logo-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: var(--forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--leaf);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover          { color: var(--leaf); }
.nav-link:hover::after   { width: 100%; }


/* ────────────────────────────────────────────────────────────
   7. MOBILE MENU
──────────────────────────────────────────────────────────── */
#mobile-menu {
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
#hamburger.open .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* ────────────────────────────────────────────────────────────
   8. HERO SECTION
──────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-base);
  min-height: calc(100vh - 88px);
}

/* Subtle dot grid background */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,58,31,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,31,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 0;
  pointer-events: none;
}

/* Ambient colour blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(82,183,86,.16) 0%, transparent 70%);
  top: -100px; right: -60px;
}
.blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  bottom: 40px; left: -40px;
}

/* ── Entrance animations ── */
.hero-animate { opacity: 0; }
.hero-animate.visible { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.38s; }
.delay-4 { animation-delay: 0.52s; }
.delay-5 { animation-delay: 0.66s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Tag pill ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--leaf-light);
  border: 1px solid var(--leaf-mid);
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-dot {
  width: 6px; height: 6px;
  background-color: var(--leaf-bright);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* ── Headline ── */
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--forest);
}
.hl-green { color: var(--leaf); }

/* ── "POSsible" tagline row ── */
.tagline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tagline-sep { color: var(--leaf-mid); }
.possible-word { font-style: italic; color: var(--text-muted); }
.possible-pos {
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subheading copy ── */
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.72;
  max-width: 490px;
}

/* ── Social proof avatar stack ── */
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -10px;
  overflow: hidden;
  background-color: var(--leaf-mid);
}
.avatar-stack .av:first-child { margin-left: 0; }
.avatar-stack .av img { width: 100%; height: 100%; object-fit: cover; }

/* ── Floating stat cards ── */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 10;
}
.sc-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; line-height: 1.2; }
.sc-value { font-size: 1rem; font-weight: 700; color: var(--forest); font-family: 'Syne', sans-serif; line-height: 1.2; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }

.sc-1 { top: 12%; left: -44px;  animation: floatA 4.0s ease-in-out infinite; }
.sc-2 { bottom: 18%; right: -36px; animation: floatB 4.5s ease-in-out infinite 1s; }
.sc-3 { bottom: -14px; left: 50%; transform: translateX(-50%); animation: floatC 5.0s ease-in-out infinite 0.5s; white-space: nowrap; }

/* ── Decorative spinning rings ── */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(82,183,86,0.3);
  pointer-events: none;
}
@keyframes spinSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.ring-1 { width:120px; height:120px; top:-28px; right:-28px; animation: spinSlow 20s linear infinite; }
.ring-2 { width:72px;  height:72px;  bottom:50px; left:-16px; animation: spinSlow 14s linear infinite reverse; }

/* ── Responsive overrides ── */
@media (max-width: 768px) {
  .sc-1 { left: 6px; top: -16px; }
  .sc-2 { right: 6px; }
  .sc-3 { display: none; }
}


/* ────────────────────────────────────────────────────────────
   9. TICKER BAR
──────────────────────────────────────────────────────────── */
.ticker-wrap {
  background-color: var(--forest);
  padding: 0.72rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
/* Fade edges */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--forest), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--forest), transparent); }

.ticker-inner {
  display: flex;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--leaf-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--leaf-bright);
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────
   10. TRUST BAR
──────────────────────────────────────────────────────────── */
.trust-bar {
  background-color: #fff;
  border-top: 1px solid var(--leaf-light);
  border-bottom: 1px solid var(--leaf-light);
  padding: 3.5rem 0;
}

.trust-bar__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Logo row */
.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-bottom: 3rem;
}

.trust-logo {
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.trust-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.trust-logo svg {
  height: 28px;
  width: auto;
  display: block;
}

/* Stats row */
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--leaf-light);
  border-radius: 16px;
  padding: 1.6rem 2rem;
}

.trust-stat {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  padding: 0.5rem 2.5rem;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 0.15rem;
  position: relative;
}

.trust-stat__number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-stat__suffix {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--leaf);
  line-height: 1;
}
.trust-stat__label {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.trust-stat__divider {
  width: 1px;
  height: 40px;
  background: var(--leaf-mid);
  align-self: center;
}

@media (max-width: 640px) {
  .trust-stat { padding: 0.75rem 1.5rem; }
  .trust-stat__divider { display: none; }
  .trust-stats { gap: 0.5rem; }
}


/* ────────────────────────────────────────────────────────────
   11. FEATURES SECTION
──────────────────────────────────────────────────────────── */
.features-section {
  padding: 6rem 0;
  background-color: var(--bg-base);
}

/* ── Shared section header pattern (reused across sections) ── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-tag {
  display: inline-block;
  background: var(--leaf-light);
  border: 1px solid var(--leaf-mid);
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--forest);
}
.section-title--green { color: var(--leaf); }

.section-sub {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Feature cards grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.feature-card {
  background: #fff;
  border: 1.5px solid var(--leaf-light);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--leaf-bright));
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: 18px 18px 0 0;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27,58,31,0.10);
  border-color: var(--leaf-mid);
}
.feature-card:hover::before { opacity: 1; }

/* Accent variant (first card — slightly different bg) */
.feature-card--accent {
  background: linear-gradient(145deg, #fff 60%, var(--leaf-light));
}

.feature-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.68;
  flex: 1;
}

.feature-card__tag {
  display: inline-flex;
  align-items: center;
  background: var(--leaf-light);
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

/* ── Bottom CTA ── */
.features-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3.5rem;
}
.features-cta__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Scroll-in animation for cards */
.feature-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.feature-card.in-view:hover {
  transform: translateY(-5px);
}

/* Stagger delays for grid */
.feature-card:nth-child(1) { transition-delay: 0.00s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.40s; }

/* ────────────────────────────────────────────────────────────
   12. HOW IT WORKS
──────────────────────────────────────────────────────────── */
.hiw-section {
  padding: 6rem 0;
  background: #fff;
  border-top: 1px solid var(--leaf-light);
}

.hiw-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Horizontal connector line on desktop */
.hiw-connector {
  position: absolute;
  top: 52px;
  left: calc(16.66% + 26px);
  right: calc(16.66% + 26px);
  z-index: 0;
  pointer-events: none;
}
.hiw-connector__line {
  height: 2px;
  background: linear-gradient(90deg, var(--leaf-mid), var(--leaf-bright), var(--leaf-mid));
  border-radius: 2px;
}

/* Step card */
.hiw-step {
  background: var(--bg-base);
  border: 1.5px solid var(--leaf-light);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hiw-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27,58,31,0.09);
  border-color: var(--leaf-mid);
}

/* Step number (large faded) */
.hiw-step__number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--leaf-light);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.hiw-step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--leaf-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hiw-step__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.hiw-step__desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.68;
  flex: 1;
}

.hiw-step__badge {
  display: inline-flex;
  align-items: center;
  background: var(--leaf-light);
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

/* Scroll-in animation */
.hiw-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hiw-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hiw-animate:nth-child(2) { transition-delay: 0.12s; }
.hiw-animate:nth-child(3) { transition-delay: 0.24s; }

@media (max-width: 768px) {
  .hiw-track { grid-template-columns: 1fr; }
  .hiw-connector { display: none; }
}


/* ────────────────────────────────────────────────────────────
   13. PRODUCT SHOWCASE
──────────────────────────────────────────────────────────── */
.showcase-section {
  padding: 0;
  overflow: hidden;
}

.showcase-inner {
  background-color: var(--forest);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Ambient blobs */
.showcase-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.showcase-blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,86,0.14) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.showcase-blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

/* Section tag — light variant for dark bg */
.section-tag--light {
  background: rgba(82,183,86,0.2);
  border-color: rgba(82,183,86,0.35);
  color: var(--leaf-bright);
}

.showcase-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 0.5rem;
}
.showcase-title em {
  font-style: italic;
  color: var(--leaf-bright);
}

.showcase-sub {
  font-size: 1rem;
  color: var(--leaf-mid);
  line-height: 1.72;
  max-width: 440px;
  margin-top: 0.5rem;
}

/* Stat list */
.showcase-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.showcase-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.showcase-stat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showcase-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.showcase-stat-label {
  font-size: 0.82rem;
  color: var(--leaf-mid);
  font-weight: 400;
}

.showcase-cta {
  margin-top: 2.5rem;
  background: var(--leaf-bright);
}
.showcase-cta:hover {
  background: #fff;
  color: var(--forest);
}

/* Scroll-in */
.showcase-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.showcase-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Copy column layout */
.showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ────────────────────────────────────────────────────────────
   14. TESTIMONIALS
──────────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 6rem 0;
  background: var(--leaf-light);
  border-top: 1px solid var(--leaf-mid);
  border-bottom: 1px solid var(--leaf-mid);
}

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

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* Base card */
.testi-card {
  background: #fff;
  border: 1.5px solid var(--leaf-mid);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,58,31,0.10);
}

/* Featured (centre) card */
.testi-card--featured {
  background: var(--forest);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(27,58,31,0.25);
}
.testi-card--featured:hover {
  transform: translateY(-14px);
}

/* Large decorative quote mark */
.testi-card__quote {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--leaf-light);
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}
.testi-card__quote--light { color: rgba(82,183,86,0.25); }

.testi-card__stars {
  display: flex;
  gap: 2px;
}

.testi-card__text {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--text-body);
  font-style: normal;
  flex: 1;
}
.testi-card--featured .testi-card__text { color: var(--leaf-mid); }

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--leaf-light);
}
.testi-card--featured .testi-card__author { border-top-color: rgba(196,224,197,0.2); }

.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--leaf-mid);
}
.testi-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testi-card__name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.testi-card--featured .testi-card__name { color: #fff; }

.testi-card__role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 1px;
}
.testi-card--featured .testi-card__role { color: var(--leaf-mid); }

.testi-card__badge {
  display: inline-flex;
  width: fit-content;
  background: var(--leaf-light);
  color: var(--leaf);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
}
.testi-card__badge--light {
  background: rgba(82,183,86,0.18);
  color: var(--leaf-bright);
}

/* Scroll-in */
.testi-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testi-animate.in-view { opacity: 1; transform: translateY(0); }
.testi-card--featured.testi-animate.in-view { transform: translateY(-8px); }
.testi-animate:nth-child(2) { transition-delay: 0.12s; }
.testi-animate:nth-child(3) { transition-delay: 0.24s; }


/* ────────────────────────────────────────────────────────────
   15. PRICING
──────────────────────────────────────────────────────────── */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-base);
}

/* Billing toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: #fff;
  border: 1.5px solid var(--leaf-mid);
  border-radius: 10px;
  padding: 0.3rem;
  width: fit-content;
  margin: 0 auto 3.5rem;
}
.pricing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.pricing-toggle__btn--active {
  background: var(--forest);
  color: #fff;
}
.pricing-toggle__save {
  background: var(--leaf-bright);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* Pricing card base */
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--leaf-light);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,58,31,0.09);
}

/* Featured (middle) card */
.pricing-card--featured {
  background: var(--forest);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 28px 72px rgba(27,58,31,0.28);
}
.pricing-card--featured:hover { transform: translateY(-18px); }

/* Popular badge */
.pricing-card__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--leaf), var(--leaf-bright));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}

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

.pricing-card__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__name {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-card__name { color: #fff; }

.pricing-card__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-card--featured .pricing-card__tagline { color: var(--leaf-mid); }

/* Price display */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}
.pricing-card__currency {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--leaf);
  line-height: 1;
}
.pricing-card__amount {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
}
.pricing-card--featured .pricing-card__amount { color: #fff; }
.pricing-card--featured .pricing-card__currency { color: var(--leaf-bright); }
.pricing-card__amount--custom {
  font-size: 1.9rem;
  color: var(--forest);
}
.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 2px;
}
.pricing-card--featured .pricing-card__period { color: var(--leaf-mid); }

/* Feature list */
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-body);
}
.pricing-card--featured .pricing-feat { color: var(--leaf-mid); }

.pricing-feat::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-feat--yes::before {
  background-color: var(--leaf-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%233A8A3F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-card--featured .pricing-feat--yes::before {
  background-color: rgba(82,183,86,0.2);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2352B756' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-feat--no {
  opacity: 0.4;
}
.pricing-feat--no::before {
  background-color: #F0F0F0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* CTA button in card */
.pricing-card__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* Footnote */
.pricing-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  line-height: 1.6;
}
.pricing-note strong { color: var(--forest); }

/* Scroll-in */
.pricing-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pricing-animate.in-view { opacity: 1; transform: translateY(0); }
.pricing-card--featured.pricing-animate.in-view { transform: translateY(-12px); }
.pricing-animate:nth-child(2) { transition-delay: 0.12s; }
.pricing-animate:nth-child(3) { transition-delay: 0.24s; }

/* ────────────────────────────────────────────────────────────
   16. INTEGRATIONS
──────────────────────────────────────────────────────────── */
.integrations-section {
  padding: 6rem 0;
  background: #fff;
  border-top: 1px solid var(--leaf-light);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .integrations-grid { grid-template-columns: 1fr; }
}

/* Category block */
.integ-category { display: flex; flex-direction: column; gap: 0.9rem; }

.integ-category__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 2px;
}

.integ-cards-row {
  display: flex;
  gap: 1rem;
}

/* Single integration card */
.integ-card {
  flex: 1;
  background: var(--bg-base);
  border: 1.5px solid var(--leaf-light);
  border-radius: 14px;
  padding: 1.1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.integ-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(27,58,31,0.09);
  border-color: var(--leaf-mid);
}
.integ-card--more {
  border-style: dashed;
  opacity: 0.7;
}
.integ-card--more:hover { opacity: 1; }

.integ-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.integ-card__icon svg { width: 100%; height: 100%; }

.integ-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}

/* Bottom CTA */
.integrations-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-top: 1rem;
}
.integrations-cta__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Scroll-in */
.integ-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.integ-animate.in-view { opacity: 1; transform: translateY(0); }
.integ-animate:nth-child(2) { transition-delay: 0.1s; }
.integ-animate:nth-child(3) { transition-delay: 0.2s; }
.integ-animate:nth-child(4) { transition-delay: 0.3s; }


/* ────────────────────────────────────────────────────────────
   17. CTA BANNER
──────────────────────────────────────────────────────────── */
.cta-banner {
  background-color: var(--forest);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(82,183,86,0.18) 0%, transparent 70%);
  top: -100px; left: -80px;
}
.cta-blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  bottom: -60px; right: -60px;
}

.cta-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(82,183,86,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,183,86,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Tag pill */
.cta-banner .hero-tag {
  border-color: rgba(196,224,197,0.35);
  background: rgba(82,183,86,0.15);
  color: var(--leaf-bright);
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.cta-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(82,183,86,0.15);
  border: 1px solid rgba(196,224,197,0.35);
  color: var(--leaf-bright);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-banner__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.cta-banner__title--accent { color: var(--leaf-bright); }

.cta-banner__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--leaf-mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

/* White CTA button */
.cta-btn-white {
  background: #fff !important;
  color: var(--forest) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15) !important;
}
.cta-btn-white:hover {
  background: var(--leaf-light) !important;
  color: var(--forest) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2) !important;
}

/* Outline call button */
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.cta-btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.cta-banner__note {
  font-size: 0.8rem;
  color: rgba(196,224,197,0.65);
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* ────────────────────────────────────────────────────────────
   18. FOOTER
──────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--forest);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(82,183,86,0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* Brand column */
.footer-logo { color: #fff !important; }
.footer-logo:hover { opacity: 0.9; }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-brand__desc {
  font-size: 0.875rem;
  color: var(--leaf-mid);
  line-height: 1.65;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.footer-social__link {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(82,183,86,0.12);
  border: 1px solid rgba(82,183,86,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.footer-social__link:hover {
  background: var(--leaf);
  color: #fff;
  transform: translateY(-2px);
}

/* Nav columns */
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
}

.footer-nav-col__title {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-nav-col a {
  font-size: 0.875rem;
  color: var(--leaf-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  display: inline-block;
}
.footer-nav-col a:hover { color: #fff; }

/* Contact column */
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--leaf-mid);
  line-height: 1.7;
  margin-top: 0.25rem;
}

.footer-email,
.footer-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--leaf-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover,
.footer-phone:hover { color: #fff; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(58,138,63,0.15);
  border: 1px solid rgba(58,138,63,0.3);
  color: var(--leaf-mid);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-top: 0.4rem;
  width: fit-content;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,183,86,0.25), transparent);
  margin-bottom: 1.5rem;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(196,224,197,0.5);
  font-weight: 400;
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.5rem;
}
.footer-bottom__legal a {
  font-size: 0.8rem;
  color: rgba(196,224,197,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom__legal a:hover { color: var(--leaf-mid); }