@import url("bootstrap-responsive.css");

/* Base layout */
:root {
  --brand-teal: #2a8159;
  --brand-teal-2: #65bb96;
  --accent-light: #000000;
  --accent-pale: #000000;
  --primary-black: #000000;
  --primary-gold: #a09a27;
  --text-dark: #808080;
  --text-light: #ffffff;
  --light-gray: #f6faf8;
  --csr-blue: #000000; /* deep forest */
  --csr-blue-deep: #5a8878; /* deeper forest */
  --csr-ivory: #000000; /* pale leaf band */
  --home-section-bg: #000000;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: rgb(0, 0, 0);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 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;
  font-family: 'Poppins', sans-serif;
}

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: 26px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(2, 26, 15, 0.14);
  border: 1px solid rgba(229, 247, 239, 0.14);
  box-shadow:
    0 25px 60px rgba(2, 26, 17, 0.35),
    0 0 26px rgba(0, 166, 77, 0.22),
    0 0 60px rgba(127, 226, 177, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#what-we-do .what-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 166, 77, 0.45);
  box-shadow:
    0 35px 80px rgba(2, 26, 17, 0.45),
    0 0 36px rgba(0, 166, 77, 0.45),
    0 0 90px rgba(127, 226, 177, 0.22);
}
#what-we-do .what-card__image {
  position: relative;
  height: 100%;
  background: var(--what-bg, rgba(111, 142, 128, 0.585)) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: filter 0.3s ease;
}
#what-we-do .what-card__image::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(80px 60px at 18% 22%, rgba(255, 255, 255, 0.32), transparent 70%),
    radial-gradient(120px 80px at 80% 18%, rgba(167, 243, 208, 0.35), transparent 72%),
    radial-gradient(160px 110px at 55% 85%, rgba(16, 185, 129, 0.3), transparent 75%);
  background-size: 180% 180%;
  background-position: 0% 0%;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}
#what-we-do .what-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
  opacity: 0.9;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
#what-we-do .what-card__title {
  position: relative;
  z-index: 3;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  font-size: 1.15rem;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.01em;
}
#what-we-do .what-card__label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 10px 25px rgba(0,0,0,0.55);
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#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: none;
}
#what-we-do .what-card:hover .what-card__image::before {
  opacity: 0.95;
  animation: servicesCardSparkle 3.5s ease-in-out infinite;
}
#what-we-do .what-card:hover .what-card__image::after {
  opacity: 1;
}
#what-we-do .what-card:hover .what-card__text {
  opacity: 1;
  transform: translateY(0);
}
#what-we-do .what-card:hover .what-card__title {
  opacity: 1;
  transform: translateY(0);
}
#what-we-do .what-card:hover .what-card__label {
  opacity: 0;
  transform: translateY(6px);
}

@keyframes servicesCardSparkle {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

#what-we-do .what-card__text {
  display: none;
}

#what-we-do {
  --svc-deep: rgb(0, 0, 0);
  --svc-main: rgb(0, 0, 0);
  --svc-accent: #00a64d;
  --svc-accent-2: #1fbf6a;
  --svc-soft: #7fe2b1;
}

.services-immersive {
  padding: clamp(28px, 4vw, 60px) 0 clamp(50px, 6vw, 90px);
  background: rgba(6, 23, 16, 0.14);
  color: #000000;
}

.services-hero-shell {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  background: var(--svc-deep);
}

.services-hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(0, 166, 25, 0.18), transparent 60%);
  filter: blur(40px);
  opacity: 0;
  display: none;
  animation: servicesGlow 8s ease-in-out infinite;
  z-index: 1;
}

.services-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(229, 247, 239, 0.06), transparent 45%),
    repeating-radial-gradient(circle at center, rgba(0, 166, 77, 0.08), rgba(0, 166, 77, 0.08) 1px, transparent 1px, transparent 16px);
  opacity: 0;
  display: none;
  transform: scale(1.05);
  background-size: 140% 140%;
  animation: servicesGridMove 24s linear infinite;
  z-index: 1;
}

.services-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  display: none;
  background-image:
    radial-gradient(circle, rgba(229, 247, 239, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(0, 166, 77, 0.2) 0 2.5px, transparent 4px),
    radial-gradient(circle, rgba(31, 191, 106, 0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle, rgba(11, 59, 38, 0.22) 0 2px, transparent 3px);
  background-size: 240px 240px, 320px 320px, 280px 280px, 360px 360px;
  background-position: 0 0, 60px -40px, -30px 30px, 100px 80px;
  mix-blend-mode: screen;
  filter: blur(0.2px);
  animation: servicesParticles 26s linear infinite;
  z-index: 2;
}

.services-hero-noise {
  position: absolute;
  inset: 0;
  display: none;
}

.services-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  padding: 40px 24px 24px;
}

.home #what-we-do .services-hero-heading {
  font-size: clamp(7rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1.09;
  color: #d8fff1;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 166, 77, 0.35);
  margin-bottom: 18px;
  background: linear-gradient(135deg, #d8fff1 0%, var(--svc-soft) 45%, var(--svc-accent-2) 80%, var(--svc-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home #what-we-do .services-hero-heading.split-text span {
  background: linear-gradient(135deg, #d8fff1 0%, var(--svc-soft) 45%, var(--svc-accent-2) 80%, var(--svc-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 166, 77, 0.35);
}

.services-hero-break {
  display: block;
}

.services-hero-subtext {
  font-size: 1.15rem;
  color: rgba(233, 249, 244, 0.78);
  margin: 20px auto 32px;
  max-width: 640px;
}

.services-hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: -20px;
}

.services-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 166, 17, 0.45);
  background: linear-gradient(135deg, rgba(0, 166, 77, 0.95), rgba(31, 191, 106, 0.9));
  color: #f9fffb;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 166, 33, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services-cta-btn span {
  line-height: 1;
  white-space: nowrap;
}

.services-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 166, 77, 0.45);
  background: linear-gradient(135deg, rgba(0, 166, 77, 1), rgba(31, 191, 106, 0.95));
}

.services-cta-btn:active {
  transform: translateY(0);
}

.services-cta-icon {
  width: 30px;
  height: 18px;
}

.services-cards {
  padding: 16px 0 10px;
  margin-top: 6px;
  background: transparent;
}

.services-cards h2 { color: #e8f8f3; }
.services-cards p.text-muted { color: rgba(232, 248, 243, 0.78) !important; }

.services-cta-wrap {
  width: 100%;
  max-width: none;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 40px;
}

@keyframes servicesGridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 160px 220px, -120px 180px; }
}

@keyframes servicesParticles {
  0% {
    transform: translateY(0);
    background-position: 0 0, 60px -40px, -30px 30px, 100px 80px;
  }
  100% {
    transform: translateY(-18px);
    background-position: 140px 220px, -100px 140px, 120px -90px, -160px 60px;
  }
}

