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

/* ─── Tokens ────────────────────────────────────── */
:root {
  --green: #0a9e55;
  --green-dark: #077a41;
  --green-light: #e6f7ee;
  --green-mid: #b8e8cc;
  --green-glow: rgba(10, 158, 85, 0.18);
  --amber: #f59e0b;
  --amber-light: #fff7e6;
  --amber-mid: #fde68a;
  --amber-glow: rgba(245, 158, 11, 0.18);
  --teal: #0891b2;
  --teal-light: #e0f2fe;
  --teal-glow: rgba(8, 145, 178, 0.18);

  --bg: #ffffff;
  --bg-soft: #f8fbf9;
  --bg-warm: #fdfcf8;
  --surface: #ffffff;
  --border: #e4ede8;
  --border-mid: #c9ddd2;

  --text: #0c1f14;
  --text-2: #2e5040;
  --text-muted: #6b8f7a;
  --text-faint: #9dbdab;

  --shadow-xs: 0 1px 2px rgba(10, 50, 25, 0.05);
  --shadow-sm: 0 2px 8px rgba(10, 50, 25, 0.07), 0 1px 2px rgba(10, 50, 25, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 50, 25, 0.09), 0 2px 6px rgba(10, 50, 25, 0.05);
  --shadow-lg: 0 20px 50px rgba(10, 50, 25, 0.12), 0 4px 12px rgba(10, 50, 25, 0.06);
  --shadow-glow: 0 8px 32px rgba(10, 158, 85, 0.22);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-h: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Header ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.55s var(--ease-out) both;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-text-accent {
  color: var(--green);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.nav-link {
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--green);
  background: var(--green-light);
}

.lang-btn {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 7px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  margin-left: auto;
  flex-shrink: 0;
}

.lang-btn:hover {
  color: var(--green);
  border-color: var(--green);
  background: var(--green-light);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ─── Main / Layout ─────────────────────────────── */
main {
  flex: 1;
}

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% -10%, rgba(10, 158, 85, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(245, 158, 11, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(8, 145, 178, 0.04) 0%, transparent 60%);
}

/* Orbs — removed (too flashy for internal) */
/* Grid lines — removed (too flashy for internal) */
/* Solar graphic — removed (too flashy for internal) */

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 560px;
}

/* ─── Hero Left ──────────────────────────────────── */
.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  animation: fadeUp 0.65s var(--ease-out) 0.1s both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  padding: 5px 13px 5px 9px;
  border-radius: 999px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulseDot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: livePing 2s ease-out infinite;
}

@keyframes livePing {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero-title {
  margin-top: 1.5rem;
  font-family: var(--font-h);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-title-line {
  display: block;
  color: var(--text);
}

.hero-title-em {
  display: block;
  color: var(--green);
}

/* Warm subtle underline — no animation */
.hero-title-em::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 3px;
  margin-top: 6px;
  background: var(--amber);
  opacity: 0.5;
  max-width: 180px;
}

.hero-title-ghost {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-tagline {
  margin-top: 1.1rem;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-2);
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}

.hero-desc {
  margin-top: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  animation: fadeUp 0.75s var(--ease-out) 0.38s both;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.75s var(--ease-out) 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border-mid);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-ghost:hover {
  color: var(--text-2);
  border-color: var(--text-faint);
  background: var(--surface);
}

.trust-row {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.75s var(--ease-out) 0.6s both;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
}

.trust-dot:nth-child(2) {
  background: var(--amber);
}

.trust-dot:nth-child(3) {
  background: var(--teal);
}

.trust-text {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── Hero Right: Metric Cards ───────────────────── */
.hero-right {
  animation: fadeUp 0.85s var(--ease-out) 0.35s both;
}

.metric-cluster {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.metric-card--main {
  padding: 1.75rem 1.75rem 1.5rem;
}

.metric-card--main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  opacity: 0.6;
}

.metric-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.metric-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.metric-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.metric-badge--up {
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
}

.metric-card-value {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.9rem;
}

.metric-card-unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.metric-sparkline {
  width: 100%;
  height: 40px;
}

.metric-sparkline svg {
  width: 100%;
  height: 100%;
}

.metric-card-footer {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--text-faint);
}

.metric-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, border-color 0.2s;
}

.metric-mini:hover {
  transform: translateY(-2px);
  border-color: var(--border-mid);
}

.metric-mini-icon {
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  flex-shrink: 0;
}

.metric-mini-icon--amber {
  background: var(--amber-light);
}

.metric-mini-val {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.metric-mini-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-faint);
  margin-top: 2px;
  letter-spacing: 0.03em;
}

.hero-float-badge {
  position: absolute;
  top: -18px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1.5px solid var(--green-mid);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  /* No bouncing animation — just sits still */
}

.float-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: livePing 2s ease-out infinite;
}

