/* ============================================================
   BIYOMEDYA — Global Styles
   ============================================================ */

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

:root {
  --green-darkest: #F5FBF6;
  --green-dark: #DDEEE3;
  --green-mid: #BFDCCB;
  --green-main: #8EBE9E;
  --green-light: #3FAE63;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --white: #ffffff;
  --off-white: #f2faf4;
  --text-heading: #1f3326;
  --text-body: #4d6658;
  --text-muted: #6f8a7b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(74, 132, 96, 0.16);
  --shadow-card: 0 12px 34px rgba(74, 132, 96, 0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--green-darkest);
  color: var(--text-heading);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(63, 174, 99, 0.12);
  border: 1px solid rgba(63, 174, 99, 0.25);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-tag--light {
  color: var(--gold-light);
  background: rgba(240, 192, 64, 0.12);
  border-color: rgba(240, 192, 64, 0.25);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.section-title--light {
  color: var(--text-heading);
}

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

.section-desc {
  max-width: 560px;
  margin-top: 16px;
  color: var(--text-body);
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 16px auto 0;
}

.section-header--light .section-title {
  color: var(--text-heading);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--green-light);
  color: var(--white);
}

.btn--primary:hover {
  background: #5ABC7A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 174, 99, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-heading);
  border: 2px solid rgba(63, 174, 99, 0.28);
}

.btn--ghost:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 248, 251, 0.92);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(63, 174, 99, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo__img {
  height: 65px;
  width: auto;
  display: block;
  filter: none;
  transition: opacity var(--transition);
}

.logo__img:hover {
  opacity: 0.85;
}

.logo__img--footer {
  /* height: 32px; */
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(31, 51, 38, 0.8);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--green-light);
}

.nav__link--cta {
  background: var(--green-light);
  color: var(--white);
  font-weight: 700;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: #5ABC7A;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open span:nth-child(2) {
  opacity: 0;
}

.hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(255, 248, 251, 0.97);
  border-bottom: 1px solid rgba(63, 174, 99, 0.15);
}

.mobile-nav--open {
  display: flex;
}

.mobile-nav .nav__link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(63, 174, 99, 0.1);
  border-radius: 0;
  font-size: 1rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.lang-switcher__btn {
  border: 1px solid rgba(63, 174, 99, 0.15);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.6;
}

.lang-switcher__btn:hover,
.lang-switcher__btn.is-active {
  opacity: 1;
  background: rgba(63, 174, 99, 0.1);
  border-color: var(--green-light);
}

.lang-flag {
  font-style: normal;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(63, 174, 99, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 70%, rgba(63, 174, 99, 0.4) 0%, transparent 60%),
    linear-gradient(160deg, #F5FBF6 0%, #EAF7EE 50%, #F5FBF6 100%);
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: rgba(63, 174, 99, 0.07);
  top: -100px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(212, 160, 23, 0.06);
  bottom: 0;
  left: 5%;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(63, 174, 99, 0.05);
  top: 40%;
  right: 20%;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

.particle:nth-child(1) {
  left: 8%;
  top: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  top: 60%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 75%;
  top: 15%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  left: 85%;
  top: 50%;
  animation-delay: 0.5s;
}

.particle:nth-child(5) {
  left: 50%;
  top: 75%;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  left: 35%;
  top: 25%;
  animation-delay: 1.5s;
}

.particle:nth-child(7) {
  left: 65%;
  top: 80%;
  animation-delay: 2.5s;
}

.particle:nth-child(8) {
  left: 90%;
  top: 30%;
  animation-delay: 4s;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(-40px) scale(1.1);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 18px 120px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.3);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero__title--accent {
  -webkit-text-stroke: 2px var(--green-light);
  color: transparent;
}

.hero__desc {
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  padding: 0 32px;
}

.stat:first-child {
  padding-left: 32px;
}

.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.03em;
}

.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(63, 174, 99, 0.2);
}

/* SDG Badges */
.hero__sdg {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__sdg-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  flex: 0 0 100%;
}

.hero__sdg-icons {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  justify-content: center;
  width: min(100%, 760px);
}

.sdg-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  min-width: 0;
  max-width: none;
  width: 100%;
}