.services-cta-wrap .services-cards {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-wrap .services-cards .row {
  justify-content: center;
}

@keyframes servicesGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* How We Work */
.hw-section {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
  font-family: 'Poppins', sans-serif;
  isolation: isolate;
}

.hw-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hw-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #000000 20%, #000000 35%, #000000 50%, #0b3120 65%, #052b16 85%, #022b15 100%);
  background-size: 400% 400%;
  animation: hwGradientMove 35s linear infinite;
}

.hw-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hw-blob-1 {
  top: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(0, 166, 77, 0.55), rgba(0, 166, 77, 0) 70%);
  animation: hwBlobOne 20s ease-in-out infinite;
}

.hw-blob-2 {
  bottom: -10rem;
  right: -10rem;
  width: 31rem;
  height: 31rem;
  background: radial-gradient(circle, rgba(31, 191, 106, 0.5), rgba(31, 191, 106, 0) 70%);
  animation: hwBlobTwo 20s ease-in-out infinite;
}

.hw-blob-3 {
  top: 33%;
  left: 25%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(11, 59, 38, 0.7), rgba(11, 59, 38, 0) 70%);
  animation: hwBlobThree 18s ease-in-out infinite;
}

.hw-blob-4 {
  bottom: 25%;
  right: 25%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(127, 226, 177, 0.45), rgba(127, 226, 177, 0) 70%);
  animation: hwBlobFour 16s ease-in-out infinite;
}

.hw-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 77, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 77, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.1;
}

.hw-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(11, 59, 38, 0.5) 100%);
}

.hw-particles,
.hw-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hw-particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(184, 243, 213, 0.08);
  animation: hwParticleFloat 20s ease-in-out infinite;
}

.hw-leaf {
  position: absolute;
  color: rgba(127, 226, 177, 0.1);
  animation: hwLeafFloat 12s ease-in-out infinite;
}

.hw-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.hw-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hw-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hw-heading {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: #ecfdf5;
  letter-spacing: -0.02em;
  margin: 0;
}

.hw-sparkle {
  width: 1.6rem;
  height: 1.6rem;
  color: #7fe2b1;
  animation: hwSparkleRotate 4s ease-in-out infinite;
}

.hw-divider {
  width: 6rem;
  height: 0.35rem;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f7a4a, #00a64d, #7fe2b1, #00a64d, #0f7a4a);
  background-size: 200% 100%;
  animation: hwDividerShift 3s linear infinite;
  position: relative;
}

.hw-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f7a4a, #00a64d, #7fe2b1);
  filter: blur(0.75rem);
  animation: hwDividerGlow 2s ease-in-out infinite;
}

.hw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

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

.hw-steps-frame {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.hw-steps-frame:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hw-corner {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  animation: hwCornerGlow 3s ease-in-out infinite;
}

.hw-corner-tl { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; border-top-left-radius: 1.5rem; }
.hw-corner-tr { top: 0; right: 0; border-top: 2px solid; border-right: 2px solid; border-top-right-radius: 1.5rem; animation-delay: 0.5s; }
.hw-corner-bl { bottom: 0; left: 0; border-bottom: 2px solid; border-left: 2px solid; border-bottom-left-radius: 1.5rem; animation-delay: 1s; }
.hw-corner-br { bottom: 0; right: 0; border-bottom: 2px solid; border-right: 2px solid; border-bottom-right-radius: 1.5rem; animation-delay: 1.5s; }

.hw-frame-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 16rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.3), transparent 70%);
  filter: blur(2rem);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: hwFrameGlow 4s ease-in-out infinite;
}

.hw-steps-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hw-step {
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  color: inherit;
}

.hw-step-glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(52, 211, 153, 0.3));
  filter: blur(1rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hw-step:hover .hw-step-glow,
.hw-step.is-active .hw-step-glow {
  opacity: 0.6;
}

.hw-step.is-active .hw-step-glow {
  opacity: 0.85;
}

.hw-step-content {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.87);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hw-step:hover .hw-step-content {
  transform: translateY(-4px) scale(1.01);
  background-color: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.3);
}

.hw-step.is-active .hw-step-content {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hw-step-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7, #a7f3d0, #6ee7b7, #34d399, #10b981);
  background-size: 200% 100%;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hw-step.is-active .hw-step-bar {
  transform: scaleX(1);
  opacity: 1;
  animation: hwBarShift 3s linear infinite;
}

.hw-step-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(16, 185, 129, 0.15) 50%, transparent 75%);
  background-size: 200% 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hw-step.is-active .hw-step-shimmer {
  opacity: 1;
  animation: hwShimmer 2s linear infinite;
}

.hw-step-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.hw-step-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hw-step.is-active .hw-step-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hw-step:hover .hw-step-icon {
  transform: scale(1.12) rotate(-10deg);
}

.hw-step-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.5), transparent 65%);
  opacity: 0;
  animation: hwIconGlow 2.5s ease-in-out infinite;
}

.hw-step.is-active .hw-step-icon-glow {
  opacity: 0.7;
}

.hw-step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #047857;
  position: relative;
  z-index: 1;
}

.hw-step.is-active .hw-step-icon svg {
  color: #ffffff;
}

.hw-step-text {
  flex: 1;
  min-width: 0;
}

.hw-step-title {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
  transition: color 0.3s ease;
}

.hw-step.is-active .hw-step-title {
  color: #ffffff;
}

.hw-step-desc {
  display: block;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.hw-step.is-active .hw-step-desc {
  color: #ffffff;
}

.hw-step-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(209, 250, 229, 0.6);
  color: #047857;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.hw-step:hover .hw-step-number {
  transform: scale(1.15);
}

.hw-step.is-active .hw-step-number {
  background-color: #10b981;
  color: #ffffff;
  transform: scale(1);
}

.hw-step-number-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.4);
  opacity: 0;
  animation: hwNumberPulse 1.5s ease-out infinite;
}

.hw-step.is-active .hw-step-number-pulse {
  opacity: 1;
}

.hw-step-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
  opacity: 0;
}

.hw-step.is-active .hw-step-bottom {
  opacity: 1;
  animation: hwBottomGlow 2.5s ease-in-out infinite;
}

.hw-image-area {
  position: relative;
  height: 100%;
}

.hw-image-wrapper {
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

.hw-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  border-radius: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(4px);
  border: 3px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hw-image-frame:hover {
  border-color: rgba(52, 211, 153, 0.7);
  box-shadow: 0 24px 64px rgba(16, 185, 129, 0.35), 0 0 80px rgba(52, 211, 153, 0.25);
  transform: scale(1.02);
}

.hw-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.15);
  filter: blur(12px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.7s ease;
}