/* ─── Stats Bar ─────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0c2018 0%, #0f2d1e 100%);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(10, 158, 85, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 100% at 100% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}

.stats-bar-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-bar-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.stats-bar-val {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stats-bar-lbl {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ─── Section Shared ────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}

.section-title-em {
  color: var(--green);
}

.section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Services ──────────────────────────────────── */
.services-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─── Card ──────────────────────────────────────── */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* corner accent */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, var(--green-light), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* top bar */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 0.5;
}

.card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Featured card — slightly different treatment */
.card--featured {
  background: var(--surface);
  border-color: var(--border-mid);
}

.card--featured::before {
  background: radial-gradient(circle at top right, rgba(10, 158, 85, 0.08), transparent 70%);
  opacity: 1;
}

.card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
}

.card-icon-wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  color: var(--green);
  border: 1.5px solid var(--green-mid);
  transition: background 0.25s ease, color 0.25s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon--amber {
  background: var(--amber-light);
  color: var(--amber);
  border-color: var(--amber-mid);
}

.card-icon--teal {
  background: var(--teal-light);
  color: var(--teal);
  border-color: rgba(8, 145, 178, 0.25);
}

/* Subtle hover — no rotation or scale, just a gentle color shift */
.card:hover .card-icon {
  background: var(--green);
  color: #fff;
  border-color: transparent;
}

.card:hover .card-icon--amber {
  background: var(--amber);
  color: #fff;
  border-color: transparent;
}

.card:hover .card-icon--teal {
  background: var(--teal);
  color: #fff;
  border-color: transparent;
}

.card-icon-glow {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: transparent;
  opacity: 0;
  z-index: -1;
}

.card-icon-glow--amber {
  background: transparent;
}

.card-icon-glow--teal {
  background: transparent;
}

.card:hover .card-icon-glow {
  opacity: 0;
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.card:hover .card-title {
  color: var(--text);
}

.card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  transition: gap 0.2s ease;
}

.card:hover .card-cta {
  gap: 9px;
}

.card-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: livePing 2s ease-out infinite;
}

/* ─── Pillars / About ───────────────────────────── */
.pillars-section {
  background: var(--bg-soft);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-mid), var(--amber-mid), transparent);
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pillars-left {}

.pillars-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-top: 1rem;
}

.pillars-title-em {
  font-style: italic;
  color: var(--green);
}

.pillars-desc {
  margin-top: 1.25rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 380px;
}

.pillars-stat-block {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.pillars-stat-block::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.pillars-stat-val {
  display: block;
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.pillars-stat-lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  max-width: 180px;
  line-height: 1.4;
}

.pillars-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateX(4px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-mid);
}

.pillar-icon--amber {
  background: var(--amber-light);
  color: var(--amber);
  border-color: var(--amber-mid);
}

.pillar-icon--teal {
  background: var(--teal-light);
  color: var(--teal);
  border-color: rgba(8, 145, 178, 0.2);
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar-title {
  font-family: var(--font-h);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CTA Banner ────────────────────────────────── */
.cta-section {
  padding: 5rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green) 0%, #007a38 100%);
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  box-shadow: 0 20px 60px rgba(10, 158, 85, 0.25), 0 4px 16px rgba(10, 158, 85, 0.15);
}

.cta-glow-1 {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

/* dot pattern overlay — very subtle */
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-text-block {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cta-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.cta-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 420px;
}

.btn-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.04);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ─── Footer ────────────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.footer-logo-mark img {
  filter: brightness(0) invert(0.45);
}

.footer-brand {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.01em;
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 2px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.5;
}

/* ─── Scroll Reveal ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Stagger */
.services-grid .card:nth-child(1) {
  transition-delay: 0.05s;
}

.services-grid .card:nth-child(2) {
  transition-delay: 0.13s;
}

.services-grid .card:nth-child(3) {
  transition-delay: 0.21s;
}

.pillars-right .pillar:nth-child(1) {
  transition-delay: 0.08s;
}

.pillars-right .pillar:nth-child(2) {
  transition-delay: 0.16s;
}

.pillars-right .pillar:nth-child(3) {
  transition-delay: 0.24s;
}

/* ─── Keyframes ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillars-inner {
    gap: 3rem;
  }

  .cta-inner {
    padding: 3.5rem 2.5rem;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    order: -1;
  }

  .hero-float-badge {
    top: -12px;
    right: 0;
  }

  .metric-cluster {
    max-width: 480px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pillars-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pillars-right {
    padding-top: 0;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-desc {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.85rem 1.25rem;
  }

  .header-nav {
    display: none;
  }

  .hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 1.5rem 0;
    padding: 2.5rem 1.25rem;
  }

  .stats-bar-item {
    flex: 0 0 50%;
    padding: 0 1rem;
  }

  .stats-bar-divider:nth-child(4) {
    display: none;
  }

  .services-section,
  .pillars-section,
  .cta-section {
    padding: 4rem 1.25rem;
  }

  .metric-mini-row {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    padding: 2.5rem 1.75rem;
  }

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