:root {
  --green-900: #173f32;
  --green-800: #214d3e;
  --green-700: #2e634f;
  --green-100: #e8f0ea;
  --mint: #8fc9b3;
  --coral: #c68652;
  --ink: #10241d;
  --sage: #dfe8de;
  --sage-soft: #f3f7f2;
  --cream: #fbfaf6;
  --beige: #f1eee5;
  --text: #25342f;
  --muted: #66736d;
  --line: #e6e2d8;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(23, 63, 50, 0.13);
  --shadow-soft: 0 12px 30px rgba(23, 63, 50, 0.07);
  --radius-lg: 20px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 88% 9%, rgba(231, 224, 208, 0.82), transparent 18%),
    radial-gradient(circle at 48% 31%, rgba(232, 240, 234, 0.9), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 49%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(232, 240, 234, 0.52) 28% 31%, transparent 31% 100%),
    linear-gradient(65deg, transparent 0 63%, rgba(241, 238, 229, 0.58) 63% 67%, transparent 67% 100%);
  opacity: 0.72;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 76px 0;
}

main > section {
  position: relative;
  isolation: isolate;
}

main > section + section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 86px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0.86), rgba(251, 250, 246, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 226, 218, 0.72);
}

.nav-wrap {
  height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.menu-toggle {
  display: none;
}

.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;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--green-900);
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.logo-mark img {
  position: absolute;
  width: 104px;
  max-width: none;
  left: -30px;
  top: -20px;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
  white-space: nowrap;
}

.brand-word-say {
  color: #064d32;
  font-weight: 800;
}

.brand-word-statistics {
  color: #7faa6b;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  font-size: 0.95rem;
  font-weight: 500;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 9px;
  background: var(--green-800);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23, 63, 50, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--green-900);
  transform: translateY(-1px);
}

.nav a,
.dropdown-trigger {
  color: #25342f;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav a:hover,
.dropdown-trigger:hover {
  color: var(--green-800);
}

.nav-item {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 306px;
  padding: 10px;
  border: 1px solid rgba(227, 226, 218, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(23, 63, 50, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown:focus-within .dropdown-trigger::after,
.dropdown.open .dropdown-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.dropdown-menu a {
  display: block;
  padding: 12px 12px;
  border-radius: 8px;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: #f3f6f1;
}

.dropdown-menu strong,
.dropdown-menu span {
  display: block;
}

.dropdown-menu strong {
  color: var(--green-900);
  font-size: 0.92rem;
  line-height: 1.25;
}

.dropdown-menu span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 3px;
}

.nav > a.active::after,
.nav > a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(217, 133, 102, 0.12);
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 130px;
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: 80px;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--green-800);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--coral);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--green-900);
  font-size: clamp(2.3rem, 4vw, 3.85rem);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 24px;
}

.lead {
  max-width: 590px;
  color: #40504a;
  font-size: 0.98rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 9px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(23, 63, 50, 0.2);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-outline {
  border: 1.5px solid var(--green-800);
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.52);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.dashboard-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  max-width: 540px;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotateX(1deg) rotateY(-2deg);
  animation: float-dashboard 8s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dashboard-card:hover {
  transform: rotateX(0) rotateY(0) translateY(-4px);
  box-shadow: 0 34px 90px rgba(23, 63, 50, 0.18);
}

.dash-sidebar {
  background: linear-gradient(180deg, var(--green-800), var(--ink));
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  color: white;
  font-size: 1.1rem;
}

.dash-sidebar svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.dash-main {
  padding: 18px;
}

.dash-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.dash-topbar small,
.dash-topbar strong {
  display: block;
}

.dash-topbar small {
  color: var(--muted);
  font-size: 0.76rem;
}

.dash-topbar strong {
  color: var(--ink);
  font-size: 1rem;
}

.period-toggle {
  min-width: 92px;
  height: 36px;
  border: 1px solid rgba(46, 99, 79, 0.22);
  border-radius: 999px;
  background: #f4f8f4;
  color: var(--green-800);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.period-toggle:hover {
  background: #e8f3ec;
  transform: translateY(-1px);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.metric-card,
.chart-card,
.project-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  min-height: 96px;
  padding: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover,
.chart-card:hover,
.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 99, 79, 0.28);
}

.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.metric-card strong {
  display: block;
  color: #1e2f29;
  font-size: 1.22rem;
  line-height: 1.1;
}

.metric-card span {
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
}

.mini-donut-card {
  position: relative;
}

.mini-donut-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-donut-wrap .donut {
  width: 48px;
  flex: 0 0 auto;
}

.mini-donut-wrap .donut::after {
  inset: 12px;
}

.mini-donut-wrap ul {
  margin: 0;
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.5;
}

.chart-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 10px;
  margin-bottom: 12px;
}