.hw-image.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hw-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 78, 59, 0.05) 0%, rgba(6, 78, 59, 0.2) 100%);
  pointer-events: none;
}

.hw-image-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 50%, rgba(1, 29, 26, 0.3) 100%);
  pointer-events: none;
}

.hw-corner-sparkle {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  color: #86efac;
  animation: hwSparkleFloat 3s ease-in-out infinite;
}

.hw-sparkle-tr {
  top: 1rem;
  right: 1rem;
}

.hw-sparkle-bl {
  bottom: 1rem;
  left: 1rem;
  animation-delay: 1.5s;
}

.hw-step-badge {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.98), rgba(52, 211, 153, 0.98));
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5), 0 0 80px rgba(52, 211, 153, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hw-step-badge:hover {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.6), 0 0 100px rgba(52, 211, 153, 0.4);
}

.hw-step-badge p {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 1;
}

.hw-badge-pulse {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid rgba(52, 211, 153, 0.5);
  animation: hwBadgePulse 2s ease-out infinite;
}

.hw-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.hw-dot {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(134, 239, 172, 0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 4px rgba(16, 185, 129, 0.3);
}

.hw-dot:hover {
  transform: scale(1.7);
  background-color: #a7f3d0;
}

.hw-dot.is-active {
  background-color: #d1fae5;
  transform: scale(1.5);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.8);
}

.hw-dot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(209, 250, 229, 0.6);
  opacity: 0;
  animation: hwDotPulse 1.5s ease-out infinite;
}

.hw-dot.is-active .hw-dot-pulse {
  opacity: 1;
}

.hw-ripple {
  position: absolute;
  border: 2px solid rgba(52, 211, 153, 0.7);
  border-radius: 50%;
  pointer-events: none;
  animation: hwRippleExpand 0.9s ease-out forwards;
  transform: translate(-50%, -50%);
}

@keyframes hwGradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes hwBlobOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, -60px) scale(1.4); }
}

@keyframes hwBlobTwo {
  0%, 100% { transform: translate(0, 0) scale(1.4); }
  50% { transform: translate(-100px, 60px) scale(1); }
}

@keyframes hwBlobThree {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(50px, 0) scale(1.5); opacity: 0.5; }
}

@keyframes hwBlobFour {
  0%, 100% { transform: translate(0, 0) scale(1.3); opacity: 0.2; }
  50% { transform: translate(0, -40px) scale(1); opacity: 0.4; }
}

@keyframes hwParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.08; }
  50% { transform: translateY(-25px) scale(1.3); opacity: 0.25; }
}

@keyframes hwLeafFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.03; }
  50% { transform: translate(15px, -40px) rotate(360deg); opacity: 0.12; }
}

@keyframes hwSparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(20deg) scale(1.3); }
  75% { transform: rotate(-20deg) scale(1.3); }
}

@keyframes hwDividerShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

@keyframes hwDividerGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes hwCornerGlow {
  0%, 100% { border-color: rgba(52, 211, 153, 0.6); }
  50% { border-color: rgba(110, 231, 183, 0.8); }
}

@keyframes hwFrameGlow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes hwBarShift {
  from { background-position: 0% 0%; }
  to { background-position: 100% 0%; }
}

@keyframes hwShimmer {
  from { background-position: 200% 0%; }
  to { background-position: -200% 0%; }
}

@keyframes hwIconGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes hwNumberPulse {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.8); opacity: 0; }
}

@keyframes hwBottomGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes hwSparkleFloat {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

@keyframes hwBadgePulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes hwDotPulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(3); opacity: 0; }
}

@keyframes hwRippleExpand {
  from { width: 0; height: 0; opacity: 1; }
  to { width: 300px; height: 300px; opacity: 0; }
}

@media (max-width: 1023px) {
  .hw-heading { font-size: 2.2rem; }
  .hw-image-frame { min-height: 420px; }
  .hw-steps-frame { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
  .hw-image-frame { min-height: 360px; }
  .hw-step-inner { flex-direction: column; align-items: flex-start; }
  .hw-step-number { align-self: flex-start; }
}

@media (max-width: 576px) {
  .hw-heading { font-size: 2rem; }
  .hw-image-frame { min-height: 320px; }
  .hw-step-badge { position: static; transform: none; margin-top: 1.5rem; }
}

.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: 'Poppins', 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: 'Poppins', 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 {
  --git-dark: #0b3b26;
  --git-deep: #051a12;
  --git-accent: #00a64d;
  --git-accent-2: #1fbf6a;
  --git-soft: #7fe2b1;
  --git-text: #e5f7ef;
  position: relative;
  background: var(--git-dark);
  color: var(--git-text);
  padding: clamp(90px, 10vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}
.git-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.git-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #000000 20%, #000000 35%, #000000 50%, #0b3120 65%, #052b16 85%, #022b15 100%);
  background-size: 400% 400%;
  animation: hwGradientMove 35s linear infinite;
}
.git-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}
.git-blob-1 {
  top: -8rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(0, 166, 77, 0.55), rgba(0, 166, 77, 0) 70%);
  animation: gitBlobOne 18s ease-in-out infinite;
}
.git-blob-2 {
  bottom: -10rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(31, 191, 106, 0.45), rgba(31, 191, 106, 0) 70%);
  animation: gitBlobTwo 20s ease-in-out infinite;
}
.git-blob-3 {
  top: 30%;
  right: 18%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(11, 59, 38, 0.75), rgba(11, 59, 38, 0) 70%);
  animation: gitBlobThree 16s ease-in-out infinite;
}
.git-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 166, 77, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 77, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.12;
}
.git-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(4, 24, 16, 0.6) 100%);
}
.git-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.git-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}
.git-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: rgba(229, 247, 239, 0.7);
  margin-bottom: 12px;
}
.git-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin: 0 0 8px;
}
.git-subtitle {
  font-size: 1.1rem;
  color: rgba(229, 247, 239, 0.75);
  margin: 0;
}
.git-header-line {
  display: block;
  width: 72px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--git-soft), var(--git-accent), var(--git-soft), transparent);
  animation: gitLinePulse 3.5s ease-in-out infinite;
}
.git-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.git-left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}
.git-hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--git-bg) center/cover no-repeat;
  border: 1px solid rgba(127, 226, 177, 0.35);
  box-shadow: 0 22px 50px rgba(2, 26, 17, 0.35);
  animation: gitHeroFloat 7s ease-in-out infinite;
}
.git-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 28, 19, 0.15) 0%, rgba(3, 28, 19, 0.65) 60%, rgba(3, 28, 19, 0.85) 100%);
  z-index: 1;
}
.git-hero-overlay {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(0, 166, 77, 0.35), transparent 60%);
  opacity: 0.7;
  animation: gitHeroGlow 10s ease-in-out infinite;
  z-index: 1;
}
.git-hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.15) 50%, transparent 80%);
  transform: translateX(-60%);
  animation: gitHeroShine 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.git-hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.git-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(229, 247, 239, 0.7);
}
.git-hero-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
}
.git-hero-copy {
  margin: 0;
  font-size: 1rem;
  color: rgba(229, 247, 239, 0.85);
  max-width: 420px;
}
.git-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.git-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--git-accent), var(--git-accent-2));
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 166, 77, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.git-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 166, 77, 0.6);
}
.git-hero-chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(229, 247, 239, 0.9);
  border: 1px solid rgba(127, 226, 177, 0.45);
  background: rgba(5, 26, 18, 0.45);
  backdrop-filter: blur(8px);
}
.git-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.git-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(127, 226, 177, 0.25);
  box-shadow: 0 12px 28px rgba(2, 26, 17, 0.25);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: gitCardFloat 6s ease-in-out infinite;
}
.git-contact-card:nth-child(2) { animation-delay: 1.2s; }
.git-contact-card:nth-child(3) { animation-delay: 2.4s; }
.git-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(2, 26, 17, 0.35);
}
.git-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--git-accent), var(--git-accent-2));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 166, 77, 0.35);
  flex-shrink: 0;
}
.git-contact-card h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: var(--git-text);
}
.git-contact-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(229, 247, 239, 0.75);
}
.git-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(229, 247, 239, 0.8);
}
.git-signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--git-accent);
  box-shadow: 0 0 0 6px rgba(0, 166, 77, 0.2);
  animation: gitPulse 1.6s ease-in-out infinite;
}
.git-right {
  position: relative;
}
.git-form-shell {
  background: rgba(5, 26, 18, 0.7);
  border-radius: 24px;
  border: 1px solid rgba(127, 226, 177, 0.35);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 26px 60px rgba(2, 26, 17, 0.45);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.git-form-shell::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(0, 166, 77, 0.22), transparent 60%);
  opacity: 0.6;
  animation: gitFormGlow 8s ease-in-out infinite;
  pointer-events: none;
}
.git-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.git-form-title {
  font-size: 1.7rem;
  color: var(--git-text);
  font-weight: 700;
  margin-bottom: 10px;
}
.git-form-text {
  font-size: 1.05rem;
  color: rgba(229, 247, 239, 0.75);
  line-height: 1.6;
}
.git-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.git-input {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 61, 45, 0.25);
  border-radius: 10px;
  font-size: 1rem;
  padding: 14px 16px;
}
.git-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 166, 77, 0.2);
  border-color: #0f7a4a;
  background: #fff;
}
.git-form-actions {
  text-align: right;
}
.git-submit-btn {
  padding: 12px 32px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--git-accent), var(--git-accent-2));
  border: none;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 166, 77, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.git-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 166, 77, 0.45);
}
#gitFormMsg { min-height: 20px; }

