/* =========================================================
   Colours Global — Redesign v2
   Mobile-first, WCAG 2.1 AA, system-font fallback safe.
   Green-dominant palette with vibrant multi-colour accents.
   ========================================================= */

:root {
  /* Brand — Green-dominant */
  --green-900: #052e1f;
  --green-800: #07452d;
  --green-700: #0a5d3d;
  --green-600: #0e7c52;
  --green-500: #12a467;   /* primary */
  --green-400: #1ec97e;
  --green-300: #4ee29c;
  --green-200: #8df0c0;
  --green-100: #d6f9e6;
  --green-50:  #effaf3;

  --ink: #061a13;

  /* Accents — the "Colours" of Colours Global */
  --c-blue:    #1e88e5;
  --c-yellow:  #ffd600;
  --c-red:     #e53935;
  --c-fuchsia: #d81b60;
  --c-orange:  #fb8c00;
  --c-purple:  #8e24aa;
  --c-teal:    #00bfa5;

  /* Legacy aliases used in older selectors */
  --c1: var(--c-red);
  --c2: var(--c-yellow);
  --c3: var(--green-500);
  --c4: var(--c-teal);
  --c5: var(--c-blue);

  --navy-900: var(--green-900);
  --navy-800: var(--green-800);
  --navy-700: var(--green-700);
  --navy-600: var(--green-600);

  /* Surface */
  --bg: #f6fbf7;
  --surface: #ffffff;
  --surface-2: #ecf7ef;
  --border: #d6e7da;
  --border-strong: #b3cfba;

  /* Text */
  --text: #0c2218;
  --text-soft: #345446;
  --text-mute: #607b6e;
  --text-on-dark: #f3fbf5;
  --text-on-dark-soft: #b8d6c4;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(6, 26, 19, 0.06), 0 1px 3px rgba(6, 26, 19, 0.04);
  --shadow-md: 0 4px 12px rgba(6, 26, 19, 0.08), 0 2px 6px rgba(6, 26, 19, 0.05);
  --shadow-lg: 0 20px 50px rgba(6, 26, 19, 0.14), 0 8px 20px rgba(6, 26, 19, 0.07);
  --shadow-glow: 0 0 40px rgba(30, 201, 126, 0.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Type */
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --ff-display: 'Fraunces', 'Inter', Georgia, serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-feature-settings: "kern", "liga", "ss01";
}
p { margin: 0; }

/* Uniform sentence formatting — same font, weight, and casing rules across body text */
p, li, span, label, blockquote, figcaption, .field input, .field textarea, .field select {
  font-family: var(--ff-sans);
  font-feature-settings: "kern", "liga", "calt";
  text-transform: none;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--green-800);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 8px; outline: 3px solid var(--c-yellow); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px; }

:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 124, 82, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(14, 124, 82, 0.45); }

.btn-accent {
  background: linear-gradient(135deg, var(--c-yellow), var(--c-orange));
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(251, 140, 0, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }

.btn-link {
  background: transparent;
  color: var(--green-700);
  padding: 0.95rem 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--green-500);
}
.btn-link:hover { color: var(--green-500); }
.btn-block { width: 100%; }

/* ---------- Edit mode indicator ---------- */
.edit-badge {
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-yellow), var(--c-orange));
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
}
body.edit-mode .edit-badge { display: inline-flex; }
body.edit-mode [data-editable] {
  outline: 2px dashed rgba(30, 201, 126, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
  cursor: text;
  transition: outline-color 0.2s var(--ease);
}
body.edit-mode [data-editable]:hover { outline-color: var(--c-fuchsia); }
body.edit-mode [data-editable]:focus { outline: 2px solid var(--c-orange); background: rgba(255, 214, 0, 0.12); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 46, 31, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  transition: background 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(5, 46, 31, 0.94); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  line-height: 1;
}
.brand-logo {
  display: block;
  height: 76px;                              /* SVG viewBox 1500×490 (≈3.06:1) — Option 5 has its own dark pill */
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.30));
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.38));
}
@media (min-width: 880px) {
  .brand-logo { height: 92px; }
}
.brand-logo-footer {
  height: 112px;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.50));
}
@media (min-width: 880px) {
  .brand-logo-footer { height: 132px; }
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-menu a {
  color: var(--text-on-dark-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-menu a:hover { color: var(--text-on-dark); }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-yellow), var(--green-400));
  transition: width 0.25s var(--ease);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu .nav-cta {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-weight: 600;
}
.nav-menu .nav-cta::after { display: none; }
.nav-menu .nav-cta:hover { background: linear-gradient(135deg, var(--green-700), var(--green-500)); color: #fff; }

.nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; }
}