.sdg-badge img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.sdg-badge:hover img {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.sdg-badge span {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.28;
  min-height: 2.56em;
}

.sdg-badge__tile {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.sdg-badge--3 .sdg-badge__tile {
  background: #2f9552;
}

.sdg-badge--9 .sdg-badge__tile {
  background: #5da94f;
}

.sdg-badge--12 .sdg-badge__tile {
  background: #7aa247;
}

.sdg-badge--17 .sdg-badge__tile {
  background: #2f8868;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounceScroll 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-main), transparent);
}

@keyframes bounceScroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ============================================================
   REFERENCES
   ============================================================ */

.references {
  padding: 48px 0;
  border-top: 1px solid rgba(63, 174, 99, 0.1);
  border-bottom: 1px solid rgba(63, 174, 99, 0.1);
  overflow: hidden;
}

.references__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.references__track {
  overflow: hidden;
}

.references__inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ref-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity var(--transition);
}

.ref-item:hover {
  opacity: 1;
}

.ref-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
  filter: none;
}

/* ============================================================
   ABOUT — redesigned
   ============================================================ */

.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.about__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.about__shape--1 {
  width: 560px;
  height: 560px;
  background: rgba(63, 174, 99, 0.06);
  top: -80px;
  right: -180px;
}

.about__shape--2 {
  width: 320px;
  height: 320px;
  background: rgba(212, 160, 23, 0.05);
  bottom: -60px;
  left: -80px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.about--reverse .about__inner {
  grid-template-columns: 1fr 1.05fr;
}

/* ---- Dashboard visual ---- */
.about__visual {
  position: relative;
}

.about__dashboard {
  position: relative;
  background: linear-gradient(145deg, #F0F9F3 0%, #F7FCF8 100%);
  border: 1px solid rgba(63, 174, 99, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(74, 132, 96, 0.16), 0 0 0 1px rgba(63, 174, 99, 0.07);
}

/* Subtle glow behind dashboard */
.about__dashboard::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: rgba(63, 174, 99, 0.08);
  filter: blur(40px);
  pointer-events: none;
}

.dash__glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(63, 174, 99, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* Top bar */
.dash__topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(63, 174, 99, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.dash__dots {
  display: flex;
  gap: 6px;
  margin-right: 4px;
}

.dash__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(63, 174, 99, 0.2);
}

.dash__dots span:nth-child(1) {
  background: #7fd49a;
}

.dash__dots span:nth-child(2) {
  background: #9adfae;
}

.dash__dots span:nth-child(3) {
  background: #5fbf7f;
}

.dash__title {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.dash__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.06em;
}

.dash__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

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

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

/* Metric cards */
.dash__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(63, 174, 99, 0.08);
  border-bottom: 1px solid rgba(63, 174, 99, 0.12);
}

.dash__metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px;
  background: #F7FCF8;
}

.dash__metric svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.dash__metric-val {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.dash__metric-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.dash__metric-trend {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dash__metric-trend--up {
  color: var(--green-light);
}

.dash__metric-trend--stable {
  color: var(--text-muted);
}

.dash__metric-trend--down {
  color: #ff6b6b;
}

/* Chart */
.dash__chart-area {
  padding: 18px 20px 10px;
}

.dash__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dash__chart-header span:first-child {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dash__chart-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-light);
  background: rgba(63, 174, 99, 0.12);
  border: 1px solid rgba(63, 174, 99, 0.22);
  padding: 3px 10px;
  border-radius: 99px;
}

.dash__chart {
  width: 100%;
  height: 90px;
  display: block;
}

.dash__chart-area-fill,
.dash__chart-line,
.dash__chart-point,
.dash__chart-pulse,
.dash__chart-guide,
.dash__chart-tooltip,
.dash__chart-tooltip-text {
  transform-box: fill-box;
  transform-origin: center;
}

.dash__chart-line {
  stroke-dasharray: 8 10;
  animation: chartFlow 10s linear infinite;
}

.dash__chart-area-fill {
  animation: chartBreath 5.5s ease-in-out infinite;
}

.dash__chart-point {
  animation: chartPointBlink 4.2s ease-in-out infinite;
}

.dash__chart-point--active {
  animation: chartPointBlink 4.2s ease-in-out infinite, chartActivePoint 2.2s ease-in-out infinite;
}

.dash__chart-pulse {
  animation: chartPulse 2.2s ease-out infinite;
}

.dash__chart-guide {
  animation: chartGuideFlicker 2.8s ease-in-out infinite;
}

.dash__chart-tooltip,
.dash__chart-tooltip-text {
  animation: chartTooltipFloat 3.8s ease-in-out infinite;
}

.dash__chart-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-top: 6px;
}

.dash__chart-labels span {
  font-size: 0.62rem;
  color: rgba(111, 138, 123, 0.92);
  letter-spacing: 0.04em;
}

.dash__download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  justify-content: flex-start;
}

