:root {
  --ink: #0d0d0d;
  --ink-light: #1a1a1a;
  --surface: #ffffff;
  --surface-elevated: #fafafa;
  --surface-glass: rgba(255, 255, 255, 0.9);
  --border: #e5e7eb;
  --border-hover: #1a7a2e;
  --text: #0d0d0d;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --accent: #1a7a2e;
  --accent-dim: rgba(26, 122, 46, 0.08);
  --accent-hover: #0f5a20;
  --accent-glow: rgba(26, 122, 46, 0.2);
  --accent-secondary: #22a03c;
  --accent-gradient: linear-gradient(135deg, #1a7a2e, #22a03c);
  --green: #1a7a2e;
  --green-dim: rgba(26, 122, 46, 0.08);
  --green-light: #22a03c;
  --red: #ef4444;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
  --header-h: 64px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
}

@supports (font-variation-settings: normal) {
  :root { --font-body: 'InterVariable', 'Inter', system-ui, sans-serif; --font-display: 'Space Grotesk', system-ui, sans-serif; }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.page-loaded .hero .reveal { animation: heroFadeIn 0.7s var(--ease-out) both; }
body.page-loaded .hero .reveal-delay-1 { animation-delay: 0.15s; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
img { -webkit-touch-callout: none; user-select: none; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease-out); }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100%; left: 16px; z-index: 999; padding: 12px 24px; background: var(--accent); color: #fff; font-weight: 600; border-radius: var(--radius-sm); transition: top 0.2s; }
.skip-link:focus { top: 16px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }
@media (min-width: 1024px) { section { padding: 120px 0; } }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent); border-radius: 1px;
}
.section-label.center { justify-content: center; }
.section-label.center::after {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent); border-radius: 1px;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--text); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 16px; }
.heading { font-size: clamp(1.75rem, 4vw, 3rem); font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--text); margin-bottom: 16px; }
.heading .gradient { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
p { color: var(--text-secondary); }
.section-desc { max-width: 560px; margin-top: 8px; line-height: 1.7; }
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-accent { background: var(--accent-dim); color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: transform 0.16s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
  font-family: var(--font-body); text-decoration: none; white-space: nowrap;
  min-height: 48px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost:active { transform: scale(0.97); }
.btn .arrow { transition: transform 0.2s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-card); }

.glass {
  background: var(--surface-glass); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border);
}

