/* Base layout */
:root {
  --brand-teal: #2a8159;
  --brand-teal-2: #65bb96;
  --accent-light: #e9f5ef;
  --accent-pale: #f3fbf6;
  --primary-black: #1eaf4e;
  --primary-gold: #a09a27;
  --text-dark: #17930c;
  --text-light: #4f8b5d;
  --light-gray: #f6faf8;
  --csr-blue: #226654; /* deep forest */
  --csr-blue-deep: #5a8878; /* deeper forest */
  --csr-ivory: #dfeee5; /* pale leaf band */
}

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

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

body:not(.home) {
  padding-top: 120px; /* offset for fixed logo */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

.home section h2 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
}

section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  padding: 14px 32px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #239625;
  color: #fafafa;
  border: 2px solid #000000;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #94d760;
  color: #000000;
  box-shadow: 0 10px 24px rgba(23, 183, 42, 0.742);
  border: 2px solid #ffffff;
}

.btn-outline-primary {
  background: transparent;
  color: #3aa14b;
  border: 2px solid #2cb813;
}

/* Cards hover */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card img { transition: all 0.3s ease; }
.card:hover img { transform: scale(1.05); }

/* Hero video */
.video-overlay { z-index: 0; }
.z-index-1 { z-index: 1; }

.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 40px 0 20px;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf6 100%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .video-background video { object-fit: cover; }
}

/* What we do */
#what-we-do h2 { font-weight: 800; color: var(--brand-teal); }
#what-we-do p.text-muted { color: var(--text-light) !important; }
#what-we-do .what-card {
  display: block;
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(12, 60, 64, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#what-we-do .what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(10, 230, 87, 0.882);
}
#what-we-do .what-card__image {
  position: relative;
  height: 100%;
  background-image: var(--what-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: filter 0.3s ease;
}
#what-we-do .what-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
  transition: opacity 0.3s ease;
}
#what-we-do .what-card__title {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 12px 14px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
#what-we-do .what-card__text {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
#what-we-do .what-card:hover .what-card__image {
  filter: brightness(0.5);
}
#what-we-do .what-card:hover .what-card__image::after {
  opacity: 0.2;
}
#what-we-do .what-card:hover .what-card__text {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline {
  display: inline-block;
  color: var(--brand-teal);
  font-weight: 550;
  font-size: clamp(5.2rem, 7.8vw, 6.8rem);
  line-height: 1.05;
  text-align: left;
  animation: headlinePop 1s ease;
  text-shadow: 0 1px 0 #0b3b26, 0 2px 0 #0b3b26, 0 3px 6px rgba(0,0,0,0.08);
}

@keyframes headlinePop {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  60% { opacity: 1; transform: translateY(0) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* CSR section */
.csr-section {
  position: relative;
  width: 100%;
  padding: 90px 0 110px;
  background: #f6faf8;
  overflow: hidden;
}

.csr-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.csr-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(45, 87, 44, 0.12);
  color: #2d572c;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.csr-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #0b1b1d;
  margin-bottom: 14px;
}

.csr-desc {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
}

.csr-grid { margin-top: 28px; }

.csr-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #dfe9e3;
  box-shadow: 0 10px 28px rgba(12, 60, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.csr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(12, 60, 64, 0.14);
}

.csr-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 81, 50, 0.12);
  color: #0f5132;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.csr-card-title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #122130;
}

.csr-card-text {
  color: #4b5563;
  font-size: 0.97rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .csr-section { padding: 72px 0 80px; }
  .csr-desc { font-size: 1.1rem; }
  .csr-card { text-align: left; }
}

/* Work steps */
.work-section h2 { font-weight: 800; color: var(--brand-teal); }
.work-steps { position: relative; }
.work-step {
  background: #ffffff;
  border: 1px solid #dfe9e3;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(12, 60, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}
.work-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(12, 60, 64, 0.14);
}
.work-icon {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f5132;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.work-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0d6efd;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}
.work-step-title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #122130;
  margin-bottom: 8px;
}
.work-step-text {
  color: #4b5563;
  font-size: 0.97rem;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .work-step { text-align: left; }
}

