:root {
  --bg: #030404;
  --panel: #0a0d0c;
  --panel-2: #101614;
  --line: rgba(247, 243, 232, 0.1);
  --line-strong: rgba(14, 117, 90, 0.42);
  --text: #f8faf7;
  --muted: #9ba8a1;
  --soft: #e9eee9;
  --green: #0e755a;
  --green-2: #0e755a;
  --cream: #f7f3e8;
  --blue: #2864d9;
  --blue-2: #4b7fe5;
  --teal: #0e755a;
  --lime: #7cae54;
  --amber: #c88d24;
  --rose: #b94c5a;
  --radius: 8px;
  --max: 1180px;
}

/* Clean Sharp Typewriter Effect */
.morph-text {
  color: #0e755a !important;
  text-shadow: none !important;
  display: inline-block;
  position: relative;
  font-weight: 900;
  padding-right: 4px;
}

.morph-text::after {
  content: '|';
  display: inline-block;
  margin-left: 3px;
  color: #0e755a;
  text-shadow: none;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

* {
  box-sizing: border-box;
}

html, body, body * {
  cursor: none !important;
}

html {
  scroll-behavior: smooth !important;
}

body {
  scroll-behavior: smooth !important;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button,
input,
textarea,
select {
  font: inherit;
  cursor: none;
}

button {
  cursor: none;
}

.site {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(14, 117, 90, 0.28), transparent 28rem),
    radial-gradient(circle at 94% 0%, rgba(40, 100, 217, 0.12), transparent 24rem),
    linear-gradient(180deg, #050706 0%, #030404 45%, #080b0a 100%);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid rgba(14, 117, 90, 0.14);
  background: #f7f3e8;
  border-radius: 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.14);
  transform: none;
}

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  height: 68px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
}

.brand-logo {
  display: block;
  width: 130px;
  max-width: 36vw;
  height: auto;
  mix-blend-mode: multiply;
}

