/* ============================================
   HEXORIS — CSS DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --green:        #1DA84A;
  --green-dark:   #158a3a;
  --green-xdark:  #0e6b2e;
  --green-light:  #eaf7ed;
  --green-mid:    rgba(29,168,74,0.10);
  --green-border: rgba(29,168,74,0.22);
  --green-glow:   rgba(29,168,74,0.22);

  /* Backgrounds */
  --bg:        #ffffff;
  --bg-subtle: #f4f7f4;
  --bg-card:   #ffffff;
  --bg-dark:   #07100a;

  /* Text */
  --t1: #0b160b;
  --t2: #2c3f2c;
  --t3: #5e7060;

  /* Borders */
  --bd:    #cce0cc;
  --bd-lt: #e6f0e6;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Dimensions */
  --nav-h: 68px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Shadows */
  --s1: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --s2: 0 3px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --s3: 0 8px 28px rgba(0,0,0,0.09), 0 3px 8px rgba(0,0,0,0.05);
  --s4: 0 20px 56px rgba(0,0,0,0.12), 0 6px 20px rgba(0,0,0,0.07);
  --sg: 0 6px 24px rgba(29,168,74,0.22);
  --sg-lg: 0 10px 36px rgba(29,168,74,0.28);

  /* Transitions */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t:    0.22s cubic-bezier(0.4,0,0.2,1);
  --tmd:  0.38s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
ul   { list-style: none; }
a    { color: var(--green); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--green-dark); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--t1);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--t1);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--t1);
}

h4 {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--t1);
}

p {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.78;
  max-width: 65ch;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.highlight { color: var(--green); }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section     { padding: clamp(80px,11vw,128px) 0; }
.section--sm { padding: clamp(48px,7vw,80px) 0; }
.section--alt { background: var(--bg-subtle); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1rem,2.5vw,1.75rem);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(200,224,200,0.5);
  transition: background var(--tmd), border-color var(--tmd), box-shadow var(--tmd);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--bd);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,2.5rem);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 64px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--t2);
  position: relative;
  padding: 6px 0;
  transition: color var(--t);
}

.nav__links a:hover,
.nav__links a.active { color: var(--green); }

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav__cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
  box-shadow: var(--sg) !important;
}

.nav__cta:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--sg-lg) !important;
}

.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all var(--t);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 72% 50%, rgba(29,168,74,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 100% 0%, rgba(29,168,74,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero__accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--green) 0%, rgba(29,168,74,0.2) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero__sub {
  font-size: clamp(1rem,1.8vw,1.15rem);
  color: var(--t2);
  max-width: 55ch;
  line-height: 1.78;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.28;
  pointer-events: none;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t3);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.06); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  border-radius: var(--r);
  padding: 0.875rem 2rem;
  transition: all var(--t);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 50px;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--sg);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sg-lg);
}

.btn--outline {
  background: transparent;
  color: var(--t1);
  border: 1.5px solid var(--bd);
}
.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  padding-left: 0;
  padding-right: 0;
  font-weight: 700;
  min-height: auto;
}
.btn--ghost:hover       { color: var(--green-dark); }
.btn--ghost:hover svg   { transform: translateX(4px); }
.btn--ghost svg         { transition: transform var(--t); }

.btn--white {
  background: #fff;
  color: var(--green);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--bg-subtle);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 2.5rem 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.stats-bar__item { text-align: center; }

.stat__value {
  font-size: clamp(2rem,4vw,2.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
  display: block;
  text-transform: uppercase;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--bd-lt);
  border-radius: var(--r);
  padding: clamp(1.5rem,3vw,2.25rem);
  transition: border-color var(--t), transform var(--tmd), box-shadow var(--tmd);
  box-shadow: var(--s1);
}

.card:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
  box-shadow: var(--s4);
}

/* ============================================
   ICON WRAPS
   ============================================ */

.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.icon-wrap svg {
  width: 23px;
  height: 23px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header { margin-bottom: 3.5rem; }

.section-header .label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.section-header .label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.05rem; }

/* ============================================
   TEAM CARDS
   ============================================ */

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--bd-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--tmd), box-shadow var(--tmd);
  box-shadow: var(--s2);
}

.team-card:hover {
  border-color: var(--green-border);
  transform: translateY(-5px);
  box-shadow: var(--s4);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
  display: block;
}

.team-card:hover .team-card__photo { transform: scale(1.04); }

.team-card__body { padding: 1.5rem 1.75rem; }

.team-card__role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.team-card__name {
  font-size: 1.175rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.72;
  max-width: none;
}

/* ============================================
   CREDENTIALS
   ============================================ */

.credentials {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bd-lt);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--t2);
  line-height: 1.65;
}

.credential svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.25rem;
  position: relative;
}

.process-step:not(:last-child) .step-connector {
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--bd-lt));
  border-radius: 2px;
}

.step-num {
  width: 48px;
  height: 48px;
  border: 2px solid var(--green);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--green);
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.step-body { padding: 0.35rem 0 2.25rem; }
.step-body h4 { margin-bottom: 0.4rem; }
.step-body p  { font-size: 0.9rem; max-width: 52ch; }

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--green);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem,5vw,4rem) clamp(2rem,4vw,3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 280px; height: 280px;
  background: rgba(0,0,0,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band__text { position: relative; z-index: 1; }

.cta-band__text h2 {
  color: #fff;
  font-size: clamp(1.4rem,2.5vw,2rem);
  margin-bottom: 0.5rem;
}

.cta-band__text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 46ch;
}

.cta-band .btn { position: relative; z-index: 1; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bd-lt);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='70'%3E%3Cpolygon points='40,4 76,22 76,58 40,76 4,58 4,22' fill='none' stroke='%231DA84A' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 80px 70px;
  opacity: 0.04;
  pointer-events: none;
}

.page-hero .label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.page-hero .label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p  { font-size: 1.1rem; }

/* ============================================
   PILL TAGS
   ============================================ */

.pill {
  display: inline-block;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--t1);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  min-height: 50px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--t3); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,168,74,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  padding: 4.5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer__brand img {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.875rem;
  max-width: 34ch;
  line-height: 1.72;
  color: #5a745a;
}

.footer__col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a503a;
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col ul a {
  font-size: 0.875rem;
  color: #5a745a;
  transition: color var(--t);
}
.footer__col ul a:hover { color: #d0e8d0; }

.footer__col ul span {
  font-size: 0.875rem;
  color: #3a503a;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: #3a503a;
  max-width: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.d1.visible { transition-delay: 0.10s; }
.fade-up.d2.visible { transition-delay: 0.20s; }
.fade-up.d3.visible { transition-delay: 0.30s; }
.fade-up.d4.visible { transition-delay: 0.40s; }

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .grid-2       { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3       { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 2px solid var(--bd-lt);
    box-shadow: var(--s3);
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--bd-lt);
    width: 100%;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a.active::after { display: none; }
  .nav__cta {
    margin: 0.75rem 1.5rem 0 !important;
    text-align: center !important;
    display: block !important;
  }
  .nav__hamburger { display: flex; }
  .grid-3       { grid-template-columns: 1fr; }
  .form-grid    { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band     { flex-direction: column; align-items: flex-start; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section     { padding: 64px 0; }
  .section--sm { padding: 44px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .stats-bar__inner { gap: 1.5rem; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (hover: none) {
  .card:hover,
  .team-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