.dash-store-btn {
  min-width: 188px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(8, 17, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.dash-store-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 174, 99, 0.28);
  background: rgba(12, 25, 34, 0.94);
}

.dash-store-btn__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 28px;
}

.dash-store-btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dash-store-btn__copy {
  display: flex;
  flex-direction: column;
}

.dash-store-btn__eyebrow {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.dash-store-btn__title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
}

@keyframes chartFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -144;
  }
}

@keyframes chartBreath {

  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes chartPointBlink {

  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

@keyframes chartActivePoint {

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

  50% {
    transform: scale(1.14);
  }
}

@keyframes chartPulse {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  35% {
    opacity: 0.55;
  }

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

@keyframes chartGuideFlicker {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes chartTooltipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .dash__chart-area-fill,
  .dash__chart-line,
  .dash__chart-point,
  .dash__chart-pulse,
  .dash__chart-guide,
  .dash__chart-tooltip,
  .dash__chart-tooltip-text {
    animation: none;
  }
}

/* Status row */
.dash__status-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(63, 174, 99, 0.12);
}

.dash__status {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(84, 116, 96, 0.95);
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(63, 174, 99, 0.1);
}

.dash__status:last-child {
  border-right: none;
}

.dash__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

.dash__status-dot--warn {
  background: #f0c040;
}

/* ---- Right text ---- */
.about__headline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about__desc {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__actions {
  margin-top: 24px;
}

.about-download-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(63, 174, 99, 0.08), rgba(63, 174, 99, 0.04));
  border: 1px solid rgba(63, 174, 99, 0.14);
  border-radius: 22px;
}

.about-download-cta__copy {
  max-width: 560px;
}

.about-download-cta__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}

.about-download-cta__copy strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-heading);
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(63, 174, 99, 0.04);
  border: 1px solid rgba(63, 174, 99, 0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(20px);
}

.about__feature.revealed {
  opacity: 1;
  transform: none;
}

.about__feature:hover {
  border-color: rgba(63, 174, 99, 0.28);
  background: rgba(63, 174, 99, 0.07);
  transform: translateX(4px);
}

.about__feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 174, 99, 0.1);
  border-radius: 10px;
  color: var(--green-light);
  flex-shrink: 0;
}

.about__feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-heading);
}

.about__feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ---- API board variant ---- */
.api-board {
  background:
    radial-gradient(circle at top right, rgba(63, 174, 99, 0.12), transparent 28%),
    linear-gradient(145deg, #fff4f7 0%, #fffbfd 100%);
  border-color: rgba(63, 174, 99, 0.2);
  box-shadow: 0 24px 56px rgba(74, 132, 96, 0.14), 0 0 0 1px rgba(63, 174, 99, 0.06);
}

.api-board::before {
  background: rgba(63, 174, 99, 0.08);
}

.api-board .dash__live,
.api-board__eyebrow,
.api-board__method,
.api-stat strong,
.api-line code {
  color: var(--green-light);
}

.api-board .dash__live-dot {
  background: var(--green-light);
}

.api-board .dash__glow {
  background: rgba(63, 174, 99, 0.08);
}

.api-board__body {
  padding: 24px 22px 22px;
}

.api-board__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.api-board__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.api-board__hero h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.api-board--grid .api-board__body {
  padding: 26px 24px 24px;
}

.api-board__method {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(63, 174, 99, 0.1);
  border: 1px solid rgba(63, 174, 99, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.api-board__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.api-stat {
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(63, 174, 99, 0.12);
  border-radius: 14px;
}

.api-stat__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.api-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.api-board__code {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 174, 99, 0.1);
  border-radius: 16px;
}

.api-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(63, 174, 99, 0.1);
}

.api-line:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.api-line span {
  font-size: 0.78rem;
  color: var(--text-body);
}

.api-line code {
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.api-board__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.api-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(63, 174, 99, 0.08);
  border: 1px solid rgba(63, 174, 99, 0.14);
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.api-overview {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.api-overview__item {
  padding: 16px 18px;
  background: rgba(63, 174, 99, 0.04);
  border: 1px solid rgba(63, 174, 99, 0.1);
  border-radius: 14px;
}

.api-overview__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  color: var(--green-light);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.api-overview__item strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-heading);
}

.api-overview__actions {
  margin-top: 20px;
}

.api-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.api-category-card {
  display: block;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(63, 174, 99, 0.1);
  border-radius: 16px;
  min-height: 100%;
}

.api-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 174, 99, 0.22);
  background: rgba(63, 174, 99, 0.06);
}

