:root {
  --g5: #198754;
  --g4: #22c55e;
  --g3: #4ade80;
  --g-dim: rgba(25, 135, 84, 0.15);
  --g-glow: rgba(25, 135, 84, 0.35);
  --ink: #080c09;
  --ink-8: rgba(8, 12, 9, 0.08);
  --white: #ffffff;
  --off: #f4f7f5;
  --muted: rgba(255, 255, 255, 0.45);
  --border-d: rgba(255, 255, 255, 0.09);
  --border-l: #e2ece6;
  --ff-head: "Clash Display", sans-serif;
  --ff-body: "Cabinet Grotesk", sans-serif;
  --ff-mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 14px;
  --r-lg: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--g5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(25, 135, 84, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s var(--ease),
    width 0.25s,
    height 0.25s,
    border-color 0.25s;
}
.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--g5);
  background: rgba(25, 135, 84, 0.06);
}
@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ═══════════════════════════════════
   CANVAS BACKGROUND
═══════════════════════════════════ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(8, 12, 9, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-d);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--g5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.nav-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
}
.nav-logo span {
  color: var(--g4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--white);
}

.active-page {
  color: var(--white) !important;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-nav-ghost {
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-d);
  transition:
    background 0.18s,
    color 0.18s;
  font-family: var(--ff-body);
}
.btn-nav-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.btn-nav-solid {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  background: var(--g5);
  color: #fff;
  font-family: var(--ff-body);
  transition:
    background 0.18s,
    transform 0.15s,
    box-shadow 0.18s;
}
.btn-nav-solid:hover {
  background: #0e5c3a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25, 135, 84, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 9, 0.97);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.18s;
}
.nav-drawer a:hover {
  color: var(--g4);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 140px 5vw 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Radial glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(25, 135, 84, 0.18) 0%,
    transparent 70%
  );
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbPulse 6s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.1) 0%,
    transparent 70%
  );
  bottom: 100px;
  right: 5vw;
  animation: orbPulse 8s ease-in-out infinite 2s;
}
@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}
.hero-orb-2 {
  animation: orbPulse2 8s ease-in-out infinite 2s;
}
@keyframes orbPulse2 {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Dotted grid overlay */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(25, 135, 84, 0.14) 1px,
    transparent 1px
  );
  background-size: 38px 38px;
  mask-image: radial-gradient(
    ellipse 75% 75% at 50% 40%,
    black 0%,
    transparent 80%
  );
  animation: dotsShift 20s linear infinite;
}
@keyframes dotsShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 76px 76px;
  }
}

/* Eyebrow pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--g4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}
.hero-pill-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--g5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.hero-pill::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(25, 135, 84, 0.4), transparent 40%);
  pointer-events: none;
}

/* Headline */
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--g4);
  position: relative;

}
/* .hero-h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--g5), var(--g3));
  border-radius: 2px;
  opacity: 0.6;
} */

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 560px;
  margin: 26px auto 0;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 12px;
  background: var(--g5);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: var(--ff-head);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(25, 135, 84, 0.4);
}
.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1.5px solid var(--border-d);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    border-color 0.18s,
    background 0.18s,
    transform 0.15s;
}
.btn-hero-outline:hover {
  border-color: rgba(25, 135, 84, 0.5);
  background: rgba(25, 135, 84, 0.08);
  transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid var(--border-d);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}
.hero-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.hero-stat strong span {
  color: var(--g4);
}
.hero-stat p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 5px;
}
.hero-stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border-d);
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1s forwards;
}
.scroll-ind span {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}
.scroll-ind-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(25, 135, 84, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ═══════════════════════════════════
   MARQUEE LOGO STRIP
═══════════════════════════════════ */
.marquee-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}

.marquee-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 28px;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 40px;
  flex-shrink: 0;
}
.marquee-logo-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border-d);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  /* Replace with <img> for real logos */
}
.marquee-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════
   SECTION SHARED
═══════════════════════════════════ */
.section {
  padding: 110px 5vw;
  position: relative;
  z-index: 1;
}
.section-light {
  background: var(--white);
  color: var(--ink);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.tag-dark {
  color: var(--g4);
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.25);
}
.tag-light {
  color: #0e5c3a;
  background: #e8f5ee;
  border: 1px solid #b7dfc9;
}