.chart-card {
  min-height: 134px;
  padding: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.chart-title,
.table-title {
  color: #273c34;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.line-chart-card svg {
  width: 100%;
  height: 88px;
}

.grid-lines line {
  stroke: #e7e6df;
  stroke-width: 1;
}

.line {
  fill: none;
  stroke: var(--green-800);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

.dots circle {
  fill: var(--green-800);
  opacity: 0;
  animation: pop-dot 0.35s ease forwards;
}

.dots circle:nth-child(2) {
  animation-delay: 0.14s;
}

.dots circle:nth-child(3) {
  animation-delay: 0.24s;
}

.dots circle:nth-child(4) {
  animation-delay: 0.34s;
}

.dots circle:nth-child(5) {
  animation-delay: 0.44s;
}

.dots circle:nth-child(6) {
  animation-delay: 0.54s;
}

.dots circle:nth-child(7) {
  animation-delay: 0.64s;
}

.dots circle:nth-child(8) {
  animation-delay: 0.74s;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.donut {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--green-800) 0 38%, var(--mint) 38% 62%, var(--coral) 62% 82%, #eef0e8 82% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 20px;
  background: var(--white);
  border-radius: 50%;
}

.donut-wrap ul {
  margin: 0;
  padding-left: 15px;
  color: var(--muted);
  font-size: 0.78rem;
}

.bar-card {
  grid-column: 2;
}

.bars {
  height: 76px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 10px 4px 0;
}

.bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--mint), var(--green-800));
  border-radius: 6px 6px 0 0;
  opacity: 0.9;
  position: relative;
  transform-origin: bottom;
  animation: rise-bar 0.8s ease both;
  transition: height 0.35s ease, opacity 0.2s ease;
}

.bars span:hover {
  opacity: 1;
}

.bars span:hover::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 4px 7px;
  border-radius: 7px;
  background: var(--ink);
  color: white;
  font-size: 0.68rem;
  white-space: nowrap;
}

.project-table {
  padding: 10px 12px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.82fr 0.95fr;
  gap: 8px;
  padding: 5px 0;
  border-top: 1px solid #ebe9e2;
  font-size: 0.7rem;
}

.table-head {
  color: var(--muted);
  font-weight: 800;
  border-top: 0;
  padding-top: 0;
}

.status {
  font-weight: 800;
}

.status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 6px;
}

.status.done::before {
  background: #3c8a64;
}

.status.progress::before {
  background: #d69247;
}

.soft-section {
  background: rgba(251, 250, 246, 0.76);
  border-top: 1px solid rgba(227, 226, 218, 0.8);
  border-bottom: 1px solid rgba(227, 226, 218, 0.8);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.65fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

h2 {
  color: var(--green-900);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 20px;
}

.about p,
.section-intro,
.cta-card p {
  color: #43534d;
  max-width: 620px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  width: 100%;
  align-items: start;
}

.value-item {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(4px, 0.8vw, 12px);
}

.value-item + .value-item {
  border-left: 1px solid var(--line);
}

.icon-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f2eb;
  color: var(--green-800);
  font-size: 2rem;
  font-weight: 800;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.icon-circle svg,
.cta-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

h3 {
  color: #263831;
  line-height: 1.25;
  font-size: 1rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.audience-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.audience-card .icon-circle img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: invert(22%) sepia(16%) saturate(1180%) hue-rotate(104deg) brightness(86%) contrast(92%);
}

.audience-card:hover {
  box-shadow: 0 18px 42px rgba(23, 63, 50, 0.12);
}

.audience-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.process {
  padding-top: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 58px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 40px;
  border-top: 3px dotted #d9d4c7;
  z-index: -1;
  opacity: 0.95;
}

.step {
  position: relative;
  text-align: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: transform 0.2s ease;
}

.step:hover,
.step.active {
  transform: none;
}

.step.active .step-number {
  background: var(--green-800);
}

.step.active .icon-circle {
  background: #f0f2eb;
  border-color: var(--line);
  color: var(--green-800);
}

.step-number {
  position: absolute;
  top: -24px;
  left: calc(50% - 16px);
  z-index: 3;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--green-800);
  border: 0;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0;
  box-shadow: 0 5px 12px rgba(33, 74, 58, 0.18);
}