.api-category-card__head {
  margin-bottom: 14px;
}

.api-category-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(63, 174, 99, 0.1);
  border: 1px solid rgba(63, 174, 99, 0.14);
  color: var(--green-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.api-category-card__head strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text-heading);
}

.api-category-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.api-category-card__list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-body);
}

.api-category-card__list li::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.9;
}

.api-category-card:last-child {
  grid-column: span 2;
}

/* ============================================================
   ECOSYSTEMS
   ============================================================ */

.ecosystems {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-darkest) 0%, #EDF8F0 100%);
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sustain-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(63, 174, 99, 0.08), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(63, 174, 99, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), background var(--transition);
}

.sustain-card.revealed {
  opacity: 1;
  transform: none;
}

.sustain-card:hover {
  border-color: rgba(63, 174, 99, 0.24);
  background:
    radial-gradient(circle at top right, rgba(63, 174, 99, 0.12), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 100%);
}

.sustain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(63, 174, 99, 0.08);
  border: 1px solid rgba(63, 174, 99, 0.12);
  font-size: 1.5rem;
}

.sustain-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.sustain-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 18px;
}

.sustain-card__meta {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(63, 174, 99, 0.08);
  border: 1px solid rgba(63, 174, 99, 0.12);
  color: var(--green-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sustain-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(63, 174, 99, 0.12), transparent 28%),
    linear-gradient(145deg, #fff4f8 0%, #fffafb 100%);
  border: 1px solid rgba(63, 174, 99, 0.16);
  box-shadow: 0 16px 42px rgba(74, 132, 96, 0.14);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sustain-cta.revealed {
  opacity: 1;
  transform: none;
}

.sustain-cta__copy {
  max-width: 640px;
}

.sustain-cta__copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.sustain-cta__copy p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

.sustain-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   SPECIES / SERVICES
   ============================================================ */

.species {
  position: relative;
  padding: 120px 0;
}

.species__shape {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(63, 174, 99, 0.04);
  filter: blur(80px);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(63, 174, 99, 0.1);
  transition: all var(--transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
}

.service-item.revealed {
  opacity: 1;
  transform: none;
}

.service-item:hover {
  border-color: rgba(63, 174, 99, 0.25);
}

.service-item--open {
  border-color: rgba(63, 174, 99, 0.3);
  background: rgba(63, 174, 99, 0.04);
}

.service-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
}

.service-item__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-item__icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(63, 174, 99, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-item__left h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.service-item__num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.service-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.service-item--open .service-item__body {
  max-height: 300px;
  padding: 0 28px 28px;
}

.service-item__body p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-item__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(63, 174, 99, 0.12);
  color: var(--green-light);
  border: 1px solid rgba(63, 174, 99, 0.2);
}

/* ============================================================
   PROJECTS
   ============================================================ */

.projects {
  padding: 120px 0;
  background: #EDF8F0;
}

.projects-slider {
  position: relative;
}

.projects-slider__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.projects-slider__status {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.projects-slider__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.projects-slider__counter {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.02em;
}

.projects-slider__controls {
  display: flex;
  gap: 10px;
}

.projects-slider__btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(63, 174, 99, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.projects-slider__btn:hover {
  border-color: rgba(63, 174, 99, 0.3);
  color: var(--green-light);
  background: rgba(63, 174, 99, 0.06);
}

.projects-slider__btn:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.projects-slider__viewport {
  overflow: hidden;
}

.projects-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.projects-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(63, 174, 99, 0.22);
  cursor: pointer;
  transition: all var(--transition);
}

.projects-slider__dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--green-light);
}

.project-card {
  flex: 0 0 100%;
  background: var(--green-darkest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(63, 174, 99, 0.1);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
}

.project-card.revealed {
  opacity: 1;
  transform: none;
}

.project-card:hover {
  border-color: rgba(63, 174, 99, 0.25);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.project-card__visual {
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 28px 28px;
}

.project-card__visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__visual img {
  width: min(100%, 340px);

  object-fit: cover;
  display: block;
  border-radius: 24px;
  /* border: 1px solid rgba(63, 174, 99, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28); */
}

.project-card__body {
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.project-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(63, 174, 99, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(63, 174, 99, 0.2);
}

.project-card__body h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.project-card__body p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
}

.project-card__stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.project-stat {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.project-stat span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-light);
}

.project-card__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-light);
  transition: gap var(--transition);
}