/* Get in touch */
.git-section {
  background: #ffffff;
  padding: 90px 0 80px;
}
.git-heading { margin-bottom: 18px; }
.git-title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  color: var(--brand-teal);
  margin-bottom: 6px;
}
.git-subtitle {
  font-size: 1.15rem;
  color: #193b3f;
  margin-bottom: 14px;
}
.git-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background-image: var(--git-bg);
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
  box-shadow: 0 18px 38px rgba(12, 60, 64, 0.12);
}
.git-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}
.git-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.git-hero-content h3 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0;
}
.git-hero-content p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.92;
}
.git-form-wrap { margin-top: 10px; }
.git-form-title {
  font-size: 1.8rem;
  color: #0d3b3f;
  font-weight: 700;
  margin-bottom: 12px;
}
.git-form-text {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.6;
}
.git-form {
  border: 1px solid #dfe9e3;
  border-radius: 14px;
}
.git-input {
  background: #f9fbfd;
  border: 1px solid #d7dee7;
  border-radius: 10px;
  font-size: 1rem;
  padding: 14px 16px;
}
.git-input:focus {
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.12);
  border-color: #0f5132;
  background: #fff;
}
.git-submit-btn {
  padding: 12px 26px;
  border-radius: 8px;
  letter-spacing: 0.03em;
}
#gitFormMsg { min-height: 20px; }
@media (max-width: 768px) {
  .git-hero { min-height: 260px; border-radius: 18px; }
}

/* Ecosystem */
.ecosystem-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 0 0 140px;
}
.ecosystem-hero {
  background: #ffffff;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
.ecosystem-hero-title {
  text-align: center;
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 800;
  color: #0c4144;
  margin: 0;
}
.ecosystem-curve {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 80px;
  display: contain;
}
.ecosystem-inner {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.ecosystem-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ecosystem-subtitle {
  font-size: 3.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.ecosystem-circles { margin-top: 28px; }
.eco-card {
  text-align: center;
  color: #f8f9fa;
  display: grid;
  gap: 10px;
}
.eco-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 6px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  margin: 0 auto 6px;
}
.eco-label {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1rem;
}
.eco-btn {
  color: #f8f9fa;
  border-color: rgba(255, 255, 255, 0.6);
  padding: 12px 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eco-btn:hover { background: rgba(255, 255, 255, 0.12); color: #f8f9fa; }

/* Partner modal */
.partner-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1100;
}
.partner-modal.show { display: flex; }
.partner-card {
  background: #e9f5ef;
  color: #fff;
  width: min(900px, 100%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  padding: 24px 26px;
  position: relative;
}
.partner-card h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: #0b1b1d;
  margin-bottom: 16px;
}
.partner-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  color: #b3261e;
  cursor: pointer;
}
.partner-form .form-label { color: #c9d6d9; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; }
.partner-form .form-control, .partner-form .form-select {
  background: #fff;
  border: 1px solid rgba(12,60,64,0.2);
  color: #0b1b1d;
}
.partner-form .form-control:focus, .partner-form .form-select:focus {
  box-shadow: 0 0 0 2px rgba(12,60,64,0.2);
  border-color: rgba(12,60,64,0.6);
}
.partner-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.partner-submit {
  background: transparent;
  color: #0b1b1d;
  border: 2px solid #0b1b1d;
  border-radius: 6px;
  padding: 12px 20px;
  width: 100%;
  font-weight: 600;
}
.partner-submit:hover { background: rgba(12,60,64,0.06); color: #0b1b1d; }
.modal-open { overflow: hidden; }

/* SplitText animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}
/* CSR Expertise cards layout */
/* Lusion-style CSR expertise */
.csr-expertise-section {
  position: relative;
  background: var(--csr-blue);
  color: #fff;
  padding: 20px 0 80px;
  overflow: hidden;
}

.csr-expertise-section .container { position: relative; z-index: 2; }

.csr-arc {
  position: absolute;
  top: -160px;
  left: -18%;
  width: 140%;
  height: 360px;
  background: radial-gradient(130% 120% at 50% 0%, transparent 52%, var(--csr-ivory) 54%, var(--csr-ivory) 62%, transparent 64%);
  opacity: 0.92;
  transform: rotate(-2deg);
  pointer-events: none;
}

.csr-arc.glow {
  filter: blur(24px);
  opacity: 0.35;
  top: -200px;
}

.csr-heading-row {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 26px;
}

.csr-kicker {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.csr-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.csr-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.csr-stage {
  position: relative;
  margin-top: 36px;
}

.csr-card-stack {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1600px;
  padding: 40px 12px 10px;
  min-height: clamp(340px, 32vw, 460px);
  z-index: 2;
}

.csr-expertise-card {
  --card-rot: 0deg;
  --card-offset: 0px;
  --card-spread: 0px;
  --float-delay: 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(200px, 20vw, 280px);
  aspect-ratio: 314 / 438;
  text-decoration: none;
  color: inherit;
  display: block;
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.28));
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

.csr-card-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.csr-expertise-card.flipped .csr-card-3d {
  transform: rotateY(180deg);
}

.csr-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 15%, rgba(60, 120, 90, 0.45), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(40, 100, 70, 0.35), transparent 30%),
    linear-gradient(135deg, #0b2f24 0%, #115c42 60%, #0a3a2b 100%);
  border: 3px solid #fff;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  backface-visibility: hidden;
}

.csr-card-face.front {
  background:
    linear-gradient(160deg, rgba(22, 90, 67, 0.45), rgba(16, 72, 54, 0.65)),
    linear-gradient(135deg, #0b2f24 0%, #1b7a56 60%, #0c3f2f 100%);
}

.csr-card-face.back {
  transform: rotateY(180deg);
  background:
    linear-gradient(160deg, rgba(22, 90, 67, 0.4), rgba(16, 72, 54, 0.6)),
    linear-gradient(135deg, #0b2f24 0%, #1b7a56 60%, #0c3f2f 100%);
}

.csr-card-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 12%, transparent 12%) 0 0/30px 30px,
    linear-gradient(35deg, rgba(255, 255, 255, 0.06) 10%, transparent 10%) 0 0/28px 28px,
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.05), transparent 22%);
  opacity: 0.8;
  pointer-events: none;
}

.csr-card-frame {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(214, 255, 227, 0.85);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.csr-card-face.back .csr-card-frame {
  justify-content: flex-start;
  gap: 14px;
  padding: 22px 20px 18px;
}

.csr-card-topline {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0.8;
}

.csr-card-emblem {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 94px;
  height: 94px;
  margin-left: -47px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--csr-blue-deep);
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.csr-card-emblem.small {
  width: 72px;
  height: 72px;
  margin-left: -36px;
  top: 22%;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.3);
}

.csr-card-emblem span { transform: translateY(-1px); font-size: 1.4rem; }

.csr-card-face.back .csr-card-emblem { top: 18%; }

.csr-card-badge {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(230,250,238,0.9));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15), 0 0 0 8px rgba(255, 255, 255, 0.35);
}