@media (max-width: 1024px) {
  .git-grid-layout { grid-template-columns: 1fr; }
  .git-hero-content { align-items: center; text-align: center; }
  .git-hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .git-hero { min-height: 240px; border-radius: 20px; }
  .git-contact-grid { grid-template-columns: 1fr; }
  .git-form-shell { border-radius: 20px; }
}

@keyframes gitGradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gitBlobOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -50px) scale(1.3); }
}

@keyframes gitBlobTwo {
  0%, 100% { transform: translate(0, 0) scale(1.2); }
  50% { transform: translate(-90px, 60px) scale(1); }
}

@keyframes gitBlobThree {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate(-40px, 20px) scale(1.4); opacity: 0.55; }
}

@keyframes gitHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gitHeroGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes gitHeroShine {
  0% { transform: translateX(-60%); opacity: 0; }
  30% { opacity: 0.5; }
  60% { opacity: 0.25; }
  100% { transform: translateX(60%); opacity: 0; }
}

@keyframes gitCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes gitPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0, 166, 77, 0.15); }
  50% { box-shadow: 0 0 0 12px rgba(0, 166, 77, 0.3); }
}

@keyframes gitLinePulse {
  0%, 100% { transform: scaleX(0.8); opacity: 0.6; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes gitFormGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Ecosystem wheel */
.wheel-ecosystem {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0;
  background: radial-gradient(circle at 20% 20%, rgba(12, 68, 27, 0.12), transparent 35%), #f6f9f74e;
  color: #0b1f0f;
}
.ecosystem-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ecosystem-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.ecosystem-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 31, 27, 0.55), rgba(8, 31, 27, 0.08));
  backdrop-filter: blur(2px);
}
.ecosystem-fluid {
  width: 100%;
  max-width: none;
  padding-left: clamp(12px, 2vw, 28px);
  padding-right: clamp(12px, 2vw, 28px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.wheel-ecosystem .eco-wheel-wrapper {
  margin-left: clamp(-46px, -6vw, -18px);
}
.ecosystem-grid-bg {
  position: absolute;
  inset: -60px;
  background:
    linear-gradient(90deg, rgba(12, 68, 24, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 68, 21, 0.07) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.eco-kicker {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.eco-heading {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.eco-copy {
  color: #f1f5f4;
  max-width: 560px;
  margin-bottom: 24px;
  font-weight: 400;
}
.eco-detail-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 65, 68, 0.12);
  border-radius: 18px;
  padding: 20px 20px 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.07);
}
.eco-detail-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.eco-detail-index {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #0c4144;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 30px rgba(12, 65, 68, 0.22);
}
.eco-detail-meta .eco-subtitle {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c9d2ce;
  font-size: 0.82rem;
  font-weight: 600;
}
.eco-detail-title {
  margin: 2px 0 4px;
  font-weight: 800;
  color: #0b2520;
}
.eco-detail-desc {
  color: #3f5249;
  margin-bottom: 12px;
  line-height: 1.6;
}
.eco-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.eco-detail-tags span {
  background: #f0f5f3;
  color: #234338;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(12, 65, 68, 0.1);
  font-size: 0.88rem;
}
.eco-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #156b402f 0%, #e8f7ef23 100%); color: #0f172a;
}
.eco-btn-primary {
  padding: 10px 16px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #0c4144;
  background: #0c4144;
  color: #fff;
}
.eco-btn-secondary {
  padding: 10px 16px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}
.eco-hint {
  font-size: 0.9rem;
  color: #4b6156;
  letter-spacing: 0.02em;
}
.eco-wheel-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 640px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(15, 81, 50, 0.12), rgba(12, 65, 68, 0.04) 45%, transparent 60%);
  border: 1px solid rgba(12, 65, 68, 0.12);
  border-radius: 30px;
  backdrop-filter: none;
}
.eco-wheel {
  position: absolute;
  inset: 0;
}
.eco-wheel__halo {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(12, 65, 68, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(12, 65, 68, 0.1), transparent 45%);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.06));
}
.eco-wheel__center {
  position: absolute;
  inset: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}