.section-h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section-h2.light {
  color: var(--ink);
}
.section-h2.dark {
  color: var(--white);
}
.section-h2 em {
  font-style: normal;
  color: var(--g5);
}

.section-sub {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 520px;
  margin-top: 14px;
  font-weight: 500;
}
.section-sub.light {
  color: rgba(8, 12, 9, 0.6);
}
.section-sub.dark {
  color: rgba(255, 255, 255, 0.55);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.18s;
}
.reveal.d3 {
  transition-delay: 0.28s;
}
.reveal.d4 {
  transition-delay: 0.38s;
}
.reveal.d5 {
  transition-delay: 0.48s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════
   FEATURES
═══════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.feat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-d);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(25, 135, 84, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  border-color: rgba(25, 135, 84, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--g5);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease);
}
.feat-card:hover::after {
  transform: scaleY(1);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--g4);
  margin-bottom: 20px;
}
.feat-card h4 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.72;
  font-weight: 500;
}

/* ═══════════════════════════════════
   IMAGE SHOWCASE
═══════════════════════════════════ */
.showcase {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-inner.reverse {
  direction: rtl;
}
.showcase-inner.reverse > * {
  direction: ltr;
}

.showcase-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d1a10;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}
.showcase-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #0a1a0d 0%, #0d2010 50%, #0f2814 100%);
  position: relative;
  overflow: hidden;
}
.showcase-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(25, 135, 84, 0.1) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.showcase-img-placeholder i {
  font-size: 3.5rem;
  color: rgba(25, 135, 84, 0.4);
  position: relative;
}
.showcase-img-placeholder span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(25, 135, 84, 0.4);
  position: relative;
}

.showcase-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.showcase-img-badge i {
  font-size: 16px;
  color: var(--g5);
}
.showcase-img-badge strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.showcase-img-badge span {
  font-size: 10.5px;
  color: #888;
  display: block;
}

.showcase-text .section-tag {
  display: inline-flex;
}
.showcase-text p {
  font-size: 0.9rem;
  color: rgba(8, 12, 9, 0.65);
  line-height: 1.75;
  margin-top: 18px;
  font-weight: 500;
}
.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(8, 12, 9, 0.75);
  font-weight: 500;
}
.showcase-list li i {
  color: var(--g5);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
.hiw {
  background: #080c09;
  position: relative;
  overflow: hidden;
}
.hiw::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(25, 135, 84, 0.1) 0%,
    transparent 60%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
/* Connecting dashed line */
.hiw-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 5%;
  width: 90%;
  height: 1px;
  border-top: 1px dashed rgba(25, 135, 84, 0.25);
  pointer-events: none;
  z-index: 0;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}
.hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--g4);
  flex-shrink: 0;
  position: relative;
}
.hiw-num::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(25, 135, 84, 0.12);
}
.hiw-step h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.hiw-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 500;
}

/* ═══════════════════════════════════
   PRICING
═══════════════════════════════════ */
.pricing-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  align-items: start;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-d);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.pricing-card.hot {
  border-color: rgba(25, 135, 84, 0.45);
  background: rgba(25, 135, 84, 0.06);
}
.pricing-card.hot:hover {
  box-shadow: 0 24px 60px rgba(25, 135, 84, 0.18);
}
.pricing-hot-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g5);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-hot-badge-2 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 17, 255);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}