.csr-card-badge img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.csr-card-pill {
  display: inline-flex;
  align-self: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, rgba(214, 255, 227, 0.8), rgba(180, 235, 200, 0.7));
  color: #0c3f2f;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.csr-card-info {
  text-align: center;
  color: #eaf7ef;
  display: grid;
  gap: 6px;
}

.csr-card-info h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.csr-card-info ul {
  list-style: disc;
  padding-left: 1.4em;
  margin: 0 auto;
  text-align: left;
  color: rgba(234, 247, 239, 0.9);
  display: grid;
  gap: 6px;
}

.csr-card-info li {
  font-size: 0.98rem;
  line-height: 1.4;
}

.csr-card-frame.info .csr-card-back-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #eaf7ef;
  text-align: center;
}

.csr-card-frame.info .csr-card-list {
  color: #eaf7ef;
  gap: 8px;
  font-size: 1rem;
}

.csr-card-frame.info .csr-card-badge.faint { display: none; }

.csr-card-frame.info .csr-card-desc {
  margin: 0;
  color: #eaf7ef;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Clients marquee */
.client-slider-section {
  background: #f6faf8;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  display: grid;
  gap: 30px;
}

.client-track {
  display: flex;
  gap: 32px;
  align-items: center;
}

.client-track.row-1 { animation: clientScrollR 18s linear infinite; }
.client-track.row-2 { animation: clientScrollL 18s linear infinite; animation-delay: -9s; }

.client-marquee:hover .client-track { animation-play-state: paused; }

.client-logo {
  flex: 0 0 auto;
  width: 220px;
  height: 140px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 14px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.05);
}

@keyframes clientScrollL {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes clientScrollR {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.csr-expertise-section .csr-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 14px 0 0;
  color: #fff;
}

.csr-expertise-section .csr-card-list {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.csr-expertise-section .csr-card-list li { line-height: 1.45; }

@media (max-width: 1100px) {
  .csr-arc { top: -200px; height: 320px; }
  .csr-card-stack { min-height: 360px; }
  .csr-expertise-card { width: 240px; height: 310px; }
}

@media (max-width: 768px) {
  .csr-expertise-section { padding: 110px 0 120px; }
  .csr-hero-title { font-size: 2.3rem; }
  .csr-card-stack { min-height: 340px; }
  .csr-expertise-card { width: 100%; max-width: 280px; margin: 0 auto; }
  .csr-card-emblem { width: 76px; height: 76px; margin-left: -38px; top: 30%; }
}
.metrics-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.35), transparent 20%),
#ffffff;
  padding-bottom: 60px;
}
.metrics-anim-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
#metrics-bg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.55;
}
.metrics-section .container {
  position: relative;
  z-index: 1;
}
.metric-card {
  padding: 10px;
}
.metric-value {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: #153c50;
}
.metric-line {
  width: 100%;
  height: 1px;
  margin: 12px auto;
  background: rgba(21, 60, 80, 0.18);
}
.metric-label {
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b1b1d;
}