.eco-wheel__segments {
  position: absolute;
  inset: 0;
  --wheel-rotation: 0deg;
  --wheel-radius: clamp(180px, 28vmin, 230px);
}
.eco-segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(12, 65, 68, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  --seg-scale: 1;
  transform: rotate(calc(var(--angle) + var(--wheel-rotation))) translate(var(--wheel-radius)) rotate(calc(-1 * (var(--angle) + var(--wheel-rotation)))) scale(var(--seg-scale));
  transition: transform 1.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.eco-segment::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(12, 65, 68, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.eco-segment .eco-segment-icon {
  display: none;
}
.eco-segment .eco-segment-label {
  display: none;
}
.eco-segment.is-active {
  background: #0c4144;
  color: #fff;
  border-color: #0c4144;
  box-shadow: 0 26px 60px rgba(12, 65, 68, 0.28);
  --seg-scale: 1.07;
}
.eco-segment.is-active .eco-segment-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.eco-segment.is-active .eco-segment-label { color: #fff; }
.eco-segment.is-active::after { opacity: 1; }
.eco-wheel__dots {
  position: absolute;
  inset: auto 0 12px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
  display: none;
}
.eco-wheel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(12, 65, 68, 0.25);
  background: #fff;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.eco-wheel-dot.is-active {
  background: #0c4144;
  border-color: #0c4144;
  transform: scale(1.15);
}
.eco-wheel__badge {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #1f342c;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
}
.eco-wheel__badge-line {
  display: block;
  width: 46px;
  height: 1px;
  background: rgba(12, 65, 68, 0.35);
}

@media (max-width: 991px) {
  .eco-wheel-wrapper { max-width: 520px; margin-left: -10px; }
  .eco-segment {
    width: 114px;
    height: 114px;
    --wheel-radius: clamp(150px, 30vmin, 190px);
  }
}
@media (max-width: 768px) {
  .wheel-ecosystem { padding: 60px 0; }
  .eco-wheel-wrapper { max-width: 420px; }
  .eco-segment {
    width: 98px;
    height: 98px;
    padding: 10px;
    --wheel-radius: clamp(120px, 34vmin, 150px);
  }
  .eco-segment .eco-segment-icon { width: 38px; height: 38px; }
  .eco-detail-card { margin-top: 18px; }
}
@media (max-width: 576px) {
  .eco-wheel-wrapper { max-width: 360px; }
  .eco-wheel__badge {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .eco-detail-top { flex-direction: row; align-items: center; }
  .eco-detail-index { width: 48px; height: 48px; }
  .eco-detail-tags span { font-size: 0.82rem; }
}
.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: 'Poppins', 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(--home-section-bg);
  color: #fff;
  padding: 20px 0 80px;
  overflow: hidden;
}

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

.csr-arc {
  display: none;
}

.csr-arc.glow {
  display: none;
}

.csr-heading-row {
  text-align: center;
  max-width: 1100px;
  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(4.2rem, 7vw, 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: 20px;
  background:
    linear-gradient(145deg, #0b2c22 0%, #0f4e3a 45%, #0a382a 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backface-visibility: hidden;
}

.csr-card-face.front {
  background:
    radial-gradient(140% 120% at 26% 18%, rgba(110, 234, 186, 0.18), transparent 46%),
    radial-gradient(120% 110% at 78% 24%, rgba(84, 200, 164, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(18, 84, 62, 0.9), rgba(10, 49, 36, 0.94));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 -18px 48px rgba(0, 0, 0, 0.22);
}

.csr-card-face.front::after {
  content: "";
  position: absolute;
  inset: 10% 12% auto 12%;
  height: 15%;
  background: radial-gradient(90% 90% at 50% 20%, rgba(255, 255, 255, 0.42), transparent 70%);
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}

.csr-card-face.front::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(140% 120% at 50% 60%, rgba(255, 255, 255, 0.08), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}

.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.06) 12%, transparent 12%) 0 0/30px 30px,
    linear-gradient(35deg, rgba(255, 255, 255, 0.05) 10%, transparent 10%) 0 0/28px 28px,
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.06), transparent 22%);
  opacity: 0.65;
  mix-blend-mode: screen;
  pointer-events: none;
}

.oocsr-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%);
  overflow: hidden;
}

.csr-card-face.front .csr-card-frame {
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 20px;
  border-color: rgba(214, 255, 227, 0.65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(4px);
}

.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: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  opacity: 0.9;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22), 0 2px 12px rgba(255, 255, 255, 0.16);
}

.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: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  padding: 0;
}

.csr-card-badge img {
  width: clamp(110px, 40vw, 140px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.csr-card-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: #f7fff8;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 12px 24px rgba(0, 0, 0, 0.22);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  width: 100%;
  max-width: none;
  white-space: nowrap;
  margin: 4px auto 0;
}

.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: #ffffff;
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: justify;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  word-break: break-word;
  max-height: none;
  overflow: visible;
  display: block;
}

/* Clients marquee */
.client-slider-section {
  background: var(--home-section-bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 140px !important;
  min-height: 560px;
}

.client-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #000000 20%, #000000 35%, #000000 50%, #0b3120 65%, #052b16 85%, #022b15 100%);
  background-size: 400% 400%;
  animation: hwGradientMove 35s linear infinite;
  z-index: 0;
}

.client-slider-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.client-slider-section h2 {
  color: #e5f7ef;
}

.client-slider-section .text-muted {
  color: rgba(229, 247, 239, 0.7) !important;
}

.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 30s linear infinite; }
.client-track.row-2 { animation: clientScrollL 30s linear infinite; animation-delay: -15s; }

.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: 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%; }
}
@media (max-width: 640px) {
  .csr-expertise-section {
    padding: 80px 0 90px;
  }
  .csr-heading-row {
    padding: 0 10px;
  }
  .csr-hero-title {
    font-size: 2.5rem;
    line-height: 1.25;
    text-wrap: balance;
  }
  .csr-hero-sub {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 6px;
  }
  .csr-card-stack {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 14px 4px;
    min-height: auto;
    justify-content: flex-start;
    align-items: stretch;
    scroll-snap-type: x mandatory;
  }
  .csr-card-stack::-webkit-scrollbar { height: 8px; }
  .csr-card-stack::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.35);
    border-radius: 10px;
  }
  .csr-expertise-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 78vw;
    max-width: 240px;
    aspect-ratio: 3 / 4.3;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .csr-card-badge {
    width: auto;
    height: auto;
    box-shadow: none;
  }
  .csr-card-badge img {
    width: clamp(90px, 55vw, 120px);
    height: auto;
  }
  .csr-card-pill {
    font-size: 0.9rem;
    padding: 7px 14px;
  }
  .csr-card-frame {
    gap: 12px;
    padding: 14px;
  }
  .csr-card-frame.info .csr-card-desc {
    font-size: 0.88rem;
    line-height: 1.32;
    max-height: none;
    overflow: visible;
    text-align: justify;
  }
}
.metrics-section {
  position: relative;
  overflow: hidden;
  background: #000000;
  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.25;
  mix-blend-mode: screen;
}
.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: #e5f7ef;
}
.metric-line {
  width: 100%;
  height: 1px;
  margin: 12px auto;
  background: rgba(229, 247, 239, 0.25);
}
.metric-label {
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(229, 247, 239, 0.8);
}