.bg-gray { background: #f9fafb; }
.bg-white { background: #fff; }

/* ── Fade In Stagger ── */
.stagger-fade > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stagger-fade.in-view > * { opacity: 1; transform: translateY(0); }
.stagger-fade.in-view > *:nth-child(1) { transition-delay: 0ms; }
.stagger-fade.in-view > *:nth-child(2) { transition-delay: 60ms; }
.stagger-fade.in-view > *:nth-child(3) { transition-delay: 120ms; }
.stagger-fade.in-view > *:nth-child(4) { transition-delay: 180ms; }
.stagger-fade.in-view > *:nth-child(5) { transition-delay: 240ms; }
.stagger-fade.in-view > *:nth-child(6) { transition-delay: 300ms; }
.stagger-fade.in-view > *:nth-child(7) { transition-delay: 360ms; }
.stagger-fade.in-view > *:nth-child(8) { transition-delay: 420ms; }
.stagger-fade.in-view > *:nth-child(9) { transition-delay: 480ms; }
.stagger-fade.in-view > *:nth-child(10) { transition-delay: 540ms; }
.stagger-fade.in-view > *:nth-child(11) { transition-delay: 600ms; }
.stagger-fade.in-view > *:nth-child(12) { transition-delay: 660ms; }

.hover-lift { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.hover-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); border-color: var(--accent); }
.hover-border { transition: border-color 0.2s var(--ease-out); }
.hover-border:hover { border-color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .stagger-fade > * { opacity: 1 !important; transform: none !important; }
  .bg-orb { display: none; }
  body::before { display: none; }
}

/* ── Animated Background Orbs ── */
body {
  position: relative;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 0% 20%, rgba(26, 122, 46, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(34, 160, 60, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(26, 122, 46, 0.03) 0%, transparent 60%);
  animation: bgShift 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bgShift {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
  100% { transform: scale(1) rotate(-1deg); }
}

.bg-orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: -1;
  filter: blur(80px); opacity: 0.3;
  animation: orbFloat 25s ease-in-out infinite alternate;
}
.bg-orb:nth-child(1) {
  width: 500px; height: 500px;
  background: rgba(26, 122, 46, 0.08);
  top: -10%; left: -10%;
  animation-duration: 30s;
}
.bg-orb:nth-child(2) {
  width: 400px; height: 400px;
  background: rgba(34, 160, 60, 0.06);
  bottom: -5%; right: -5%;
  animation-duration: 25s;
  animation-delay: -5s;
}
.bg-orb:nth-child(3) {
  width: 300px; height: 300px;
  background: rgba(26, 122, 46, 0.05);
  top: 50%; left: 50%;
  animation-duration: 35s;
  animation-delay: -10s;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
  100% { transform: translate(10px, -10px) scale(1.05); }
}
@supports (padding: max(0px)) {
  .safe-top { padding-top: max(env(safe-area-inset-top), 0px); }
  .safe-bottom { padding-bottom: max(env(safe-area-inset-bottom), 0px); }
}

@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 640px) {
  .hide-desktop { display: none !important; }
}

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.header.scrolled { background: var(--surface-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 18px; font-family: var(--font-display); }
.header-logo img { width: 32px; height: 32px; border-radius: var(--radius-sm); }
.header-logo span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.header-nav { display: none; gap: 4px; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-nav a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
  color: var(--text-secondary); transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.header-nav a:hover { color: var(--accent); background: var(--accent-dim); }
.header-nav a.active { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; border: none; background: none; cursor: pointer;
  position: relative; z-index: 110;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.3s var(--ease-out);
  position: absolute;
}
.hamburger span:nth-child(1) { transform: translateY(-6px); }
.hamburger span:nth-child(2) { transform: translateY(6px); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 104;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease-out);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 105;
  width: 300px; max-width: 80vw;
  background: var(--surface);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mobile-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px; font-family: var(--font-display);
  color: var(--text); text-decoration: none;
}
.mobile-logo img { width: 28px; height: 28px; border-radius: var(--radius-sm); }
.mobile-logo span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mobile-close {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--surface-elevated); color: var(--text);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.16s var(--ease-out);
}
.mobile-close:active { transform: scale(0.92); }
.mobile-close:hover { background: var(--accent-dim); }
.mobile-menu-links { flex: 1; overflow-y: auto; padding: 12px 0; }
.mobile-menu-links a {
  display: flex; align-items: center;
  padding: 14px 24px; font-size: 15px; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}
.mobile-menu-links a:hover { background: var(--accent-dim); color: var(--accent); border-left-color: var(--accent); }
.mobile-menu-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.mobile-menu-footer .btn { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: var(--header-h);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-gradient);
  z-index: 1;
}
.hero-grid { display: grid; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero h1 .gradient { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(1rem, 1.2vw, 1.125rem); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: scrollIndicateIn 0.6s var(--ease-out) 1s forwards; }
.scroll-indicator span { display: block; width: 20px; height: 28px; border: 2px solid var(--text-muted); border-radius: 10px; position: relative; }
.scroll-indicator span::after { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 2px; background: var(--accent); animation: scrollDot 2s var(--ease-out) infinite; }
.scroll-indicator .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
@keyframes scrollIndicateIn { to { opacity: 1; } }
@keyframes scrollDot { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }
@media (max-width: 480px) { .scroll-indicator { display: none; } }

.hero-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-elevated); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
}
.hero-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hero-card-top .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.hero-card-top .status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-weight: 600; }
.hero-card-top .status .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: statusPulse 2s infinite; }
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 122, 46, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(26, 122, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 122, 46, 0); }
}
.hero-stat { margin-bottom: 24px; }
.hero-stat-number { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4rem); font-weight: 700; color: var(--text); line-height: 1; }
.hero-stat-number .accent { color: var(--accent); }
.hero-stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.hero-chart { margin-bottom: 24px; }
.hero-chart svg { width: 100%; height: 60px; display: block; }
.hero-chart .chart-line { stroke-dasharray: 800; stroke-dashoffset: 800; animation: chartDraw 2s var(--ease-out) 0.5s forwards; }
.hero-chart .chart-dot { opacity: 0; animation: chartDotIn 0.3s var(--ease-out) 2s forwards; }
@keyframes chartDraw { to { stroke-dashoffset: 0; } }
@keyframes chartDotIn { to { opacity: 1; } }
.hero-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hero-mini-item { background: var(--surface-elevated); border-radius: var(--radius-md); padding: 12px; text-align: center; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.hero-mini-item:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.hero-mini-item .num { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.hero-mini-item .lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* ── About ── */
.about-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.about-cards-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.about-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out); }
.about-card:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.about-card-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-card-icon svg { width: 18px; height: 18px; }
.about-card h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-bottom: 4px; }
.about-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-stat { background: var(--surface-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.about-stat:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.about-stat .num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.about-stat .lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 4px; }
.purpose-cards { display: flex; flex-direction: column; gap: 12px; }
.purpose-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: var(--radius-md); background: var(--surface-elevated); border: 1px solid var(--border); transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out); }
.purpose-card:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.purpose-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.purpose-icon svg { width: 18px; height: 18px; }
.purpose-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.purpose-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Strengths ── */
.strengths-grid { display: grid; gap: 16px; margin-top: 48px; }
@media (min-width: 640px) { .strengths-grid { grid-template-columns: repeat(3, 1fr); } }
.strength-card { padding: 28px; border-radius: var(--radius-lg); background: var(--surface-elevated); border: 1px solid var(--border); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out); }
.strength-card:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-elevated); }
.strength-card:hover h4 { color: #fff; }
.strength-card:hover p { color: rgba(255, 255, 255, 0.85); }
.strength-card:hover .strength-icon { background: rgba(255, 255, 255, 0.2); color: #fff; }
.strength-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out); }
.strength-card h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-bottom: 8px; }
.strength-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Services ── */
.section-header { text-align: center; margin-bottom: 48px; }
.services-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { padding: 24px; border-radius: var(--radius-lg); background: var(--surface-elevated); border: 1px solid var(--border); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); cursor: default; }
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.service-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Projects ── */
.project-stats { display: grid; gap: 12px; max-width: 400px; margin: 0 auto 32px; grid-template-columns: repeat(2, 1fr); }
.project-stat { text-align: center; padding: 20px; border-radius: var(--radius-md); background: var(--surface-elevated); border: 1px solid var(--border); }
.project-stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.project-stat .lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 4px; }