.pricing-tier {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g4);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-price sup {
  font-size: 1.1rem;
  vertical-align: super;
  color: rgba(255, 255, 255, 0.6);
}
.pricing-price .per {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  font-family: var(--ff-body);
}
.pricing-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 14px 0 26px;
  font-weight: 500;
  line-height: 1.6;
}
.pricing-div {
  height: 1px;
  background: var(--border-d);
  margin-bottom: 24px;
}
.pricing-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.pf-yes {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  color: var(--g4);
  flex-shrink: 0;
}
.pf-no {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.btn-pricing {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 28px;
  font-family: var(--ff-body);
  transition: all 0.2s;
}
.btn-p-fill {
  background: var(--g5);
  color: #fff;
}
.btn-p-fill:hover {
  background: #0e5c3a;
  box-shadow: 0 8px 24px rgba(25, 135, 84, 0.35);
  transform: translateY(-1px);
}
.btn-p-outline {
  border: 1.5px solid var(--border-d);
  color: rgba(255, 255, 255, 0.7);
}
.btn-p-outline:hover {
  border-color: rgba(25, 135, 84, 0.4);
  background: rgba(25, 135, 84, 0.06);
  color: var(--white);
}

/* ═══════════════════════════════════
   CLIENTS & PARTNERS
═══════════════════════════════════ */
.clients {
  background: var(--white);
}
.clients-intro {
  text-align: center;
  margin-bottom: 64px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.client-card {
  background: var(--off);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 16/9;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.client-card:hover {
  border-color: #b7dfc9;
  box-shadow: 0 8px 24px rgba(25, 135, 84, 0.08);
  transform: translateY(-3px);
}
.client-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--g5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  /* Replace with: <img src="client-logo.svg" alt="Client name"> */
}
.client-name {
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.client-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(8, 12, 9, 0.4);
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials {
  background: #080c09;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-d);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.testi-card:hover {
  border-color: rgba(25, 135, 84, 0.3);
  transform: translateY(-3px);
}
.testi-stars {
  color: var(--g4);
  font-size: 0.85rem;
  letter-spacing: 3px;
}
.testi-quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  flex: 1;
  font-weight: 500;
  position: relative;
}
.testi-quote::before {
  content: '"';
  font-family: var(--ff-head);
  font-size: 3.5rem;
  color: var(--g5);
  line-height: 0;
  vertical-align: -20px;
  margin-right: 4px;
  opacity: 0.4;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-d);
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.testi-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  margin-top: 1px;
}

/* ═══════════════════════════════════
   API SECTION
═══════════════════════════════════ */
.api-sec {
  background: #050905;
  position: relative;
  overflow: hidden;
}
.api-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(25, 135, 84, 0.07) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}
.api-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.api-feats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}
.api-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.api-feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g4);
  font-size: 1rem;
  flex-shrink: 0;
}
.api-feat h5 {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.api-feat p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  font-weight: 500;
}

.code-win {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-d);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.code-win-bar {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-d);
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.code-win-bar span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
  font-family: var(--ff-mono);
}
.code-win pre {
  padding: 24px 20px;
  font-family: var(--ff-mono);
  font-size: 0.79rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  overflow-x: auto;
}
.ck {
  color: #7ee787;
}
.cv {
  color: #ffa657;
}
.cs {
  color: #a5d6ff;
}
.cm {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-sec {
  background: var(--white);
  padding: 110px 5vw;
  text-align: center;
}
.cta-card {
  background: linear-gradient(140deg, #0a1a0d 0%, #0f2814 40%, #198754 120%);
  border-radius: 28px;
  padding: 80px 5vw;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.07);
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.12);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}
.cta-card h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cta-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  font-weight: 500;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-cta-w {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 12px;
  background: #fff;
  color: #0e5c3a;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: var(--ff-head);
  transition:
    transform 0.15s,
    box-shadow 0.18s;
}
.btn-cta-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.btn-cta-g {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.btn-cta-g:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: #050905;
  border-top: 1px solid var(--border-d);
  padding: 80px 5vw 36px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--g5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
}
.footer-logo span {
  color: var(--g4);
}
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 300px;
  font-weight: 500;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}
.footer-contact-row i {
  color: var(--g5);
  font-size: 0.85rem;
}

.footer-col h6 {
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.18s;
  font-weight: 500;
}
.footer-col ul li a:hover {
  color: var(--g4);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.76rem;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.fsoc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.fsoc:hover {
  background: var(--g5);
  color: #fff;
  border-color: var(--g5);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-ctas {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-inner.reverse {
    direction: ltr;
  }
  .api-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hiw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hiw-steps::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat-sep {
    display: none;
  }
  .hero-stats {
    gap: 24px;
  }
}