.project-card__link:hover {
  letter-spacing: 0.03em;
}

/* ============================================================
   INSIGHTS
   ============================================================ */

.insights {
  padding: 120px 0;
  background: linear-gradient(180deg, #EDF8F0 0%, #F5FBF6 100%);
}

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

.insight-feature,
.insight-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 174, 99, 0.1);
  background: rgba(255, 255, 255, 0.74);
  padding: 32px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.insight-feature:hover,
.insight-card:hover {
  border-color: rgba(63, 174, 99, 0.22);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
}

.insight-feature {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-card--simple {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.insight-feature__meta,
.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.insight-feature h3,
.insight-card h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.insight-feature p,
.insight-card p {
  color: var(--text-body);
  line-height: 1.8;
}

.insight-list {
  display: grid;
  gap: 16px;
}

.insights__footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.insight-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(63, 174, 99, 0.12);
  border: 1px solid rgba(63, 174, 99, 0.18);
}

.insight-pill--muted {
  color: var(--text-body);
  background: rgba(63, 174, 99, 0.06);
  border-color: rgba(63, 174, 99, 0.12);
}

.insight-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
}

.insight-link:hover {
  letter-spacing: 0.02em;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.nav__link--active {
  color: var(--green-light);
}

.page-hero {
  padding: 160px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(63, 174, 99, 0.08), transparent 42%),
    linear-gradient(180deg, #F5FBF6 0%, #EDF8F0 100%);
}

.page-hero__inner {
  display: flex;
  justify-content: center;
}

.page-hero__copy {
  width: min(100%, 760px);
  text-align: center;
}

.page-hero__copy .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.blog-index {
  padding: 0 0 120px;
  background: #EDF8F0;
}

.blog-listing__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.blog-filter__btn {
  border: 1px solid rgba(63, 174, 99, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-body);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.blog-filter__btn:hover,
.blog-filter__btn.is-active {
  color: var(--green-light);
  border-color: rgba(63, 174, 99, 0.3);
  background: rgba(63, 174, 99, 0.08);
}

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 174, 99, 0.1);
  background: rgba(255, 255, 255, 0.82);
  padding: 30px 32px;
}

.blog-card__media {
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(63, 174, 99, 0.18);
  background: rgba(63, 174, 99, 0.06);
}

.blog-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card[hidden] {
  display: none;
}

.blog-card--featured {
  background: linear-gradient(180deg, rgba(63, 174, 99, 0.1), rgba(255, 255, 255, 0.82));
  border-color: rgba(63, 174, 99, 0.2);
}

.blog-card__meta,
.blog-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.blog-card h2 a {
  color: var(--text-heading);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card h2 a:hover {
  color: var(--green-light);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
}

.blog-card__link:hover {
  letter-spacing: 0.02em;
}

.blog-card p,
.blog-article p {
  color: var(--text-body);
  line-height: 1.85;
  margin-top: 12px;
}

.blog-article-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
}

.blog-article {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 174, 99, 0.14);
  background: rgba(255, 255, 255, 0.84);
  padding: 34px;
}

.blog-article__media {
  margin-bottom: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(63, 174, 99, 0.16);
  background: rgba(63, 174, 99, 0.06);
}

.blog-article__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-article h1 {
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.blog-article h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 10px;
}

.blog-article h3 {
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  line-height: 1.35;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--green-light);
}