/* ── Tables ── */
.table-wrap {
  overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch; position: relative;
  background: var(--surface);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.table-wrap::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
  opacity: 0.6;
}
.table-wrap::-webkit-scrollbar { height: 4px; }
.table-wrap::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 2px; }
table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
thead th {
  background: var(--ink); color: #fff;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 16px; text-align: left; font-weight: 600; white-space: nowrap;
  position: sticky; top: 0; z-index: 1;
}
thead th:first-child { padding-left: 20px; }
thead th:last-child { padding-right: 20px; }
tbody td {
  padding: 14px 16px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
tbody td:first-child { padding-left: 20px; font-weight: 500; color: var(--text); }
tbody td:last-child { padding-right: 20px; }
tbody tr { transition: background 0.2s var(--ease-out); }
tbody tr:nth-child(even) { background: rgba(0,0,0,0.015); }
tbody tr:hover {
  background: var(--accent-dim);
}
tbody tr:hover td:first-child { color: var(--accent); }
tbody tr:last-child td { border-bottom: none; }

td.num { font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }

/* ── Team / Org Chart ── */
.org-chart { margin-bottom: 48px; }
.org-lead {
  text-align: center; margin-bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.org-lead-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted);
}
.org-lead-name {
  font-size: 28px; font-weight: 700; color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.org-grid { display: grid; gap: 16px; }
@media (min-width: 768px) {
  .org-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.org-card {
  background: var(--surface-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.org-card:hover {
  transform: translateY(-2px); border-color: var(--accent);
  box-shadow: var(--shadow-card);
}
.org-card-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.org-card-icon svg { width: 22px; height: 22px; }
.org-card-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: 14px; letter-spacing: -0.01em;
}
.org-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.org-tag {
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface); color: var(--text-muted);
  font-size: 11px; font-weight: 500;
}
.team-table-wrap { margin-bottom: 40px; }
.team-table-wrap h3 { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 16px; }

/* ── Quality ── */
.quality-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .quality-grid { grid-template-columns: 1fr 1fr; } }
.quality-section .section-label { margin-bottom: 16px; }
.quality-cards { display: flex; flex-direction: column; gap: 12px; }
.quality-card { padding: 24px; border-radius: var(--radius-lg); background: var(--surface-elevated); border: 1px solid var(--border); transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out); }
.quality-card:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.quality-card h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.quality-card h4 .card-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.quality-card ul { display: flex; flex-direction: column; gap: 8px; }
.quality-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.quality-card li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.insurance-table-wrap { margin-top: 48px; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { padding: 28px; border-radius: var(--radius-lg); background: var(--surface-elevated); border: 1px solid var(--border); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.testimonial-quote { color: var(--accent); opacity: 0.15; margin-bottom: 16px; }
.testimonial-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; background: var(--accent); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── Partners ── */
.partners-section { position: relative; }
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 800px; margin: 0 auto; }
.partner-box {
  width: 140px; height: 80px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  text-align: center; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
  background: var(--surface-elevated); border: 1px solid var(--border); color: var(--text-secondary);
}
.partner-box:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-card); }
.partner-box.filled { background: var(--accent); color: #fff; border-color: var(--accent); }
.partner-box.filled:hover { background: var(--accent-hover); color: #fff; }
@media (min-width: 480px) { .partner-box { width: 150px; height: 88px; } }
.partner-divider { width: 100%; text-align: center; margin: 16px 0 8px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; }

/* ── Section Accent Bar ── */
.section-accent { position: relative; padding-top: 20px; }
.section-accent::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* ── Contact ── */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 16px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { font-size: 14px; font-weight: 500; margin-top: 12px; padding: 12px; border-radius: var(--radius-sm); display: none; }
.form-status.success { display: block; background: var(--green-dim); color: var(--accent); }
.form-status.error { display: block; background: var(--red-dim); color: var(--red); }

.contact-info-card {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; margin-bottom: 24px; color: #fff; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-info-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-dim); color: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-item .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.4); font-weight: 600; margin-bottom: 2px; }
.contact-info-item .value { font-size: 14px; color: rgba(255, 255, 255, 0.9); }
.contact-info-item .value a { color: var(--green-light); }
.contact-info-item .value a:hover { color: var(--accent-secondary); text-decoration: underline; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border); padding: 48px 0;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 16px; }
.footer p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-tagline { font-family: var(--font-display); font-size: 13px; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--accent-glow);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out), background 0.2s var(--ease-out);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-hover); }
.back-to-top:active { transform: scale(0.95); }