.step .icon-circle {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.step .icon-circle img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: invert(22%) sepia(16%) saturate(1180%) hue-rotate(104deg) brightness(86%) contrast(92%);
}

.step-title {
  display: block;
  color: #263831;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0;
}

.cta-section {
  padding: 26px 0 76px;
}

.cta-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 36px 48px;
  background:
    radial-gradient(circle at 100% 100%, rgba(231, 224, 208, 0.9), transparent 26%),
    linear-gradient(135deg, #f2f5ee, #f8f4eb);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.section-slide {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 0.78s ease, transform 0.78s ease;
  will-change: opacity, transform;
}

.section-slide.slide-from-right {
  transform: translateX(42px);
}

.section-slide.slide-from-bottom {
  transform: translateY(34px);
}

.section-slide.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.section-slide.slide-from-bottom.is-visible {
  transform: translateY(0);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(23, 63, 50, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-800);
  color: white;
  font-size: 2rem;
}

.cta-icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom: 10px;
}

.cta-card p {
  margin-bottom: 0;
}

.site-footer {
  padding: 32px 0;
  background: #f5f2ea;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-wrap strong {
  color: var(--green-900);
  font-size: 1.15rem;
}

.footer-wrap nav {
  display: flex;
  gap: 30px;
  color: #41504b;
  font-size: 0.92rem;
}

.faq-page .faq-hero {
  padding: 82px 0 30px;
}

.faq-page .faq-hero-grid {
  max-width: 900px;
  text-align: center;
}

.faq-page .faq-hero-copy h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--green-900);
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.faq-page .faq-hero-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: #44564f;
  font-size: 1.06rem;
}

.faq-page .faq-tabs-section {
  padding: 8px 0 38px;
}

.faq-page .faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
}

.faq-page .faq-tab {
  position: relative;
  min-height: 34px;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #31423b;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.2s ease;
}

.faq-page .faq-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #c68652;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-page .faq-tab:hover,
.faq-page .faq-tab.active {
  color: var(--green-900);
}

.faq-page .faq-tab:hover::after,
.faq-page .faq-tab.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.faq-page .faq-content-section {
  padding: 10px 0 72px;
}

.faq-page .faq-content {
  max-width: 940px;
}

.faq-page .faq-category {
  margin-top: 54px;
  scroll-margin-top: 126px;
}

.faq-page .faq-category:first-child {
  margin-top: 0;
}

.faq-page .faq-category-title {
  margin-bottom: 18px;
}

.faq-page .faq-category-title h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.18;
}

.faq-page .accordion {
  display: grid;
  gap: 12px;
}

.faq-page .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(23, 63, 50, 0.05);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-page .faq-item.open {
  border-color: rgba(33, 77, 62, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 242, 0.88));
  box-shadow: var(--shadow-soft);
}

.faq-page .faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #203a31;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-page .faq-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-page .faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-page .faq-item.open .faq-answer {
  display: block;
}

.faq-page .faq-answer p {
  max-width: 790px;
  margin: 0;
}

.faq-page .faq-cta-section {
  padding: 0 0 76px;
}

.faq-page .faq-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 174px;
  padding: 36px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 96% 100%, rgba(223, 232, 222, 0.95), transparent 26%),
    linear-gradient(135deg, #f2f5ee, #f8f4eb);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.faq-page .faq-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -98px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(23, 63, 50, 0.12);
  border-radius: 50%;
}

.faq-page .faq-cta h2 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.faq-page .faq-cta p {
  max-width: 650px;
  margin: 0;
  color: #43554d;
}

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

.projects-page .projects-hero {
  padding: 82px 0 28px;
}

.projects-page .projects-hero-grid {
  max-width: 920px;
  text-align: center;
}