.section-headline {
  color: #22d837;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
  hyphens: none;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

.section-headline.split-text span {
  color: inherit;
  text-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
}

.home #what-we-do .services-hero-heading.section-headline {
  font-size: clamp(5rem, 9vw, 7.4rem);
  color: #ffffff;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
}

.client-slider-section .section-headline,
.hw-heading.section-headline,
.git-title.section-headline {
  font-size: clamp(3.8rem, 7.5vw, 6.2rem);
}

.client-slider-section .section-headline {
  color: #22d837;
}

@media (max-width: 768px) {
  .section-headline {
    font-size: clamp(2.1rem, 8.5vw, 3.4rem);
  }

  .client-slider-section .section-headline,
  .hw-heading.section-headline,
  .git-title.section-headline {
    font-size: clamp(2.8rem, 9.5vw, 4.4rem);
  }
}

.home .headline,
.home .section-headline,
.home .section-headline.split-text span,
.home #what-we-do .services-hero-heading,
.home #what-we-do .services-hero-heading.split-text span {
  color: #ffffff;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
}

/* -------------------------------
   GreenAnanda Ecosystem (new)
----------------------------------*/
.eco-forest-section {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 120px) 0;
  color: #e7f5ee;
  background: linear-gradient(135deg, #052e16 0%, #064e3b 50%, #134e4a 100%);
  isolation: isolate;
}
.eco-nature-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1567790484933-44b83527e991?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.eco-nature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,46,22,0.9), rgba(6,78,59,0.95), rgba(19,78,74,0.9));
}
.eco-animated-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.eco-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2;
  animation: eco-float 20s ease-in-out infinite;
}
.eco-orb.orb-1 { width: 500px; height: 500px; top: 10%; left: 10%; background: radial-gradient(circle, rgba(16,185,129,0.4) 0%, transparent 70%); }
.eco-orb.orb-2 { width: 600px; height: 600px; bottom: 10%; right: 10%; background: radial-gradient(circle, rgba(20,184,166,0.3) 0%, transparent 70%); animation-delay: 2s; animation-duration: 25s; }
.eco-orb.orb-3 { width: 400px; height: 400px; top: 50%; left: 50%; background: radial-gradient(circle, rgba(134,239,172,0.4) 0%, transparent 70%); animation-delay: 5s; animation-duration: 18s; }
@keyframes eco-float { 0%,100% { transform: translate(0,0);} 25% { transform: translate(100px,-100px);} 50% { transform: translate(-50px,50px);} 75% { transform: translate(80px,-80px);} }
.eco-container { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.eco-header { margin-bottom: clamp(48px, 6vw, 72px); animation: eco-fade-down 0.8s ease-out both; }
.eco-header-icons { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.eco-header-icon { animation: eco-bounce 3s ease-in-out infinite; display: inline-flex; }
@keyframes eco-bounce { 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-8px) rotate(4deg);} }
.eco-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin: 0 0 12px;
  background: linear-gradient(to right, #a7f3d0, #99f6e4, #d9f99d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: eco-title-glow 3s ease-in-out infinite;
}
@keyframes eco-title-glow { 0%,100% { filter: brightness(1);} 50% { filter: brightness(1.2);} }
.eco-subtitle { max-width: 720px; margin: 0 auto; font-size: 1.1rem; color: #c7f4df; }
.eco-network { display: flex; gap: clamp(24px, 4vw, 40px); align-items: center; justify-content: center; flex-wrap: wrap; }
.eco-network-graphic { position: relative; width: min(900px, 100%); aspect-ratio: 3 / 2; }
.eco-center-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 10; }
.eco-partner-btn { position: relative; width: clamp(12rem, 20vw, 16rem); aspect-ratio: 1; border-radius: 50%; cursor: pointer; border: none; background: transparent; transition: transform 0.3s ease; }
.eco-partner-btn:hover { transform: scale(1.05); }
.eco-rotating-ring { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, #34d399, #14b8a6, #16a34a); animation: eco-rotate 8s linear infinite; }
@keyframes eco-rotate { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
.eco-partner-core { position: absolute; inset: 0.7rem; border-radius: 50%; background: linear-gradient(135deg, rgba(6,78,59,0.95), rgba(6,95,70,0.95), rgba(19,78,74,0.95)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; text-align: center; padding: 1rem; }
.eco-icon-circle { width: 4.4rem; height: 4.4rem; border-radius: 50%; background: linear-gradient(135deg, #34d399, #14b8a6); display: grid; place-items: center; box-shadow: 0 16px 40px rgba(16,185,129,0.45); }
.eco-icon-circle svg { width: 2.5rem; height: 2.5rem; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.eco-btn-text { color: #dff7ec; }
.eco-btn-title { font-size: 1.2rem; font-weight: 800; letter-spacing: 0.01em; }
.eco-btn-sub { font-size: 0.9rem; color: rgba(199, 244, 223, 0.8); }
.eco-pulse-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(16,185,129,0.2); animation: eco-pulse 4s ease-out infinite; pointer-events: none; }
.eco-pulse-ring:nth-child(2) { animation-delay: 1.3s; }
.eco-pulse-ring:nth-child(3) { animation-delay: 2.6s; }
@keyframes eco-pulse { 0% { transform: scale(1); opacity: 0.6;} 100% { transform: scale(2.4); opacity: 0;} }
.eco-connections { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.eco-roles { position: absolute; inset: 0; }
.eco-role {
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: eco-node-appear 0.5s ease-out both;
  transform: translate(-50%, -50%);
}
.eco-role:hover { transform: translate(-50%, -50%) scale(1.02); }
@keyframes eco-node-appear { from { opacity: 0; transform: scale(0);} to { opacity: 1; transform: scale(1);} }
.eco-hex { position: relative; width: clamp(160px, 20vw, 220px); aspect-ratio: 1; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); overflow: hidden; }
.eco-hex img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.eco-role:hover .eco-hex img { transform: scale(1.08); }
.eco-hex::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.28); }
.eco-hex-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; text-align: center; padding: 1rem; z-index: 2; }
.eco-role-icon { width: 3.2rem; height: 3.2rem; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.6s ease; }
.eco-role:hover .eco-role-icon { transform: rotate(360deg); }
.eco-role-icon svg { width: 1.8rem; height: 1.8rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.eco-role-title { font-size: 1.1rem; font-weight: 800; color: #fff; }
.eco-info {
  width: min(360px, 90vw);
  background: linear-gradient(135deg, rgba(6,78,59,0.4), rgba(19,78,74,0.4));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: eco-slide-right 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
@keyframes eco-slide-right { from { opacity:0; transform: translateX(40px);} to { opacity:1; transform: translateX(0);} }
.eco-info-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.eco-info-icon { width: 3.2rem; height: 3.2rem; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.eco-info-title { font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0; }
.eco-info-desc { color: #c7f4df; line-height: 1.6; margin: 0 0 0.8rem; }
.eco-info-list { list-style: none; padding: 0; margin: 0; }
.eco-info-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; color: #fff; }
.eco-info-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; }
.eco-info-glow { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,185,129,0.12), transparent); pointer-events: none; }
.eco-bottom-cta { margin-top: clamp(40px, 5vw, 60px); text-align: center; color: #c7f4df; font-size: 1.05rem; animation: eco-fade-up 0.8s ease-out both; }
@keyframes eco-fade-down { from { opacity:0; transform: translateY(-30px);} to { opacity:1; transform: translateY(0);} }
@keyframes eco-fade-up { from { opacity:0; transform: translateY(30px);} to { opacity:1; transform: translateY(0);} }
@media (max-width: 1200px) { .eco-network { flex-direction: column; } .eco-network-graphic { width: 100%; max-width: 900px; } }
@media (max-width: 768px) { .eco-title { font-size: 2.5rem; } .eco-hex { width: 200px; } .eco-role-title { font-size: 1rem; } }

/* Partner modal */
.eco-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}
.eco-modal.active { display: flex; }
.eco-modal-card {
  background: linear-gradient(145deg, #0f2e24, #0c4737);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 16px;
  padding: 24px;
  width: min(540px, 100%);
  color: #e7f5ee;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  position: relative;
}
.eco-modal h3 { margin: 0 0 12px; font-weight: 800; }
.eco-modal p { margin: 0 0 16px; color: #c7f4df; }
.eco-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  color: #e7f5ee;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.eco-form {
  display: grid;
  gap: 12px;
}
.eco-form input, .eco-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #e7f5ee;
  padding: 12px 14px;
  font-size: 1rem;
}
.eco-form textarea { min-height: 120px; resize: vertical; }
.eco-form button {
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #34d399, #14b8a6);
  color: #0a2c22;
  font-weight: 800;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eco-form button:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(52, 211, 153, 0.35); }
.eco-grid-section {
  position: relative;
  background: #000000;
  color: #e7f5ee;
  overflow: hidden;
  padding: clamp(60px, 8vw, 120px) 0;
}
.eco-grid-section .eco-grid-container { position: relative; z-index: 10; max-width: 1600px; }
.eco-grid-header .eco-grid-sub { color: #ffffff !important; }
.eco-liquid-bg, .eco-mesh, .eco-grid-pattern { position: absolute; inset: 0; pointer-events: none; }
.eco-liquid-bg {
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.08), transparent 45%), radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.08), transparent 45%), linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #050505 100%);
  background-size: 400% 400%;
  animation: ecoGradientShift 20s ease infinite;
  z-index: 0;
}
@keyframes ecoGradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.eco-mesh {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(16,185,129,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(20,184,166,0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(52,211,153,0.1) 0%, transparent 60%);
  animation: ecoMeshMove 15s ease-in-out infinite;
}
@keyframes ecoMeshMove { 0%,100% { transform: scale(1) rotate(0deg);} 50% { transform: scale(1.1) rotate(5deg);} }
.eco-grid-pattern {
  z-index: 1;
  background-image:
    linear-gradient(rgba(16,185,129,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: ecoGridFloat 30s linear infinite;
}
@keyframes ecoGridFloat { from { transform: translate(0,0);} to { transform: translate(100px,100px);} }
.eco-beams { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.eco-beam { position: absolute; width: 2px; height: 200%; background: linear-gradient(to bottom, transparent, rgba(16,185,129,0.3), transparent); animation: ecoBeamMove 8s ease-in-out infinite; }
.eco-beam:nth-child(1) { left: 15%; animation-delay: 0s; }
.eco-beam:nth-child(2) { left: 45%; animation-delay: 2s; }
.eco-beam:nth-child(3) { left: 75%; animation-delay: 4s; }
@keyframes ecoBeamMove { 0%,100% { opacity:0; transform: translateY(-100%);} 50% { opacity:1; transform: translateY(0);} }
.eco-spotlight { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(16,185,129,0.15), transparent); border-radius: 50%; pointer-events: none; z-index: 3; transition: all 0.3s ease-out; opacity: 0; }
.eco-grid-section:hover .eco-spotlight { opacity: 1; }
.eco-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 200px);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 3rem;
}
.eco-bento-item {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: ecoCardReveal 0.8s ease-out forwards;
  min-height: 200px;
}
@keyframes ecoCardReveal { to { opacity: 1; transform: translateY(0) scale(1);} }
.eco-bento-item:hover { transform: translateY(-10px) scale(1.02); z-index: 20; }
.eco-bento-item:nth-child(1),
.eco-bento-item:nth-child(2),
.eco-bento-item:nth-child(3),
.eco-bento-item:nth-child(4),
.eco-bento-item:nth-child(5),
.eco-bento-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}
.eco-liquid-bgcard {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,13,0.9), rgba(6,78,59,0.7));
  backdrop-filter: blur(20px);
  transition: all 0.6s ease;
}
.eco-bento-item:hover .eco-liquid-bgcard { background: linear-gradient(135deg, rgba(10,15,13,0.7), rgba(6,78,59,0.5)); }
.eco-morph-border {
  position: absolute; inset: 0; border-radius: 2rem; padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}