/* Mobile menu */
@media (max-width: 879px) {
  .nav-menu {
    position: fixed;
    inset: 100px 0 0;
    background: rgba(5, 46, 31, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem var(--gutter) 3rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }
  .nav-menu.open {
    display: flex;
    transform: translateX(0);
  }
  .nav-menu a {
    padding: 1.1rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark);
  }
  .nav-menu .nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    border-bottom: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, var(--green-700), var(--green-900) 70%);
  color: var(--text-on-dark);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 12vw, 9rem);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}
.hero-bg .o1 { width: 480px; height: 480px; background: var(--green-400); top: -100px; left: -120px; }
.hero-bg .o2 { width: 420px; height: 420px; background: var(--c-yellow); bottom: -120px; right: -100px; animation-delay: -4s; opacity: 0.35; }
.hero-bg .o3 { width: 360px; height: 360px; background: var(--c-blue); top: 30%; right: 18%; animation-delay: -8s; opacity: 0.4; }
.hero-bg .o4 { width: 280px; height: 280px; background: var(--c-fuchsia); bottom: 10%; left: 18%; animation-delay: -12s; opacity: 0.3; }

.grid-overlay {
  position: absolute; inset: 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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(20px, -30px); }
}

.hero-inner { position: relative; z-index: 1; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 1.25rem;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 0 rgba(78, 226, 156, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78, 226, 156, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(78, 226, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 226, 156, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(120deg, var(--c-yellow) 0%, var(--green-300) 30%, var(--c-blue) 65%, var(--c-fuchsia) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  max-width: 660px;
  margin: 0 auto 2.25rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-on-dark-soft);
  line-height: 1.55;
}

.hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-soft);
  max-width: 880px;
  margin: 0 auto;
}
.hero-trust li {
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.hero-trust li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-300); margin-right: 0.5rem; flex-shrink: 0;
}
.hero-trust li:nth-child(2)::before { background: var(--c-yellow);  }
.hero-trust li:nth-child(3)::before { background: var(--c-blue);    }
.hero-trust li:nth-child(4)::before { background: var(--c-fuchsia); }
.hero-trust li:nth-child(5)::before { background: var(--c-orange);  }

/* The DC-Certified pill is wide — let it wrap text on narrow screens */
@media (max-width: 640px) {
  .hero-trust li { white-space: normal; max-width: 100%; }
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex; justify-content: center;
}
.scroll-cue span {
  width: 3px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,0.6);
  margin-top: 8px;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Logo strip ---------- */
.logo-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.logo-strip .strip-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.6rem 1.25rem;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.logo-row span[aria-hidden="true"] { color: var(--green-300); }

/* ---------- Section heads ---------- */
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-lede {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}
.section-head .eyebrow { color: var(--green-600); justify-content: center; }
.section-head-light .eyebrow { color: var(--c-yellow); }
.section-head-light h2, .section-head-light .section-lede { color: var(--text-on-dark); }
.section-head-light .section-lede { color: var(--text-on-dark-soft); }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(30, 201, 126, 0.06));
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(30, 201, 126, 0.16), rgba(30, 201, 126, 0.04));
  color: var(--green-600);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, rgba(30, 136, 229, 0.16), rgba(30, 136, 229, 0.04)); color: var(--c-blue); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, rgba(255, 214, 0, 0.22), rgba(255, 214, 0, 0.05)); color: var(--c-orange); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, rgba(216, 27, 96, 0.16), rgba(216, 27, 96, 0.04)); color: var(--c-fuchsia); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, rgba(229, 57, 53, 0.16), rgba(229, 57, 53, 0.04)); color: var(--c-red); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, rgba(0, 191, 165, 0.16), rgba(0, 191, 165, 0.04)); color: var(--c-teal); }