.projects-page .projects-hero-copy h1 {
  max-width: 840px;
  margin: 0 auto 18px;
  color: var(--green-900);
  font-size: clamp(2.45rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.projects-page .projects-hero-copy p {
  max-width: 720px;
  margin: 0 auto;
  color: #44564f;
  font-size: 1.06rem;
}

.projects-page .projects-notice {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(198, 134, 82, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 10px 24px rgba(198, 134, 82, 0.08);
  text-align: left;
}

.projects-page .projects-notice span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(198, 134, 82, 0.18);
  color: #9d643a;
  font-size: 0.95rem;
  font-weight: 800;
}

.projects-page .projects-notice p {
  margin: 0;
  color: #3c4f47;
  font-size: 0.92rem;
  line-height: 1.4;
}

.projects-page .project-filters {
  padding: 16px 0 42px;
}

.projects-page .project-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 38px;
}

.projects-page .project-filter {
  position: relative;
  min-height: 34px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: #31423b;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.projects-page .project-filter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #c68652;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.projects-page .project-filter:hover,
.projects-page .project-filter.active {
  color: var(--green-900);
}

.projects-page .project-filter:hover::after,
.projects-page .project-filter.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.projects-page .projects-section {
  padding: 0 0 72px;
}

.projects-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.projects-page .project-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.projects-page .project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 77, 62, 0.26);
  box-shadow: var(--shadow);
}

.projects-page .project-card.is-hidden {
  display: none;
}

.projects-page .project-badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(198, 134, 82, 0.13);
  color: #8a5735;
  font-size: 0.76rem;
  font-weight: 800;
}

.projects-page .project-card h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.projects-page .project-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.projects-page .mini-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(230, 226, 216, 0.88);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(243, 247, 242, 0.92), rgba(251, 250, 246, 0.84));
}

.projects-page .mini-kpi-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.projects-page .mini-kpi-row div {
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(230, 226, 216, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.projects-page .mini-kpi-row small,
.projects-page .mini-kpi-row strong,
.projects-page .mini-kpi-row span {
  display: block;
}

.projects-page .mini-kpi-row small {
  color: #6a766f;
  font-size: 0.68rem;
  font-weight: 800;
}

.projects-page .mini-kpi-row strong {
  margin-top: 3px;
  color: #173f32;
  font-size: 1.05rem;
  line-height: 1.1;
}

.projects-page .mini-kpi-row span {
  margin-top: 3px;
  color: #8a5735;
  font-size: 0.68rem;
  font-weight: 800;
}

.projects-page .mini-card {
  min-height: 128px;
  padding: 12px;
  border: 1px solid rgba(230, 226, 216, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.projects-page .mini-card.wide {
  grid-column: 1 / -1;
}

.projects-page .mini-card small {
  display: block;
  margin-bottom: 8px;
  color: #6a766f;
  font-size: 0.72rem;
  font-weight: 800;
}

.projects-page .mini-card strong {
  display: block;
  color: #203a31;
  font-size: 1.35rem;
  line-height: 1.1;
}

.projects-page .chart-panel strong {
  font-size: 1.12rem;
}

.projects-page .big-number {
  font-size: 2.6rem !important;
}

.projects-page .small-label {
  color: #6a766f;
  font-size: 0.82rem;
  font-weight: 700;
}

.projects-page .chart-svg {
  width: 100%;
  height: 112px;
  margin-top: 8px;
  overflow: visible;
}

.projects-page .chart-svg.advanced {
  height: 138px;
}

.projects-page .chart-svg .grid {
  fill: none;
  stroke: rgba(217, 212, 199, 0.72);
  stroke-width: 1;
}

.projects-page .chart-svg .axis {
  fill: none;
  stroke: rgba(67, 85, 77, 0.22);
  stroke-width: 1.4;
}

.projects-page .chart-line {
  fill: none;
  stroke: var(--green-800);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item .icon-circle img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: invert(22%) sepia(16%) saturate(1180%) hue-rotate(104deg) brightness(86%) contrast(92%);
}

.value-item h3 {
  width: 100%;
  margin: 0;
  line-height: 1.45;
  text-wrap: balance;
}

.projects-page .chart-area {
  fill: rgba(143, 201, 179, 0.16);
}

.projects-page .chart-dots circle,
.projects-page .scatter-dots circle {
  fill: var(--green-800);
}

.projects-page .axis-labels text,
.projects-page .axis-title {
  fill: #6a766f;
  font-size: 10px;
  font-weight: 700;
}

.projects-page .axis-labels.small text {
  font-size: 9px;
}

.projects-page .axis-title {
  fill: #40534b;
  font-size: 10px;
}

.projects-page .trend-line {
  fill: none;
  stroke: rgba(67, 85, 77, 0.48);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

.projects-page .mini-donut {
  width: 70px;
  height: 70px;
  margin: 0;
  border-radius: 50%;
  background: conic-gradient(var(--green-800) 0 44%, var(--mint) 44% 68%, #d9d4c7 68% 100%);
  position: relative;
}

.projects-page .mini-donut.alt {
  background: conic-gradient(#c68652 0 28%, var(--green-800) 28% 58%, var(--mint) 58% 78%, #d9d4c7 78% 100%);
}

.projects-page .mini-donut.gender {
  background: conic-gradient(var(--green-800) 0 52%, var(--mint) 52% 94%, #d9d4c7 94% 100%);
}

.projects-page .mini-donut::after {
  content: "";
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: #fff;
}

.projects-page .donut-with-legend {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 10px;
}

.projects-page .legend-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #4b5d55;
  font-size: 0.7rem;
  list-style: none;
}

.projects-page .legend-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.projects-page .legend-list span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green-800);
}

.projects-page .legend-list li:nth-child(2) span {
  background: var(--mint);
}

.projects-page .legend-list li:nth-child(3) span {
  background: #c68652;
}

.projects-page .legend-list li:nth-child(4) span {
  background: #d9d4c7;
}

.projects-page .horizontal-bars {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.projects-page .horizontal-bars div {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 8px;
  color: #4b5d55;
  font-size: 0.7rem;
}

.projects-page .grade-bars div {
  grid-template-columns: 62px 1fr;
}

.projects-page .horizontal-bars b {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #4b5d55;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.projects-page .horizontal-bars b::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(var(--w) - 30px);
  min-width: 34px;
  max-width: calc(100% - 72px);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-800), var(--mint));
}

.projects-page .mini-column-bars {
  height: 88px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  padding-bottom: 20px;
  border-left: 1px solid rgba(67, 85, 77, 0.2);
  border-bottom: 1px solid rgba(67, 85, 77, 0.2);
}

.projects-page .mini-column-bars span {
  position: relative;
  width: 18px;
  height: var(--h);
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--green-800), var(--mint));
}

.projects-page .mini-column-bars span::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  color: #6a766f;
  font-size: 0.56rem;
  font-weight: 800;
  white-space: nowrap;
}

.projects-page .segment-meter {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.projects-page .segment-meter span {
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-800), var(--mint));
}