.eco-bento-item:hover .eco-morph-border { box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.eco-card-img { position: absolute; inset: 0; opacity: 0.4; transition: all 0.6s ease; }
.eco-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) brightness(0.7); transition: all 0.6s ease; }
.eco-bento-item:hover .eco-card-img { opacity: 0.6; }
.eco-bento-item:hover .eco-card-img img { filter: grayscale(0%) brightness(0.9); transform: scale(1.1); }
.eco-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%); transition: all 0.6s ease; }
.eco-bento-item:hover .eco-gradient-overlay { background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.9) 100%); }
.eco-card-inner { position: relative; height: 100%; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; z-index: 5; }
.eco-float-icon { width: 4rem; height: 4rem; border-radius: 1.5rem; display: flex; align-items: center; justify-content: center; background: var(--card-gradient); box-shadow: 0 20px 40px rgba(0,0,0,0.4); transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; }
.eco-bento-item:hover .eco-float-icon { transform: translateY(-10px) rotate(360deg) scale(1.2); box-shadow: 0 30px 60px var(--card-color-shadow); }
.eco-float-icon svg { width: 2rem; height: 2rem; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.eco-float-icon::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, var(--card-color), transparent, var(--card-color));
  animation: ecoIconSpin 6s linear infinite;
  z-index: -1;
  opacity: 0.7;
}
@keyframes ecoIconSpin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
.eco-icon-glow { position: absolute; inset: -10px; background: var(--card-color); filter: blur(20px); opacity: 0; border-radius: 50%; transition: opacity 0.6s ease; }
.eco-bento-item:hover .eco-icon-glow { opacity: 0.6; animation: ecoGlowPulse 2s ease-in-out infinite; }
@keyframes ecoGlowPulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.2);} }
.eco-text-block { transition: all 0.6s ease; }
.eco-bento-item:hover .eco-text-block { transform: translateY(-5px); }
.eco-card-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.eco-card-desc2 { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.6s ease; margin-bottom: 1rem; }
.eco-bento-item:hover .eco-card-desc2 { max-height: 120px; opacity: 1; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.6s ease 0.2s; }
.eco-bento-item:hover .eco-tags { max-height: 220px; opacity: 1; }
.eco-tag { padding: 0.4rem 0.8rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.9); transition: all 0.3s ease; transform: translateY(10px); animation: ecoTagUp 0.4s ease-out forwards; }
@keyframes ecoTagUp { to { transform: translateY(0);} }
.eco-bento-item:hover .eco-tag:nth-child(1) { animation-delay: 0.1s; }
.eco-bento-item:hover .eco-tag:nth-child(2) { animation-delay: 0.15s; }
.eco-bento-item:hover .eco-tag:nth-child(3) { animation-delay: 0.2s; }
.eco-bento-item:hover .eco-tag:nth-child(4) { animation-delay: 0.25s; }
.eco-tag:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.eco-energy { position: absolute; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--card-color), transparent); bottom: 0; left: 0; opacity: 0; }
.eco-bento-item:hover .eco-energy { animation: ecoWave 1.5s ease-in-out infinite; }
@keyframes ecoWave { 0% { opacity:0; transform: translateX(-100%);} 50% { opacity:1;} 100% { opacity:0; transform: translateX(100%);} }
.eco-partnership {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: ecoPartnerReveal 0.8s ease-out 0.8s forwards;
}
@keyframes ecoPartnerReveal { to { opacity: 1; transform: scale(1);} }
.eco-partner-card {
  position: relative;
  padding: 3rem 5rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(20,184,166,0.15));
  backdrop-filter: blur(20px);
  border-radius: 3rem;
  border: 2px solid rgba(16,185,129,0.3);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.eco-partner-card:hover { transform: scale(1.05); background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(20,184,166,0.25)); border-color: rgba(16,185,129,0.6); box-shadow: 0 30px 80px rgba(16,185,129,0.3); }