.footer-logo {
  width: 175px;
  max-width: 100%;
  mix-blend-mode: normal !important;
  filter: brightness(0) invert(1) !important;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-links a,
.mobile-menu a {
  color: #24312c;
  padding: 8px 11px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #0e755a !important;
  background: rgba(14, 117, 90, 0.12);
}

/* Services Dropdown Menu */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 320px;
  background: #f7f3e8;
  border: 1px solid rgba(14, 117, 90, 0.22);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
  display: grid;
  gap: 4px;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  text-decoration: none;
  background: transparent !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.dropdown-item:hover {
  background: rgba(14, 117, 90, 0.12) !important;
  transform: translateX(3px) !important;
}

.dropdown-item-num {
  font-size: 11px;
  font-weight: 900;
  color: #0e755a;
  background: rgba(14, 117, 90, 0.1);
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid rgba(14, 117, 90, 0.18);
  flex-shrink: 0;
}

.dropdown-item-title {
  font-size: 13px;
  font-weight: 800;
  color: #07110e;
  line-height: 1.25;
  text-align: left;
}

.dropdown-item-cat {
  font-size: 10px;
  font-weight: 700;
  color: #0e755a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  height: 38px;
  padding: 0 15px;
  border-radius: 12px;
  border: none;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #20ba5a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14, 117, 90, 0.16);
  background: rgba(14, 117, 90, 0.08);
  color: #07110e;
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  background: rgba(247, 243, 232, 0.96);
}

.mobile-menu.open {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section.tight {
  padding: 58px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-centered {
  text-align: center;
}

.text-center {
  text-align: center;
  margin: 0 auto;
}

.text-green-gradient {
  background: linear-gradient(to right, #24c64b, #0e755a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.morph-text {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(20px, 3.5vw, 44px);
  color: #0e755a !important;
}

.morph-text::after {
  content: "|";
  display: inline-block;
  animation: blink 1s step-end infinite;
  margin-left: 4px;
  color: currentColor;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  border: 1px solid rgba(14, 117, 90, 0.24);
  background: rgba(14, 117, 90, 0.08);
  border-radius: var(--radius);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(14, 117, 90, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 800;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
}

.accent {
  color: var(--green);
}

.hero-copy {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(247, 243, 232, 0.06);
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 117, 90, 0.85) !important;
  box-shadow: 0 8px 25px rgba(14, 117, 90, 0.45) !important;
}

.btn.primary {
  border: 1px solid #0e755a !important;
  color: #ffffff !important;
  background: #0e755a !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 24px rgba(14, 117, 90, 0.35) !important;
}

.btn.primary:hover {
  background: #0e755a !important;
  color: #ffffff !important;
  border-color: #0e755a !important;
  box-shadow: 0 12px 32px rgba(14, 117, 90, 0.5) !important;
}

.btn.ghost {
  background: transparent;
}

.hero-visual {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

.signal-board {
  position: absolute;
  inset: 0;
  border: none;
  background: none;
  overflow: hidden;
}

.signal-board::before,
.signal-board::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(14, 117, 90, 0.24);
}

.signal-board::after {
  inset: 24% 8%;
  border-color: rgba(40, 100, 217, 0.14);
}

.metric-card {
  position: absolute;
  width: min(285px, 48%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 10, 0.92);
  backdrop-filter: blur(4px);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.metric-card:nth-child(2) {
  top: 9%;
  left: 7%;
}

.metric-card:nth-child(3) {
  top: 37%;
  right: 6%;
}

.metric-card:nth-child(4) {
  bottom: 9%;
  left: 16%;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-value {
  margin: 10px 0 2px;
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
}

.sparkline {
  height: 38px;
  margin-top: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, transparent 8%, rgba(14, 117, 90, 0.22) 9% 20%, transparent 21%),
    linear-gradient(165deg, transparent 20%, rgba(40, 100, 217, 0.16) 21% 38%, transparent 39%),
    linear-gradient(15deg, transparent 30%, rgba(200, 141, 36, 0.18) 31% 48%, transparent 49%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}

.section-head p,
.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.section-cream {
  background: transparent;
}

.section-green {
  background: linear-gradient(180deg, #071c16 0%, #04100c 100%);
  border-top: 1px solid rgba(14, 117, 90, 0.22);
  border-bottom: 1px solid rgba(14, 117, 90, 0.22);
}

.section-cream .badge-pill {
  background: rgba(14, 117, 90, 0.08);
  border-color: rgba(14, 117, 90, 0.22);
  color: #0e755a !important;
}

.platform-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 24px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.35s ease !important;
  cursor: pointer;
}

.platform-logo-img:hover {
  transform: scale(1.12) translateY(-10px) !important;
  filter: drop-shadow(0 22px 42px rgba(14, 117, 90, 0.65)) !important;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.section-cream .dot-blue {
  background: var(--green-2);
  box-shadow: 0 0 0 4px rgba(14, 117, 90, 0.15);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(247, 243, 232, 0.2);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dot-blue {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(247, 243, 232, 0.18);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 75s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #f7f3e8 !important;
  padding: 14px 26px 14px 14px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 117, 90, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 10px 28px rgba(14, 117, 90, 0.2) !important;
}

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e755a, #0e755a);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 117, 90, 0.25);
}

.logo-text {
  color: #07110e !important;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.box-card-beige {
  background: #f7f3e8 !important;
  color: #07110e !important;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(14, 117, 90, 0.16);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-card-beige:hover {
  background: #f7f3e8 !important;
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.4) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1) !important;
}

.box-card-green {
  background: linear-gradient(180deg, #071c16 0%, #04100c 100%) !important;
  color: #f8faf7 !important;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(14, 117, 90, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-card-green:hover {
  background: linear-gradient(180deg, #071c16 0%, #04100c 100%) !important;
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.25) !important;
}

.box-card-beige h2 {
  color: #07110e !important;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  margin: 18px 0 14px;
}

.box-card-green h2 {
  color: #f8faf7 !important;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  margin: 18px 0 14px;
}

.box-card-beige p {
  color: #40514a !important;
  margin-bottom: 28px;
  font-size: 16px;
}

.box-card-green p {
  color: var(--muted) !important;
  margin-bottom: 28px;
  font-size: 16px;
}

.box-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.check-item-beige {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(14, 117, 90, 0.14);
  border-radius: var(--radius);
  color: #07110e;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.check-item-beige:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 117, 90, 0.4);
}

.check-item-beige span:first-child {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: #0e755a;
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.check-item-green {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(14, 117, 90, 0.25);
  border-radius: var(--radius);
  color: var(--soft);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.check-item-green:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 117, 90, 0.65);
}

.check-item-green span:first-child {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Services Slider & Beige Cards */
.services-slider-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.service-card-beige-compact {
  background: #f7f3e8 !important;
  color: #07110e !important;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(14, 117, 90, 0.18) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-beige-compact:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 14px 36px rgba(14, 117, 90, 0.22) !important;
}

.service-tag-beige {
  border: 1px solid rgba(14, 117, 90, 0.25);
  background: rgba(14, 117, 90, 0.06);
  color: #0e755a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* Testimonial Marquee & 1:1 Square Cards */
.testimonial-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 12px 0 24px;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.testimonial-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 75s linear infinite;
}

.testimonial-marquee-wrapper:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-card-square {
  flex: 0 0 310px;
  width: 310px;
  height: 310px;
  aspect-ratio: 1 / 1;
  background: #f7f3e8 !important;
  color: #07110e !important;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(14, 117, 90, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-square:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 14px 36px rgba(14, 117, 90, 0.22) !important;
}

/* Green Gradient Industry Cards */
.industry-card-green {
  background: linear-gradient(145deg, #09241c 0%, #04120e 100%) !important;
  border: 1px solid rgba(14, 117, 90, 0.35) !important;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.industry-card-green:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 117, 90, 0.8) !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.28) !important;
}

.industry-card-beige:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 14px 36px rgba(14, 117, 90, 0.18) !important;
}

.industry-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(14, 117, 90, 0.15);
  border: 1px solid rgba(14, 117, 90, 0.3);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.industry-card-green h3 {
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.industry-card-green p {
  color: #c0d8cf !important;
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* Process Section Step Cards */
.process-card-beige {
  background: #f7f3e8 !important;
  color: #07110e !important;
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(14, 117, 90, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-card-beige:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.22) !important;
}

.process-step-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #0e755a;
  color: white;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.process-watermark-num {
  position: absolute;
  top: -8px;
  right: 0px;
  font-size: 54px;
  font-weight: 900;
  color: rgba(14, 117, 90, 0.18);
  line-height: 1;
  pointer-events: none;
}

.process-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(14, 117, 90, 0.1);
  border: 1px solid rgba(14, 117, 90, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.service-card-dark {
  background: rgba(6, 18, 14, 0.85) !important;
  border: 1px solid rgba(14, 117, 90, 0.35) !important;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 117, 90, 0.8) !important;
  box-shadow: 0 12px 36px rgba(14, 117, 90, 0.25) !important;
}

.service-horizontal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 12px 32px rgba(14, 117, 90, 0.18) !important;
}

.service-horizontal-card-beige:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 12px 32px rgba(14, 117, 90, 0.18) !important;
}

.service-horizontal-card-beige:hover .know-more-btn-green {
  background: #0e755a !important;
  box-shadow: 0 6px 16px rgba(14, 117, 90, 0.4) !important;
}

.service-horizontal-card-beige:hover .know-more-btn-green span {
  transform: translateX(4px);
}

.service-horizontal-card:hover .know-more-link {
  color: #24d1a0 !important;
}

.service-horizontal-card:hover .know-more-link span {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-3x3-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .services-3x3-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-tag-green {
  border: 1px solid rgba(14, 117, 90, 0.4);
  background: rgba(14, 117, 90, 0.08);
  color: #0e755a !important;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.services-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.services-slider-track {
  display: flex;
  gap: 20px;
}

.service-card-beige {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 310px;
  max-width: 420px;
  scroll-snap-align: start;
  background: #f7f3e8 !important;
  color: #07110e !important;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(14, 117, 90, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1024px) {
  .service-card-beige {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .service-card-beige {
    flex: 0 0 85vw;
    min-width: 260px;
    padding: 22px;
  }
}

.service-card-beige:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.22) !important;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.card-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  background: rgba(14, 117, 90, 0.12);
  color: #0e755a;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(14, 117, 90, 0.22);
}

.card-title-beige {
  font-size: 22px;
  font-weight: 800;
  color: #07110e !important;
  margin: 10px 0 12px;
  line-height: 1.2;
}

.card-summary-beige {
  font-size: 14px;
  color: #40514a !important;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-tags-beige {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag-beige {
  border: 1px solid rgba(14, 117, 90, 0.25);
  background: rgba(14, 117, 90, 0.05);
  color: #0e755a;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.card-footer-beige {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 117, 90, 0.14);
  margin-top: auto;
}

.card-outcome-green {
  font-size: 13px;
  font-weight: 800;
  color: #0e755a;
}

.btn-explore-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #0e755a;
  color: white !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-explore-green:hover {
  background: #0e755a;
  transform: translateX(3px);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 232, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f8faf7;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: rgba(14, 117, 90, 0.3);
  border-color: #0e755a;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.check-item,
.step,
.blog-card,
.stat,
.testimonial-card-square,
.service-detail-grid-card,
.box-card-beige,
.value-orbit-card,
.faq details,
.metric-card,
.logo-card {
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.check-item:hover,
.step:hover,
.blog-card:hover,
.stat:hover,
.testimonial-card-square:hover,
.service-detail-grid-card:hover,
.value-orbit-card:hover {
  background: #ffffff !important;
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 14px 36px rgba(14, 117, 90, 0.22) !important;
}

.card-dark,
.box-card-green,
.industry-card-green,
.stat-glass-card {
  background: rgba(6, 18, 14, 0.85) !important;
  color: #f8faf7 !important;
}

.card-dark:hover,
.box-card-green:hover,
.industry-card-green:hover,
.stat-glass-card:hover {
  background: rgba(6, 18, 14, 0.95) !important;
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.3) !important;
}

.card {
  border: 1px solid rgba(14, 117, 90, 0.2);
  border-radius: var(--radius);
  background: #f7f3e8;
  padding: 24px;
  color: #07110e;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #07110e;
}

.card p,
.card li {
  color: #40514a;
}

.card ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

.service-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(14, 117, 90, 0.12);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.list-row {
  display: grid;
  gap: 10px;
}

.check-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(14, 117, 90, 0.2);
  border-radius: var(--radius);
  background: #f7f3e8;
  color: #2d3f38;
}

.check-item span:first-child {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: #0e755a;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  border: 1px solid rgba(14, 117, 90, 0.2);
  border-radius: var(--radius);
  padding: 18px;
  background: #f7f3e8;
  color: #07110e;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65);
  box-shadow: 0 8px 24px rgba(14, 117, 90, 0.25);
}

.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: #0e755a !important;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #2d3e37;
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  padding: 86px 0 54px;
}

.crumb {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(14, 117, 90, 0.2);
  border-radius: var(--radius);
  background: #f7f3e8;
  color: #07110e;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  color: #0e755a;
  font-size: 24px;
  font-weight: 300;
}

.case-card {
  min-height: 320px;
}

.case-visual {
  height: 170px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(14, 117, 90, 0.42), transparent 44%),
    linear-gradient(45deg, transparent 52%, rgba(247, 243, 232, 0.13) 53%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
}

.case-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.quote {
  font-size: 18px;
  color: var(--soft);
}

.quote-by {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

.faq details,
.faq-row-pair details {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #ffffff !important;
  padding: 20px 24px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.faq details:hover,
.faq-row-pair details:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 12px 32px rgba(14, 117, 90, 0.2) !important;
}

.faq summary,
.faq-row-pair summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15.5px;
  color: #ffffff !important;
  line-height: 1.35;
  outline: none;
}

.faq p,
.faq-row-pair p {
  color: #c0d8cf !important;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--soft);
  font-weight: 700;
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(14, 117, 90, 0.65);
}

.notice {
  display: none;
  border: 1px solid rgba(14, 117, 90, 0.36);
  background: rgba(14, 117, 90, 0.16);
  color: var(--soft);
  padding: 14px;
  border-radius: var(--radius);
}

.notice.show {
  display: block;
}

.cta {
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(14, 117, 90, 0.38), transparent 36%),
    linear-gradient(225deg, rgba(40, 100, 217, 0.14), transparent 36%),
    #050706;
  border-top: 1px solid var(--line);
  color: white;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 14px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  font-size: 17px;
}

.cta .btn.primary {
  background: linear-gradient(to right, #f7f3e8 0%, #f7f3e8 100%);
  color: #0e755a;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  background: #030404;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto auto;
  gap: 52px;
  align-items: start !important;
}

.footer h4 {
  margin: 0 0 16px 0 !important;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1 !important;
}

.footer a,
.footer p {
  color: var(--muted);
  margin: 0 0 9px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a {
  display: block;
  text-decoration: none;
}

.footer a:hover {
  color: #0e755a !important;
  transform: translateX(3px);
}

.copyright a:hover {
  color: #0e755a !important;
  transform: none !important;
}

.social-icon-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  display: grid !important;
  place-items: center !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  margin: 0 !important;
}

.social-icon-btn:hover {
  background: #0e755a !important;
  border-color: #0e755a !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(14, 117, 90, 0.4) !important;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-brand {
  color: #0e755a;
  font-weight: 700;
}

.copyright-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.copyright-links a {
  display: inline-flex !important;
  margin: 0 !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.copyright-links a:hover {
  color: #0e755a !important;
  transform: none !important;
}

.legal-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  user-select: none;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: white;
  background: rgba(14, 117, 90, 0.9);
  backdrop-filter: blur(16px);
  display: none;
}

.back-top.show {
  display: block;
}

.blog-body {
  max-width: 780px;
}

.blog-body p,
.blog-body li {
  color: var(--soft);
  font-size: 18px;
}

.blog-body h2 {
  margin-top: 34px;
  font-size: 32px;
}

@media (max-width: 920px) {
  .nav-inner {
    padding: 0 16px !important;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .section-head,
  .split,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .grid.three,
  .grid.four,
  .logo-row,
  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand {
    padding: 7px 8px;
  }

  .brand-logo {
    width: 148px;
    max-width: 58vw;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .logo-row,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .metric-card {
    position: relative;
    width: auto;
    inset: auto !important;
    margin: 14px;
  }

  .signal-board {
    position: relative;
    min-height: 540px;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}

.audit-submit-btn {
  width: 100%;
  height: 52px;
  background: #07110e;
  color: #ffffff;
  font-weight: 800;
  font-size: 15.5px;
  border-radius: 12px;
  border: 1px solid #07110e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.audit-submit-btn:hover {
  background: #0e755a !important;
  border-color: #0e755a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 117, 90, 0.4) !important;
}

.audit-submit-btn:hover .plane-icon {
  transform: translateX(4px) translateY(-2px);
}

.plane-icon {
  transition: transform 0.3s ease;
}

@keyframes popCheckmark {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  70% { transform: scale(1.2) rotate(0deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes fadeInScale {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes dotModalPop {
  0% { transform: scale(0.85) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(14, 117, 90, 0.8), 0 0 10px 3px rgba(14, 117, 90, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(14, 117, 90, 0), 0 0 16px 5px rgba(14, 117, 90, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(14, 117, 90, 0), 0 0 10px 3px rgba(14, 117, 90, 0.5); }
}

/* ── Dual Cursor System ── */

/* Inner dot: snaps instantly to mouse, always glowing */
#mouseInnerDot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #0e755a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate(-50%, -50%);
  animation: dotPulse 1.8s ease-out infinite;
  transition: none; /* no transition — snaps instantly */
}

/* Outer ring: lags behind via JS lerp */
#mouseGlowDot {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(14, 117, 90, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483646;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s ease,
              background-color 0.35s ease,
              box-shadow 0.35s ease;
  box-shadow: 0 0 10px rgba(14, 117, 90, 0.18);
}

/* Hover state: ring expands cleanly without dark overlay */
#mouseGlowDot.hovering {
  width: 50px;
  height: 50px;
  border-color: #0e755a;
  background-color: transparent !important;
  box-shadow: 0 0 16px rgba(14, 117, 90, 0.35);
}

/* Client Logo Cards */
.client-logo-card:hover {
  transform: translateY(-6px) !important;
  border-color: #0e755a !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.35) !important;
}

.service-home-card:hover {
  transform: translateY(-6px) !important;
  border-color: #0e755a !important;
  box-shadow: 0 20px 50px rgba(14, 117, 90, 0.35) !important;
}

.service-home-card:hover h3 a {
  color: var(--green-2) !important;
}

@media (max-width: 768px) {
  .client-row-3, .client-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 100% !important;
  }
  .client-logo-card {
    height: 90px !important;
    padding: 14px !important;
  }
}

@media (max-width: 480px) {
  .client-row-3, .client-row-2 {
    grid-template-columns: 1fr !important;
  }
}

/* Header Social Buttons */
.hdr-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 117, 90, 0.12);
  border: 1px solid rgba(14, 117, 90, 0.3);
  color: #0e755a !important;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.hdr-social-btn:hover {
  background: #0e755a !important;
  color: #ffffff !important;
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(14, 117, 90, 0.35);
}

.hdr-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.timeline-node-icon.node-active {
  background: linear-gradient(135deg, #0e755a, #0e755a) !important;
  color: #ffffff !important;
  border-color: #24d1a0 !important;
  box-shadow: 0 0 0 10px rgba(14, 117, 90, 0.25), 0 0 28px rgba(14, 117, 90, 0.8) !important;
  transform: translateX(-50%) scale(1.18) !important;
}

/* Team Section Styles */
.team-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0e755a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(14, 117, 90, 0.35);
  font-size: 20px;
}

.team-card {
  background: rgba(8, 11, 10, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px 16px 20px 16px;
  position: relative;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.team-img-wrapper {
  width: calc(100% - 50px);
  aspect-ratio: 1 / 1.1;
  border-radius: 20px;
  overflow: hidden;
  background: #e2e8f0;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-tag {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: #0e755a;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
}

.team-name {
  margin: 16px 0 0 0;
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  text-align: right;
  padding-right: 10px;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #f7f3e8;
  border: 1px solid rgba(14, 117, 90, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.1, 0.5, 0.1, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 117, 90, 0.65);
  box-shadow: 0 20px 48px rgba(14, 117, 90, 0.18);
}

.blog-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #111;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.1, 0.5, 0.1, 1);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-title {
  font-size: 20px;
  font-weight: 800;
  color: #07110e;
  line-height: 1.35;
  margin: 0 0 16px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title h2 {
  color: #07110e;
  font-size: 20px;
  margin: 0;
}

.blog-title:hover,
.blog-title:hover h2 {
  color: #0e755a;
}

.blog-excerpt {
  color: #40514a;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 117, 90, 0.15);
  color: #50625a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hub and Spoke Interactive Layout */
.hub-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hub-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hub-center {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 12px solid #1a2420;
  background: #f6f2ea;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(14, 117, 90, 0.2), 0 24px 48px rgba(0,0,0,0.5);
  margin: 0 40px;
  position: relative;
}

.hub-card {
  background: #f6f2ea !important;
  border: 2px solid rgba(14, 117, 90, 0.15) !important;
  border-radius: 50px !important;
  padding: 12px 24px 12px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important;
  position: relative !important;
  text-decoration: none !important;
  color: #07110e !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  z-index: 1 !important;
}

.hub-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 36px rgba(14, 117, 90, 0.3) !important;
  border-color: rgba(14, 117, 90, 0.5) !important;
  background: #ffffff !important;
}

.hub-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #192520 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.hub-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hub-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0e755a !important;
  margin-bottom: 4px !important;
}

.hub-desc {
  font-size: 13px !important;
  color: #40514a !important;
  line-height: 1.4 !important;
}

@media (max-width: 992px) {
  .hub-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hub-center {
    margin: 0 auto;
    order: -1;
  }
}


/* Core Values Circular Orbit Graphic (Matching Reference Diagram) */
.values-graphic-card {
  background: #ffffff;
  border: 1px solid rgba(14, 117, 90, 0.16);
  border-radius: 36px;
  padding: 56px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}

.values-orbit-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.values-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  border: 1.5px dashed rgba(14, 117, 90, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.values-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e755a 0%, #0e755a 100%);
  box-shadow: 0 12px 35px rgba(14, 117, 90, 0.45);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 4px solid #ffffff;
}

.values-center-hub .hub-sub {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}

.values-center-hub .hub-main {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.value-orbit-card {
  position: absolute;
  width: 220px;
  background: #ffffff;
  color: #07110e;
  border-radius: 24px;
  padding: 22px 18px;
  border: 1.5px solid #e2e8e5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  cursor: pointer;
  box-sizing: border-box;
}

.value-orbit-card:hover {
  transform: scale(1.06);
  border-color: #0e755a;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.25);
  z-index: 10;
}

.value-orbit-card .val-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 12.5px;
  color: #40514a;
  line-height: 1.5;
  margin-top: 0;
}

.value-orbit-card:hover .val-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

.value-orbit-card.card-top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.value-orbit-card.card-top:hover {
  transform: translateX(-50%) scale(1.06);
}

.value-orbit-card.card-top-right {
  top: 12%;
  right: 10px;
}

.value-orbit-card.card-bottom-right {
  bottom: 12%;
  right: 10px;
}

.value-orbit-card.card-bottom {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.value-orbit-card.card-bottom:hover {
  transform: translateX(-50%) scale(1.06);
}

.value-orbit-card.card-bottom-left {
  bottom: 12%;
  left: 10px;
}

.value-orbit-card.card-top-left {
  top: 12%;
  left: 10px;
}

@media (max-width: 920px) {
  .values-orbit-container {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px 0;
  }
  .values-orbit-ring {
    display: none;
  }
  .values-center-hub {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1 / -1;
    margin: 0 auto 16px;
  }
  .value-orbit-card {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    box-sizing: border-box;
  }
  .value-orbit-card .val-desc {
    max-height: none;
    opacity: 1;
    margin-top: 8px;
  }
}

/* Premium Cinematic 3D Holographic Globe & Network Nodes Section */
.global-network-section {
  background: #050B0A !important;
  position: relative;
}

.network-bg-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 117, 90, 0.15) 0%, rgba(5, 11, 10, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.global-network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.global-nodes-wrapper {
  background: #f7f3e8 !important;
  border: 1.5px solid rgba(14, 117, 90, 0.25) !important;
  border-radius: 28px !important;
  padding: 24px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
  position: relative;
  overflow: hidden;
}

/* Stage & Globe */
.globe-3d-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.halo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 117, 90, 0.2);
  pointer-events: none;
}

.halo-ring.ring-1 {
  width: 320px;
  height: 320px;
  animation: spinSlow 30s linear infinite;
  border-style: dashed;
}

.halo-ring.ring-2 {
  width: 420px;
  height: 420px;
  animation: spinSlowRev 45s linear infinite;
  border-color: rgba(14, 117, 90, 0.15);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinSlowRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.network-svg-arcs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.arc-line {
  stroke: rgba(14, 117, 90, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 4 2;
  transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.globe-3d-stage:hover .arc-line {
  stroke: rgba(14, 117, 90, 0.75);
  stroke-width: 2;
}

.data-packet {
  filter: drop-shadow(0 0 6px #0e755a);
}

/* Central Globe */
.globe-center-hub {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0e755a 0%, #07110e 70%, #030806 100%);
  box-shadow: 0 0 45px rgba(14, 117, 90, 0.45), inset 0 0 20px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border: 2px solid rgba(14, 117, 90, 0.6);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.globe-center-hub:hover {
  transform: scale(1.08);
  box-shadow: 0 0 65px rgba(14, 117, 90, 0.7), inset 0 0 30px rgba(255, 255, 255, 0.4);
}

.globe-sphere {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.45;
}

.grid-lines {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #0e755a;
}

.grid-lines.lat-1 { width: 100%; height: 50%; top: 25%; left: 0; }
.grid-lines.lat-2 { width: 100%; height: 80%; top: 10%; left: 0; }
.grid-lines.lon-1 { width: 50%; height: 100%; top: 0; left: 25%; }
.grid-lines.lon-2 { width: 80%; height: 100%; top: 0; left: 10%; }

.globe-label {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.globe-label .g-brand {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-shadow: 0 0 12px rgba(14, 117, 90, 0.9);
}

/* Network Nodes */
.network-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  cursor: pointer;
}

.node-pulse {
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(14, 117, 90, 0.35);
  transform: translateY(-50%);
  animation: nodePulseAnim 2s ease-out infinite;
}

.node-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0e755a;
  box-shadow: 0 0 10px #0e755a;
  z-index: 2;
}

.node-name {
  font-size: 13px;
  font-weight: 800;
  color: #07110e;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(14, 117, 90, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.network-node:hover .node-name {
  border-color: #0e755a;
  background: #0e755a;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(14, 117, 90, 0.35);
}

/* Node Popover Tooltip */
.node-popover {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 210px;
  background: rgba(7, 17, 14, 0.96);
  border: 1.5px solid #0e755a;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 36px rgba(14, 117, 90, 0.35);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 20;
}

.network-node:hover .node-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.node-popover h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0e755a;
  margin: 0 0 8px 0;
  border-bottom: 1px solid rgba(24,145,111,0.25);
  padding-bottom: 6px;
}

.node-popover ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.node-popover li {
  font-size: 12px;
  color: #e8ede9;
  line-height: 1.65;
}

@keyframes nodePulseAnim {
  0% { transform: translateY(-50%) scale(0.8); opacity: 1; }
  100% { transform: translateY(-50%) scale(2.2); opacity: 0; }
}

/* Stat Cards */
.global-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-glass-card {
  background: #f7f3e8 !important;
  border: 1.5px solid rgba(14, 117, 90, 0.25);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.stat-glass-card:hover {
  border-color: #0e755a;
  background: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(14, 117, 90, 0.2);
}

.stat-glass-card .stat-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.stat-glass-card .stat-val {
  font-size: 15px;
  font-weight: 800;
  color: #07110e !important;
  margin-bottom: 2px;
}

.stat-glass-card .stat-sub {
  font-size: 12px;
  color: #40514a !important;
  line-height: 1.4;
}

/* Bottom CTA Banner */
.global-bottom-cta {
  margin-top: 72px;
  background: linear-gradient(135deg, rgba(14, 117, 90, 0.12) 0%, rgba(7, 17, 14, 0.85) 100%);
  border: 1.5px solid rgba(14, 117, 90, 0.35);
  border-radius: 28px;
  padding: 40px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Responsive */
@media (max-width: 992px) {
  .global-network-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .globe-3d-stage {
    max-width: 380px;
    height: 380px;
  }
  .halo-ring.ring-1 { width: 240px; height: 240px; }
  .halo-ring.ring-2 { width: 320px; height: 320px; }
  .global-bottom-cta {
    padding: 30px 24px;
  }
}

/* Premium Full-Width Animated Process Timeline Section */
.process-timeline-section {
  background: #050B0A !important;
  position: relative;
}

.process-bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 117, 90, 0.12) 0%, rgba(5, 11, 10, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.process-stepper-wrapper {
  position: relative;
  margin-bottom: 60px;
}

.process-stepper-line {
  display: none;
}

.process-stepper-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0e755a 0%, #0e755a 100%);
  box-shadow: 0 0 16px #0e755a;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-step-card {
  background: #f7f3e8 !important;
  border: 1.5px solid rgba(14, 117, 90, 0.25);
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.process-step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #0e755a;
  background: #ffffff !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.22);
}

.process-step-card .step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.process-step-card .step-num-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0e755a;
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(14, 117, 90, 0.3);
}

.process-step-card .step-icon {
  font-size: 26px;
  transition: transform 0.3s ease;
}

.process-step-card:hover .step-icon {
  transform: scale(1.2) rotate(8deg);
}

.process-step-card .step-title {
  font-size: 20px;
  font-weight: 800;
  color: #07110e !important;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-step-card .step-desc {
  font-size: 13px;
  color: #40514a !important;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.process-step-card .step-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.process-step-card .step-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #0e755a;
  background: rgba(14, 117, 90, 0.08);
  border: 1px solid rgba(14, 117, 90, 0.25);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.process-bottom-cta {
  background: linear-gradient(135deg, rgba(14, 117, 90, 0.12) 0%, rgba(7, 17, 14, 0.85) 100%);
  border: 1.5px solid rgba(14, 117, 90, 0.35);
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-stepper-line {
    display: none;
  }
}

.service-detail-grid-card:hover {
  transform: translateY(-6px);
  background: #ffffff !important;
  border-color: #0e755a !important;
  box-shadow: 0 16px 36px rgba(14, 117, 90, 0.18) !important;
}




/* Bulletproof Dark Card Hover Locks */
div[style*="background: rgba(6, 18, 14"],
div[style*="background:rgba(6, 18, 14"],
div[style*="background: #050B0A"],
div[style*="background:#050B0A"],
div[style*="background: linear-gradient"],
.box-card-green,
.industry-card-green,
.card-dark {
  background: rgba(6, 18, 14, 0.85) !important;
}

div[style*="background: rgba(6, 18, 14"]:hover,
div[style*="background:rgba(6, 18, 14"]:hover,
div[style*="background: #050B0A"]:hover,
div[style*="background:#050B0A"]:hover,
div[style*="background: linear-gradient"]:hover,
.box-card-green:hover,
.industry-card-green:hover,
.card-dark:hover {
  background: rgba(6, 18, 14, 0.95) !important;
  transform: translateY(-4px);
  border-color: rgba(14, 117, 90, 0.65) !important;
  box-shadow: 0 16px 40px rgba(14, 117, 90, 0.3) !important;
}