.projects-page .mini-table {
  width: 100%;
  border-collapse: collapse;
  color: #354840;
  font-size: 0.76rem;
}

.projects-page .mini-table th,
.projects-page .mini-table td {
  padding: 6px 4px;
  border-bottom: 1px solid rgba(230, 226, 216, 0.8);
  text-align: left;
}

.projects-page .mini-table th {
  color: var(--green-900);
  font-weight: 800;
}

.projects-page .mini-scatter {
  height: 140px;
}

.projects-page .projects-cta-section {
  padding: 0 0 76px;
}

.projects-page .cta-card {
  min-height: 178px;
}

.service-page .cta-card h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.15rem);
}

.contact-page .contact-hero {
  padding: 82px 0 32px;
  text-align: center;
}

.contact-page .contact-hero h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--green-900);
  font-size: clamp(2.45rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-page .contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #44564f;
  font-size: 1.06rem;
}

.contact-page .contact-section {
  padding: 20px 0 76px;
}

.contact-page .email-action-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.contact-page .email-action-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(33, 77, 62, 0.34);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-page .email-action-btn:hover {
  transform: translateY(-1px);
  border-color: var(--green-800);
  background: #fff;
}

.contact-page .contact-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  max-width: 940px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-page .contact-divider::before,
.contact-page .contact-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.contact-page .contact-form-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.contact-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page .form-group.full {
  grid-column: 1 / -1;
}

.contact-page label {
  color: #253b32;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-page .optional-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-page .required-mark {
  color: #c68652;
  font-weight: 800;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
  width: 100%;
  border: 1px solid #ded8cb;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page select {
  min-height: 58px;
  padding: 0 46px 0 16px;
  line-height: 58px;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: #9b958a;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 4px rgba(33, 77, 62, 0.08);
}