.eco-rot-ring { position: absolute; inset: -3px; border-radius: 3rem; background: conic-gradient(from 0deg, #10b981, #14b8a6, #34d399, #10b981); animation: ecoRingRotate 6s linear infinite; opacity: 0; transition: opacity 0.6s ease; }
.eco-partner-card:hover .eco-rot-ring { opacity: 1; }
@keyframes ecoRingRotate { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
.eco-rot-ring::after { content: ''; position: absolute; inset: 3px; background: linear-gradient(135deg, rgba(10,15,13,0.95), rgba(6,78,59,0.9)); border-radius: 3rem; }
.eco-partner-content { position: relative; display: flex; align-items: center; gap: 2rem; z-index: 5; }
.eco-partner-icon-wrap { position: relative; }
.eco-partner-icon {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(16,185,129,0.4);
  transition: all 0.6s ease;
}
.eco-partner-card:hover .eco-partner-icon { transform: rotate(360deg) scale(1.1); box-shadow: 0 30px 60px rgba(16,185,129,0.6); }
.eco-partner-icon svg { width: 2.5rem; height: 2.5rem; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.eco-icon-ring { position: absolute; inset: -15px; border: 2px solid rgba(16,185,129,0.3); border-radius: 50%; animation: ecoIconRing 2s ease-out infinite; }
.eco-icon-ring:nth-child(2) { animation-delay: 0.7s; }
.eco-icon-ring:nth-child(3) { animation-delay: 1.4s; }
@keyframes ecoIconRing { 0% { transform: scale(1); opacity: 1;} 100% { transform: scale(2); opacity: 0;} }
.eco-partner-text h2 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981, #34d399, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: ecoTextShimmer 3s ease-in-out infinite;
}
@keyframes ecoTextShimmer { 0%,100% { filter: brightness(1);} 50% { filter: brightness(1.3);} }
.eco-partner-text p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin: 0; }

/* Partner CTA button (grid) */
.eco-partner-btn-row { margin-top: 12px; }
.eco-partner-btn-grid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(52,211,153,0.3);
  background: linear-gradient(135deg, rgba(6,78,59,0.95), rgba(6,95,70,0.95));
  color: #e7f5ee;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 44px rgba(0,0,0,0.35), 0 0 0 6px rgba(52,211,153,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eco-partner-btn-grid svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.eco-partner-btn-grid:hover { transform: translateY(-2px); box-shadow: 0 24px 56px rgba(0,0,0,0.4), 0 0 0 8px rgba(52,211,153,0.18); }
@media (max-width: 1400px) {
  .eco-bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 180px);
  }
  .eco-bento-item:nth-child(1),
  .eco-bento-item:nth-child(2),
  .eco-bento-item:nth-child(3),
  .eco-bento-item:nth-child(4),
  .eco-bento-item:nth-child(5),
  .eco-bento-item:nth-child(6) {
    grid-column: span 3;
    grid-row: span 2;
  }
}
@media (max-width: 768px) {
  .eco-grid-container { padding: 0 1rem; }
  .eco-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 300px);
    gap: 1rem;
  }
  .eco-bento-item:nth-child(1),
  .eco-bento-item:nth-child(2),
  .eco-bento-item:nth-child(3),
  .eco-bento-item:nth-child(4),
  .eco-bento-item:nth-child(5),
  .eco-bento-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .eco-card-title { font-size: 1.5rem; }
  .eco-partner-card { padding: 2rem 2.5rem; }
  .eco-partner-content { flex-direction: column; gap: 1rem; text-align: center; }
  .eco-partner-text h2 { font-size: 2rem; }
  .eco-partner-text p { font-size: 1rem; }
}