.blog-article h4 {
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.45;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.blog-article h5 {
  font-size: 0.86rem;
  line-height: 1.45;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--green-light);
  letter-spacing: 0.04em;
}

.blog-article ul {
  margin: 10px 0 14px 20px;
}

.blog-article li {
  color: var(--text-body);
  line-height: 1.75;
  margin: 8px 0;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
}

.blog-article__back:hover {
  letter-spacing: 0.02em;
}

/* ============================================================
   NUMBERS
   ============================================================ */

.numbers {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.numbers__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EDF8F0 0%, #E3F3E8 50%, #F5FBF6 100%);
}

.numbers__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(63, 174, 99, 0.04);
  filter: blur(100px);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.number-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(63, 174, 99, 0.04);
  border: 1px solid rgba(63, 174, 99, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.number-card.revealed {
  opacity: 1;
  transform: none;
}

.number-card:hover {
  border-color: rgba(63, 174, 99, 0.3);
  background: rgba(63, 174, 99, 0.08);
  transform: translateY(-4px);
}

.number-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.number-card__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.number-card__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   SUSTAINABILITY
   ============================================================ */

.sustainability {
  padding: 120px 0;
  background: var(--green-darkest);
}

.sustainability__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sustainability__text p {
  margin-top: 16px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

.sustain-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sustain-item__info {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.sustain-item__info span {
  color: var(--text-body);
}

.sustain-item__info strong {
  color: var(--green-light);
}

.sustain-item__bar {
  height: 6px;
  background: rgba(63, 174, 99, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.sustain-item__fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 99px;
  animation: barFill 1.5s ease forwards;
}

@keyframes barFill {
  from {
    width: 0;
  }

  to {
    width: var(--pct);
  }
}

.sustain-ring {
  display: flex;
  justify-content: center;
}

.sustain-ring svg {
  max-width: 300px;
}

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

.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #EDF8F0, #F5FBF6);
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.contact__shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(63, 174, 99, 0.06);
  top: -100px;
  left: -100px;
}

.contact__shape--2 {
  width: 350px;
  height: 350px;
  background: rgba(212, 160, 23, 0.05);
  bottom: -50px;
  right: -50px;
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__desc {
  margin-top: 16px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.contact__detail p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

.contact__detail a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__detail a:hover {
  color: var(--green-light);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a66c2;
  text-decoration: none;
}

.linkedin-link:hover {
  text-decoration: underline;
  color: #004182;
}

.contact__form-wrap {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(63, 174, 99, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form .g-recaptcha {
  display: inline-block;
}

.form-message {
  min-height: 1.25rem;
  font-size: 0.88rem;
  color: var(--green-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(63, 174, 99, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-heading);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(111, 138, 123, 0.75);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(63, 174, 99, 0.5);
  background: rgba(63, 174, 99, 0.04);
}

.form-group select option {
  background: #fff7fa;
  color: var(--text-heading);
}

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

.footer {
  background: #F0F9F3;
  border-top: 1px solid rgba(63, 174, 99, 0.1);
  padding: 64px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer__copy {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(111, 138, 123, 0.9);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(77, 102, 88, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--green-light);
}

.footer__payment {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.footer__payment img {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

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

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(77, 102, 88, 0.9);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--green-light);
}

/* ============================================================
   SCROLL REVEAL BASE
   ============================================================ */

.sustain-card,
.sustain-cta,
.project-card,
.number-card,
.service-item,
.about__feature,
.insight-feature,
.insight-card {
  transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition),
    background var(--transition), box-shadow var(--transition);
}

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

@media (max-width: 1024px) {
  .sustain-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-slider__topbar {
    align-items: flex-end;
  }

  .project-card {
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  }

  .project-card__visual {
    min-height: 280px;
    padding: 24px 0 24px 24px;
  }

  .project-card__visual img {
    width: min(100%, 280px);
    max-height: 240px;
  }

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

  .insights__layout {
    grid-template-columns: 1fr;
  }

  .blog-listing__grid {
    grid-template-columns: 1fr;
  }

  .sustainability__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sustain-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header--scrolled {
    padding: 10px 0;
  }

  .header__inner {
    justify-content: flex-start;
    gap: 10px;
  }

  .logo__img {
    height: 52px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 4px;
  }

  .lang-switcher__btn {
    padding: 5px 9px;
  }

  .mobile-nav {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero__content {
    padding: 44px 14px 80px;
  }

  .hero__title {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
    line-height: 1.05;
  }

  .hero__title br {
    display: none;
  }

  .hero__badge {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    margin-bottom: 18px;
    line-height: 1.35;
  }

  .hero__desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .stat {
    padding: 0;
  }

  .stat__divider {
    width: 72px;
    height: 1px;
  }

  .hero__sdg-icons {
    width: min(100%, 620px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    justify-content: center;
  }

  .hero__sdg {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
  }

  .hero__sdg-label {
    text-align: center;
    width: min(100%, 620px);
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .sdg-badge {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .about {
    padding: 88px 0;
  }

  .projects-slider__topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-slider__controls {
    width: 100%;
    justify-content: space-between;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card__visual {
    min-height: 220px;
    padding: 24px 24px 0;
  }

  .project-card__visual img {
    width: min(100%, 260px);
    max-height: 220px;
  }

  .project-card__body {
    padding: 28px 24px 30px;
  }

  .insight-feature,
  .insight-card {
    padding: 24px;
  }

  .blog-card,
  .blog-article {
    padding: 24px;
  }

  .page-hero {
    padding: 132px 0 44px;
  }

  .blog-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .blog-filter__btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about--reverse .about__inner {
    grid-template-columns: 1fr;
  }

  .about__visual,
  .about__text,
  .about__dashboard {
    min-width: 0;
  }

  .about__headline {
    font-size: clamp(1.6rem, 7.8vw, 2.2rem);
  }

  .dash__topbar {
    padding: 12px 14px;
  }

  .dash__title {
    font-size: 0.68rem;
  }

  .dash__metrics {
    grid-template-columns: 1fr;
  }

  .dash__metric {
    padding: 12px 14px;
  }

  .dash__metric-label {
    white-space: normal;
    line-height: 1.2;
  }

  .dash__chart-area {
    padding: 14px 14px 8px;
  }

  .dash__chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dash__download-row {
    width: 100%;
  }

  .dash-store-btn {
    flex: 1 1 220px;
  }

  .dash__status-row {
    flex-direction: column;
  }

  .dash__status {
    border-right: none;
    border-bottom: 1px solid rgba(63, 174, 99, 0.1);
  }

  .dash__status:last-child {
    border-bottom: none;
  }

  .about__feature {
    align-items: flex-start;
  }

  .about-download-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
    padding: 20px;
  }

  .api-board__hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .api-board__stats {
    grid-template-columns: 1fr;
  }

  .api-categories {
    grid-template-columns: 1fr;
  }

  .api-category-card:last-child {
    grid-column: span 1;
  }

  .about__badge-float {
    right: 0;
    bottom: -16px;
  }

  .hero__title {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .hero__stats {
    gap: 14px;
  }

  .stat {
    padding: 0;
  }

  .sustain-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact__form-wrap {
    padding: 24px;
  }

  .section-header {
    text-align: left;
  }

  .section-header .section-desc {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .header__inner {
    gap: 8px;
  }

  .logo__img {
    height: 46px;
  }

  .lang-switcher__btn {
    padding: 4px 8px;
    font-size: 0.66rem;
  }

  .hero__actions {
    margin-bottom: 42px;
  }

  .hero__title {
    font-size: clamp(1.85rem, 11.5vw, 2.7rem);
  }

  .hero__desc {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__sdg {
    align-items: center;
    gap: 12px;
  }

  .hero__sdg-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    justify-content: center;
  }

  .sdg-badge img {
    width: 52px;
    height: 52px;
  }

  .sdg-badge__tile {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
  }

  .sdg-badge {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .sdg-badge span {
    font-size: 0.6rem;
    line-height: 1.25;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 12px;
  }

  .stat__divider {
    width: 60px;
  }

  .insight-feature__meta,
  .insight-card__meta,
  .blog-card__meta,
  .blog-article__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about {
    padding: 76px 0;
  }

  .dash__metric-val {
    font-size: 0.98rem;
  }

  .dash__chart {
    height: 84px;
  }

  .dash__chart-labels span {
    font-size: 0.58rem;
  }

  .dash-store-btn {
    width: 100%;
    min-width: 0;
  }

  .blog-card h2 {
    font-size: clamp(1.2rem, 7vw, 1.5rem);
  }
}