.service-card:nth-child(7) .service-icon { background: linear-gradient(135deg, rgba(142, 36, 170, 0.18), rgba(142, 36, 170, 0.05)); color: var(--c-purple); }

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; font-family: var(--ff-display); }
.service-card p { color: var(--text-soft); font-size: 0.97rem; line-height: 1.6; }

/* Center the 7th card when it's the lone card in the last row */
@media (min-width: 640px) {
  .service-card:nth-child(7):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 0.625rem);
    width: 100%;
  }
}
@media (min-width: 960px) {
  .service-card:nth-child(7):last-child {
    max-width: calc(33.333% - 1rem);
  }
}

/* ---------- Platforms ---------- */
.platforms { background: var(--surface); }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 880px) { .platform-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.platform-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  min-height: 280px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  isolation: isolate;
}
.platform-card::before {
  content: ''; position: absolute; inset: 0;
  z-index: -1;
}
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.platform-atlas::before    { background: linear-gradient(135deg, var(--green-800) 0%, var(--green-500) 100%); }
.platform-connected::before { background: linear-gradient(135deg, var(--c-fuchsia) 0%, var(--c-orange) 100%); }
.platform-fusion::before    { background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-purple) 100%); }

.platform-card::after {
  content: ''; position: absolute;
  top: -40%; right: -20%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.platform-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.platform-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}