.contact-page textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-page .submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-page .submit-btn {
  width: min(100%, 860px);
  min-height: 54px;
  border: 0;
  border-radius: 9px;
  background: var(--green-800);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(23, 63, 50, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .submit-btn:hover {
  transform: translateY(-1px);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.contact-page .submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-page .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page .form-status {
  max-width: 960px;
  margin: 0 auto 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
}

.contact-page .form-status.is-success {
  border-color: #9dcbb7;
  background: var(--green-100);
  color: var(--green-900);
}

.contact-page .form-status.is-error {
  border-color: #e0aaa5;
  background: #fff2f0;
  color: #8a2f27;
}

.contact-page .privacy-note {
  max-width: 960px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  margin: 28px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: #43554d;
  box-shadow: 0 10px 26px rgba(23, 63, 50, 0.04);
}

.contact-page .privacy-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.contact-page .privacy-note p {
  margin: 0;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop-dot {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise-bar {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes float-dashboard {
  0%,
  100% {
    transform: rotateX(1deg) rotateY(-2deg) translateY(0);
  }

  50% {
    transform: rotateX(1deg) rotateY(-2deg) translateY(-8px);
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .dashboard-card {
    max-width: 720px;
  }

  .values-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    max-width: 760px;
    margin-inline: auto;
    row-gap: 38px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 54px 0;
  }

  .nav-wrap {
    height: auto;
    min-height: 72px;
    padding: 12px 0;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 14px;
  }

  .logo {
    gap: 9px;
    font-size: 1.18rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(33, 77, 62, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--green-900);
    cursor: pointer;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-icon::before {
    top: -6px;
  }

  .menu-toggle-icon::after {
    top: 6px;
  }

  .nav-wrap.menu-open .menu-toggle-icon {
    background: transparent;
  }

  .nav-wrap.menu-open .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-wrap.menu-open .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow: visible;
    margin-top: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .nav-wrap.menu-open .nav {
    display: flex;
  }

  .nav > a,
  .dropdown-trigger {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    padding: 11px 10px;
    border-radius: 8px;
    text-align: left;
  }

  .nav > a:hover,
  .dropdown-trigger:hover {
    background: var(--sage-soft);
  }

  .nav > a.active::after,
  .nav > a:hover::after {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 4px;
  }

  .nav-wrap.menu-open .header-cta {
    display: inline-flex;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .dropdown:focus-within .dropdown-menu,
  .dropdown.open .dropdown-menu {
    max-height: 220px;
    padding: 6px 8px 8px;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a {
    padding: 11px 10px;
  }

  .dropdown-menu span {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.5rem);
  }

  .dashboard-card {
    grid-template-columns: 1fr;
    transform: none;
    min-height: 0;
  }

  .dash-main {
    padding: 18px;
  }

  .dash-sidebar {
    flex-direction: row;
    justify-content: center;
    padding: 16px;
  }

  .metric-row,
  .chart-grid,
  .values-grid,
  .audience-grid,
  .process-steps,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .chart-card {
    min-height: auto;
  }

  .bar-card {
    grid-column: auto;
  }

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

  .value-item + .value-item {
    border-left: 0;
  }

  .process-steps {
    gap: 34px;
  }

  .step-number {
    left: calc(50% - 18px);
  }

  .audience-card {
    min-height: auto;
  }

  .cta-card {
    padding: 30px 24px;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
  }

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

  .footer-wrap nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .section-slide {
    opacity: 1;
    transform: none;
  }
}

.service-page .header-inner {
  height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.service-page .page-intro {
  position: relative;
  overflow: hidden;
  padding: 64px 0 42px;
  text-align: center;
}

.service-page .page-intro > .container {
  position: relative;
}

.service-page .page-intro::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: 10px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(226, 219, 204, 0.45);
}

.service-page .page-title {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  color: var(--green-900);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-page .page-lead {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.service-page .service-switch {
  position: relative;
  z-index: 4;
  padding: 12px 0 34px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-page .service-switch-tabs {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.service-page .service-switch-link {
  position: relative;
  min-height: 36px;
  padding: 7px 0;
  color: #53615b;
  font-size: 0.96rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.service-page .service-switch-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-page .service-switch-link:hover,
.service-page .service-switch-link.active {
  color: var(--green-900);
}

.service-page .service-switch-link:hover::after,
.service-page .service-switch-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-page .section {
  padding: 54px 0;
}

.service-page .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
}

.service-page .section-title {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.service-page .section-copy {
  max-width: none;
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.94rem;
}

.service-page .need-grid,
.service-page .work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-page .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-page .need-card,
.service-page .work-card,
.service-page .service-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.service-page .need-card {
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: #274238;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 63, 50, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-page .need-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  width: auto;
  height: 3px;
  border-radius: 999px;
  background: #7faa6b;
  transform: scaleX(0.42);
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-page .need-card strong {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.28s ease;
}

.service-page .need-card p {
  position: static;
  width: 100%;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.22s ease, transform 0.3s ease;
}

.service-page .need-card:hover,
.service-page .need-card:focus-visible,
.service-page .need-card.is-open {
  border-color: rgba(33, 77, 62, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 242, 0.88));
  box-shadow: var(--shadow-soft);
  outline: none;
}

.service-page .need-card:hover::before,
.service-page .need-card:focus-visible::before,
.service-page .need-card.is-open::before {
  transform: scaleX(1);
  opacity: 1;
}

.service-page .need-card:hover strong,
.service-page .need-card:focus-visible strong,
.service-page .need-card.is-open strong {
  transform: none;
}

.service-page .need-card:hover p,
.service-page .need-card:focus-visible p,
.service-page .need-card.is-open p {
  max-height: 68px;
  margin-top: 7px;
  opacity: 1;
  transform: translateY(0);
}

.service-page .need-card .icon-circle,
.service-page .service-card .icon-circle,
.service-page .work-card .icon-circle {
  display: none;
}

.service-page .service-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  cursor: default;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-page .service-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-900), var(--mint));
}

.service-page .service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 74, 58, 0.44);
  box-shadow: var(--shadow);
  background: #fff;
}

.service-page .service-card h3,
.service-page .work-card h3,
.service-page .process-step h3 {
  color: #203a31;
  letter-spacing: 0;
}

.service-page .service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.22;
}

.service-page .service-card p,
.service-page .work-card p,
.service-page .process-step p {
  margin: 0;
  color: var(--muted);
}

.service-page .service-card p {
  font-size: 0.92rem;
}

.service-page .detail-link {
  display: none;
}

.service-page .work-card {
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 63, 50, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-page .work-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  width: auto;
  height: 3px;
  border-radius: 999px;
  background: #7faa6b;
  transform: scaleX(0.42);
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-page .work-card h3 {
  width: 100%;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-page .work-card p {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.22s ease, transform 0.3s ease;
}

.service-page .work-card:hover,
.service-page .work-card:focus-visible,
.service-page .work-card.is-open {
  border-color: rgba(33, 77, 62, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 242, 0.88));
  box-shadow: var(--shadow-soft);
  outline: none;
}

.service-page .work-card:hover::before,
.service-page .work-card:focus-visible::before,
.service-page .work-card.is-open::before {
  transform: scaleX(1);
  opacity: 1;
}

.service-page .work-card:hover p,
.service-page .work-card:focus-visible p,
.service-page .work-card.is-open p {
  max-height: 68px;
  margin-top: 7px;
  opacity: 1;
  transform: translateY(0);
}

.service-page .ethics-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(240, 242, 235, 0.94), rgba(255, 255, 255, 0.88));
}

.service-page .ethics-card h2 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.service-page .ethics-card p {
  margin: 0;
  color: #43554d;
}

.service-page .process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.service-page .process-row::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 41px;
  z-index: -1;
  border-top: 3px dotted #d9d4c7;
}

.service-page .process-step {
  position: relative;
  padding: 28px 16px 22px;
  text-align: center;
}

.service-page .step-num {
  position: absolute;
  top: -2px;
  left: calc(50% - 17px);
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(33, 74, 58, 0.18);
}

.service-page .process-step .icon-circle {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  font-size: 28px;
}

.service-page .process-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.service-page .process-step p {
  font-size: 0.75rem;
}

.service-page .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-page .footer-inner strong {
  color: var(--green-900);
  font-size: 1.15rem;
}

.service-page .footer-nav {
  display: flex;
  gap: 30px;
  color: #41504b;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .service-page .section-copy {
    white-space: normal;
  }

  .projects-page .projects-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-page .projects-notice {
    max-width: 560px;
  }

  .projects-page .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-page .project-card {
    min-height: 0;
  }

  .service-page .header-inner {
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .service-page .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .service-page .header-cta {
    width: 100%;
  }

  .service-page .need-grid,
  .service-page .work-grid,
  .service-page .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page .process-row {
    grid-template-columns: 1fr;
  }

  .service-page .process-row::before {
    display: none;
  }

  .service-page .step-num {
    position: static;
    margin: 0 auto 12px;
  }
}

@media (max-width: 640px) {
  .service-page .page-intro {
    padding: 46px 0 34px;
  }

  .service-page .section-header {
    display: block;
  }

  .service-page .section-copy {
    margin-top: 0;
  }

  .service-page .need-grid,
  .service-page .work-grid,
  .service-page .service-grid {
    grid-template-columns: 1fr;
  }

  .service-page .footer-inner,
  .service-page .footer-nav,
  .service-page .ethics-card {
    flex-direction: column;
  }

  .service-page .ethics-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .faq-page .faq-hero {
    padding: 56px 0 24px;
  }

  .faq-page .faq-hero-grid {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .contact-page .contact-hero {
    padding: 44px 0 20px;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .contact-page .contact-form-card {
    padding: 20px 16px;
  }

  .contact-page .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .privacy-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-page .privacy-icon {
    margin: 0 auto;
  }

  .contact-page .footer-wrap,
  .contact-page .footer-wrap nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-page .nav-wrap {
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .projects-page .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .projects-page .header-cta {
    width: 100%;
  }

  .projects-page .projects-hero {
    padding: 56px 0 24px;
  }

  .projects-page .projects-hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .projects-page .project-filter-tabs {
    justify-content: flex-start;
    gap: 24px;
  }

  .projects-page .project-filter {
    font-size: 0.88rem;
  }

  .projects-page .project-card {
    padding: 22px;
  }

  .projects-page .mini-kpi-row {
    grid-template-columns: 1fr;
  }

  .projects-page .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .projects-page .mini-card.wide {
    grid-column: auto;
  }

  .projects-page .footer-wrap,
  .projects-page .footer-wrap nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-page .nav-wrap {
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .faq-page .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .faq-page .header-cta {
    width: 100%;
  }

  .faq-page .faq-hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .faq-page .faq-tabs {
    justify-content: flex-start;
    gap: 24px;
  }

  .faq-page .faq-tab {
    min-height: 34px;
    padding: 6px 0;
    font-size: 0.88rem;
  }

  .faq-page .faq-question {
    min-height: 64px;
    padding: 16px 18px;
    font-size: 0.94rem;
  }

  .faq-page .faq-answer {
    padding: 0 18px 20px;
  }

  .faq-page .faq-cta {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .faq-page .footer-wrap,
  .faq-page .footer-wrap nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-slide,
  .section-slide.slide-from-right,
  .section-slide.slide-from-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Keep every inner-page hero title consistent with the service-page title. */
.service-page .page-title,
.faq-page .faq-hero-copy h1,
.projects-page .projects-hero-copy h1,
.contact-page .contact-hero h1 {
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

/* Compact, consistent phone navigation across every page. */
@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header .nav-wrap,
  .service-page .site-header .header-inner {
    min-height: 64px;
    height: auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0 12px;
  }

  .logo {
    min-width: 0;
    gap: 8px;
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 8px;
  }

  .logo-mark img {
    width: 80px;
    left: -23px;
    top: -15px;
  }

  .logo-text {
    gap: 4px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
  }

  .site-header .nav,
  .service-page .site-header .nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    overflow: visible;
    margin-top: 10px;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .site-header .menu-open .nav,
  .service-page .site-header .menu-open .nav {
    display: flex;
  }

  .site-header .nav > a,
  .site-header .dropdown-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
  }

  .site-header .nav > a:hover,
  .site-header .dropdown-trigger:hover {
    background: var(--sage-soft);
  }

  .site-header .nav > a.active::after,
  .site-header .nav > a:hover::after {
    display: none;
  }

  .site-header .header-cta {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
  }

  .site-header .menu-open .header-cta {
    display: inline-flex;
  }

  .site-header .nav-item {
    width: 100%;
  }

  .site-header .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease, visibility 0.25s ease;
  }

  .site-header .dropdown:focus-within .dropdown-menu,
  .site-header .dropdown.open .dropdown-menu {
    max-height: 220px;
    padding: 6px 8px 8px;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header .dropdown-menu a {
    padding: 10px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.5rem);
    line-height: 1.1;
    overflow-wrap: normal;
  }

  .hero .lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .service-page .page-intro,
  .contact-page .contact-hero,
  .projects-page .projects-hero,
  .faq-page .faq-hero {
    padding-top: 40px;
  }

  .contact-page .contact-section {
    padding-top: 12px;
  }

  .contact-page input,
  .contact-page select,
  .contact-page textarea {
    font-size: 1rem;
  }

  .section-slide,
  .section-slide.slide-from-right,
  .section-slide.slide-from-bottom {
    transform: translateY(20px);
  }

  .section-slide.is-visible,
  .section-slide.slide-from-right.is-visible,
  .section-slide.slide-from-bottom.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 0.98rem;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