/* ── Chat ── */
.chat-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 8px 24px var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.chat-btn:hover { background: var(--accent-hover); transform: scale(1.05); box-shadow: 0 8px 32px var(--accent-glow); }
.chat-btn:active { transform: scale(0.95); }
.chat-btn .pulse {
  position: absolute; top: 0; right: 0;
  width: 12px; height: 12px; background: var(--green-light); border-radius: 50%;
  border: 2px solid var(--surface); animation: statusPulse 2s infinite;
}
.chat-window {
  position: fixed; bottom: 88px; right: 16px; z-index: 91;
  width: 320px; max-width: calc(100vw - 32px);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(16px) scale(0.95); opacity: 0;
  pointer-events: none; transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.chat-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-header { background: var(--accent); padding: 16px; display: flex; align-items: center; gap: 12px; }
.chat-header img { width: 36px; height: 36px; border-radius: 50%; background: #fff; padding: 2px; }
.chat-header-info { flex: 1; }
.chat-header-info h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: #fff; }
.chat-header-info p { font-size: 11px; color: rgba(255, 255, 255, 0.7); }
.chat-header button { background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
.chat-body { padding: 16px; max-height: 240px; overflow-y: auto; }
.chat-body .msg { background: var(--surface-elevated); padding: 12px; border-radius: var(--radius-md); font-size: 14px; color: var(--text); margin-bottom: 8px; border: 1px solid var(--border); line-height: 1.5; }
.chat-body .msg .time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.chat-actions { padding: 12px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); }
.chat-actions a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: var(--radius-sm); color: var(--text); text-decoration: none;
  font-size: 13px; font-weight: 500; transition: background 0.2s, color 0.2s;
  background: var(--surface-elevated); border: 1px solid transparent;
}
.chat-actions a:hover { background: var(--accent-dim); color: var(--accent); }
.chat-actions a svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 100;
  max-width: 420px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-elevated);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transform: translateY(120%); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; flex: 1; min-width: 180px; }
.cookie-banner .cookie-btn { padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-hover); }
.cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.cookie-decline:hover { color: var(--text); }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

@media (max-width: 480px) {
  .hero { min-height: 90vh; }
  .back-to-top { left: 16px; bottom: 16px; width: 40px; height: 40px; }
  .chat-btn { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .chat-window { right: 8px; left: 8px; width: auto; bottom: 72px; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .partner-box { width: 120px; height: 72px; font-size: 10px; }
}
@media (max-width: 639px) {
  .org-lead-name { font-size: 22px; }
  .org-card { padding: 20px 16px; }
  .org-card-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .org-card-icon svg { width: 18px; height: 18px; }
  .org-card-title { font-size: 13px; margin-bottom: 12px; }
  .org-tag { font-size: 10px; padding: 3px 10px; }
}

@media (max-width: 639px) {
  .table-wrap { border-radius: var(--radius-md); }
  .table-wrap table { font-size: 12px; }
  .table-wrap thead th,
  .table-wrap tbody td { padding: 10px 12px; }
  .table-wrap thead th:first-child,
  .table-wrap tbody td:first-child { padding-left: 14px; }
  .table-wrap thead th:last-child,
  .table-wrap tbody td:last-child { padding-right: 14px; }
}