.platform-card p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.platform-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: gap 0.2s var(--ease), border-color 0.2s var(--ease);
}
.platform-link:hover { gap: 0.65rem; border-bottom-color: #fff; }

/* ---------- Impact ---------- */
.impact {
  background: linear-gradient(180deg, var(--green-900), var(--green-800));
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 214, 0, 0.12), transparent 50%),
              radial-gradient(ellipse at 10% 80%, rgba(30, 201, 126, 0.18), transparent 50%),
              radial-gradient(ellipse at 50% 60%, rgba(216, 27, 96, 0.10), transparent 50%);
  pointer-events: none;
}
.impact .container { position: relative; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 880px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  background: linear-gradient(120deg, var(--c-yellow), var(--green-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
  line-height: 1;
}
.stat:nth-child(2) .stat-num { background: linear-gradient(120deg, var(--c-blue), var(--green-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat:nth-child(3) .stat-num { background: linear-gradient(120deg, var(--c-fuchsia), var(--c-orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat:nth-child(4) .stat-num { background: linear-gradient(120deg, var(--green-300), var(--c-yellow)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label {
  color: var(--text-on-dark-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ---------- World map ---------- */
.world-map-wrap {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.world-map-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.world-map-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--text-on-dark);
  margin-bottom: 0.35rem;
}
.world-map-head p {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
}
.world-map-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--text-on-dark-soft);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 12px rgba(78, 226, 156, 0.85);
}
.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.world-map-svg .landmass {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 0.4;
  transition: opacity 0.4s var(--ease);
}
.world-map-svg .continents.faded { opacity: 0; }

.world-map-svg .country-path {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 0.35;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill 0.18s var(--ease), stroke 0.18s var(--ease);
}
.world-map-svg .country-path.active {
  fill: rgba(30, 201, 126, 0.22);
  stroke: rgba(78, 226, 156, 0.55);
  stroke-width: 0.55;
}
.world-map-svg .country-path:hover {
  fill: rgba(255, 214, 0, 0.32);
  stroke: rgba(255, 214, 0, 0.85);
  stroke-width: 0.65;
}
.world-map-svg .country-path.active:hover {
  fill: rgba(78, 226, 156, 0.50);
  stroke: rgba(78, 226, 156, 0.95);
}
.country-dot {
  fill: var(--green-300);
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.country-dot.lit {
  opacity: 1;
  animation: dotPulse 2.4s ease-in-out infinite;
}
.country-dot.color-1 { fill: var(--green-300); }
.country-dot.color-2 { fill: var(--c-yellow); }
.country-dot.color-3 { fill: var(--c-blue); }
.country-dot.color-4 { fill: var(--c-fuchsia); }
.country-dot.color-5 { fill: var(--c-orange); }
.country-dot.color-6 { fill: var(--c-teal); }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px currentColor); }
  50% { transform: scale(1.4); filter: drop-shadow(0 0 10px currentColor); }
}

.world-map-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(6, 26, 19, 0.96);
  color: var(--text-on-dark);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: opacity 0.2s var(--ease);
  z-index: 5;
}
.world-map-tooltip.visible { opacity: 1; }

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.country-chip {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: var(--text-on-dark-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.2s var(--ease);
}
.country-chip.in {
  opacity: 1;
  transform: translateY(0);
}
.country-chip:hover { background: rgba(30, 201, 126, 0.18); color: var(--text-on-dark); }

/* ---------- Approach ---------- */
.approach { background: var(--surface-2); }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .approach-inner { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}

.approach-copy .eyebrow { color: var(--c-fuchsia); }
.approach-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.approach-list {
  margin-top: 2rem;
  display: grid; gap: 1.25rem;
}
.approach-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.approach-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.approach-list .step {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-600);
}
.approach-list li:nth-child(2) .step { color: var(--c-blue); }
.approach-list li:nth-child(3) .step { color: var(--c-fuchsia); }
.approach-list h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.approach-list p { color: var(--text-soft); font-size: 0.95rem; }

.approach-card {
  position: sticky;
  top: 100px;
  background: var(--green-800);
  color: var(--text-on-dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  background-image: radial-gradient(circle at top right, rgba(30, 201, 126, 0.4), transparent 60%),
                    radial-gradient(circle at bottom left, rgba(216, 27, 96, 0.25), transparent 60%);
}
.approach-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--c-yellow);
  font-family: var(--ff-display);
}
.approach-card ul { display: grid; gap: 1rem; }
.approach-card li {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.approach-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.approach-card strong { color: var(--text-on-dark); font-weight: 600; }
.approach-card span { color: var(--text-on-dark-soft); font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 760px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.testimonial {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px; left: 18px;
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--green-500);
  opacity: 0.18;
}
.testimonial:nth-child(2)::before { color: var(--c-fuchsia); }
.testimonial:nth-child(3)::before { color: var(--c-blue); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial blockquote { margin: 0 0 1.25rem; }
.testimonial p {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 0.1rem; }
.testimonial figcaption strong { font-weight: 600; font-size: 0.95rem; }
.testimonial figcaption span { color: var(--text-mute); font-size: 0.85rem; }

/* ---------- About ---------- */
.about { background: var(--surface); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) { .about-inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

.about-copy .eyebrow { color: var(--c-teal); }
.about-copy h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.25rem; }
.about-copy p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.about-cta {
  margin-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}

.about-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  overflow: hidden;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.75rem;
  height: 100%;
}
.ac {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.ac1 { background: linear-gradient(135deg, var(--green-400), var(--green-600)); }
.ac2 { background: linear-gradient(135deg, var(--c-yellow), var(--c-orange)); grid-row: span 2; }
.ac3 { background: linear-gradient(135deg, var(--c-blue), var(--c-purple)); }
.ac4 { background: linear-gradient(135deg, var(--c-teal), var(--green-400)); grid-column: span 2; }
.ac5 { background: linear-gradient(135deg, var(--c-fuchsia), var(--c-red)); }
.ac6 { background: linear-gradient(135deg, var(--green-500), var(--c-yellow)); grid-column: span 2; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 960px) { .contact-inner { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }

.contact-copy .eyebrow { color: var(--c-blue); }
.contact-copy h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.contact-copy .section-lede { text-align: left; margin-bottom: 2rem; }

.contact-list { display: grid; gap: 1.25rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
}
.ci {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 201, 126, 0.18), rgba(30, 201, 126, 0.04));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-600);
}
.contact-list li:nth-child(2) .ci { background: linear-gradient(135deg, rgba(30, 136, 229, 0.18), rgba(30, 136, 229, 0.04)); color: var(--c-blue); }
.contact-list li:nth-child(3) .ci { background: linear-gradient(135deg, rgba(216, 27, 96, 0.18), rgba(216, 27, 96, 0.04)); color: var(--c-fuchsia); }
.ci svg { width: 22px; height: 22px; }
.ci-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.1rem;
}
.contact-list a {
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.contact-list a:hover { color: var(--green-600); border-bottom-color: var(--green-600); }

/* Form */
.contact-form {
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-form { grid-template-columns: 1fr 1fr; }
  .field-full, .contact-form button { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--c-red); margin-left: 0.15rem; }
.field input, .field textarea, .field select {
  font: inherit;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--green-600); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(30, 201, 126, 0.18);
  outline: none;
}
.field.has-error input, .field.has-error textarea {
  border-color: #d03a3a;
  box-shadow: 0 0 0 4px rgba(208, 58, 58, 0.12);
}
.field-error {
  font-size: 0.82rem;
  color: #b82828;
  min-height: 1.1em;
  font-weight: 500;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: var(--green-600); }
.form-status.error { color: #b82828; }

/* ---------- Newsletter section ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 60%, var(--c-teal) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(216, 27, 96, 0.18), transparent 50%);
  pointer-events: none;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
@media (min-width: 880px) { .newsletter-inner { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }
.newsletter h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.newsletter p { color: rgba(255, 255, 255, 0.92); }
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.1rem;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.newsletter-form button {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--c-yellow);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,0.18); }
.newsletter-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}
.newsletter-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.newsletter-status.success { color: var(--c-yellow); }
.newsletter-status.error { color: #ffd0d0; }

/* ---------- Newsletter Popup ---------- */
.newsletter-popup {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 19, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  animation: popupFade 0.3s var(--ease);
}
.newsletter-popup.open { display: flex; }
@keyframes popupFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.newsletter-popup-card {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 0;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(30, 201, 126, 0.4);
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(20px);
  animation: popupSlide 0.4s var(--ease) forwards;
}
@keyframes popupSlide {
  to { transform: scale(1) translateY(0); }
}
.newsletter-popup-banner {
  background: linear-gradient(135deg, var(--green-600), var(--c-teal) 60%, var(--c-blue));
  padding: 2rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter-popup-banner::before,
.newsletter-popup-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-popup-banner::before {
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--c-yellow), transparent 70%);
  opacity: 0.6;
  top: -60px; right: -40px;
}
.newsletter-popup-banner::after {
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--c-fuchsia), transparent 70%);
  opacity: 0.45;
  bottom: -60px; left: -40px;
}
.newsletter-popup-banner h3 {
  position: relative;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.newsletter-popup-banner p {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}
.newsletter-popup-body {
  padding: 1.75rem 1.5rem;
}
.newsletter-popup-body p { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 1rem; }
.newsletter-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.newsletter-popup-form input {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  font: inherit;
  background: var(--bg);
  min-height: 48px;
}
.newsletter-popup-form input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(30, 201, 126, 0.18);
  outline: none;
}
.newsletter-popup-form button {
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-weight: 700;
  min-height: 48px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.newsletter-popup-form button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(14, 124, 82, 0.4); }
.newsletter-popup-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 2;
  transition: background 0.2s var(--ease);
}
.newsletter-popup-close:hover { background: rgba(255, 255, 255, 0.4); }
.newsletter-popup-status {
  font-size: 0.88rem;
  text-align: center;
  margin-top: 0.65rem;
  font-weight: 600;
  min-height: 1.2em;
}
.newsletter-popup-status.success { color: var(--green-600); }
.newsletter-popup-status.error { color: #b82828; }
.newsletter-popup-dismiss {
  background: transparent;
  color: var(--text-mute);
  font-size: 0.78rem;
  text-align: center;
  margin-top: 0.65rem;
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--text-on-dark-soft);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); } }

.footer-brand p {
  margin-top: 1rem;
  max-width: 280px;
  font-size: 0.92rem;
  line-height: 1.55;
}
.brand-footer { color: #fff; margin-bottom: 0.5rem; }

.site-footer h2 {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}
.site-footer nav ul, .footer-contact ul { display: grid; gap: 0.65rem; }
.site-footer a {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.site-footer a:hover { color: #fff; }
.footer-contact li { font-size: 0.95rem; }
.footer-socials {
  display: flex; gap: 0.5rem; margin-top: 0.5rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-socials a:hover { background: var(--green-500); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.5rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Back-to-top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
  z-index: 40;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--green-500); transform: translateY(-4px); }
body.edit-mode .back-to-top { bottom: 4.5rem; }

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-toggle, .hero-bg, .scroll-cue, .contact-form,
  .newsletter-popup, .back-to-top, .edit-badge { display: none; }
  body { color: #000; background: #fff; }
}
