:root {
  --bg: #ffffff;
  --bg2: #08111f;
  --green: #1a6b3c;
  --green2: #22a050;
  --green3: #34c759;
  --green4: #5de382;
  --gl: rgba(34, 160, 80, .12);
  --gl2: rgba(34, 160, 80, .25);
  --gl3: rgba(34, 160, 80, .08);

  --glass: rgba(255, 255, 255, .055);
  --glass2: rgba(255, 255, 255, .09);
  --glass3: rgba(255, 255, 255, .13);
  --gb: rgba(255, 255, 255, .1);
  --gb2: rgba(255, 255, 255, .18);
  --text: #005A3C;
  --text2: #0f172a;
  --text3: #ffffff;
  --text4: linear-gradient(135deg, #063112 0%, #3c744e 55%, #62d87f 100%);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --T: .4s cubic-bezier(.4, 0, .2, 1);
  --r: 20px;
  --rs: 14px;
  --rx: 8px;
  --nav-color: black;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* AMBIENT BACKGROUND ORBS */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}

.orb1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--green), transparent 20%);
  top: -200px;
  left: -150px;
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.orb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green), transparent 20%);
  bottom: -100px;
  right: -100px;
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.orb3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green), transparent 20%);
  top: 40%;
  left: 55%;
  animation: orbDrift3 26s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  to {
    transform: translate(80px, 120px) scale(1.1);
  }
}

@keyframes orbDrift2 {
  to {
    transform: translate(-60px, -80px) scale(1.15);
  }
}

@keyframes orbDrift3 {
  to {
    transform: translate(-120px, 60px) scale(.9);
  }
}

/* SCROLL PROGRESS */
#spb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--green), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 10001;
}

/* SCROLL PROGRESS */
#spb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--green), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 10001;
}

/* NAVBAR */
#nb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 64px;
  background: var(--bg);
  backdrop-filter: saturate(200%) blur(32px);
  -webkit-backdrop-filter: saturate(200%) blur(32px);
  border-bottom: 1px solid var(--gb);
  transition: background var(--T), box-shadow var(--T);
}

#nb.nb--scroll {
  background: var(--bg);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .45);
}

.nbi {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nlogo img {
  height: 30px;
  width: auto;
  display: block;
}

.nb-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nb-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--bg2);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--rx);
  transition: all .18s;
  position: relative;
}

.nb-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1.5px;
  background: var(--green);
  transition: transform .22s;
}

.nb-links a:hover,
.nb-links a.active {
  color: var(--bg2);
  background: var(--glass);
}

.nb-links a.active::after,
.nb-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nb-cta {
  background: linear-gradient(135deg, var(--green), var(--green));
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 24px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .22s;
  font-family: var(--sans);
  box-shadow: 0 0 20px rgba(34, 160, 80, .35);
  -webkit-tap-highlight-color: transparent;
}

.nb-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 30px rgba(52, 199, 89, .5);
  color: #fff;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bg2);
  border-radius: 2px;
  transition: all .3s;
}

.ham.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.ham.active span:nth-child(2) {
  opacity: 0;
}

.ham.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

#mob {
  height: 50vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: var(--bg);
  backdrop-filter: blur(30px);

  flex-direction: column;
  align-items: center;

  justify-content:center;
  gap: 20px;

  padding-top: 30px;
  padding-bottom: ;
  

  overflow-y: auto;
}

#mob.open {
  display: flex;
  animation: fadeIn .22s ease;
}

#mob a {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bg2);
  text-decoration: none;
  font-family: var(--sans);
  position: relative;
}

#mob a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1.5px;
  background: var(--green);
  transition: transform .22s;
}

#mob a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

#mob a:hover {
  color: var(--green);
}

#mob a.nb-cta {
  font-style: normal;
  font-size: .95rem;
  padding: 14px 38px;
  margin-top: 12px;

  background-color: #005A3C;
  color: #fff;

  border-radius: 999px;
}

/* GLASS CARD BASE */
.gc {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--gb);
  border-radius: var(--r);
  transition: all var(--T);
}

.gc:hover {
  background: var(--glass2);
  border-color: var(--gb2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 0 1px rgba(34, 160, 80, .15);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 32px 80px;
  overflow: hidden;
  z-index: 1;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass2);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gl2);
  border-radius: 30px;
  padding: 6px 18px 6px 8px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp .5s ease .1s both;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green3);
  animation: pulseDot 2.5s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  max-width: 840px;
  margin: 0 auto;
  animation: fadeInUp .65s ease .22s both;
  background: linear-gradient(135deg, var(--bg2), var(--bg2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent {
  font-style: normal;
  -webkit-text-fill-color: var(--green2);
}

.hero-rule {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green));
  margin: 24px auto;
  animation: expandRule .7s ease .72s both;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--bg2);
  font-weight: 300;
  line-height: 1.75;
  max-width: 570px;
  margin: 0 auto 48px;
  animation: fadeInUp .65s ease .42s both;
}

.typer-wrap {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-style: normal;
}

#typer {
  border-right: 2px solid var(--green);
  padding-right: 3px;
  animation: blinkCaret .75s step-end infinite;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .65s ease .58s both;
}

.btn-p {
  background: linear-gradient(135deg, var(--green), var(--green));
  color: #fff;
  border: none;
  padding: 15px 36px;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .24s;
  font-family: var(--sans);
  box-shadow: 0 4px 28px rgba(34, 160, 80, .4);
  -webkit-tap-highlight-color: transparent;
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(52, 199, 89, .55);
  color: #fff;
}

.btn-s {
  background: var(--glass2);
  color: var(--text);
  border: 1px solid var(--gb2);
  border-style: solid;
  border-radius: 0.5px;
  border-color: var(--green);
  padding: 15px 36px;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .24s;
  font-family: var(--sans);
  backdrop-filter: blur(16px);
  -webkit-tap-highlight-color: transparent;
}

.btn-s:hover {
  border-color: rgba(255, 255, 255, .4);
  background: var(--glass3);
  color: #fff;
  transform: translateY(-3px);
  background-color: var(--green);
  color: var(--bg);
}

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 72px;
  border-top: 1px solid var(--gb);
  padding-top: 48px;
  width: 100%;
  max-width: 800px;
  animation: fadeInUp .65s ease .75s both;
}

.hstat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.hstat+.hstat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--gb);
}

.hstat-n {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--bg2);
  line-height: 1;
  font-style: italic;
}

.hstat-l {
  font-size: .7rem;
  color: var(--bg2);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: 6px;
}

/* TRUST BAR */
.trust {
  position: relative;
  z-index: 1;
  background: rgba(128, 128, 128, 0.24);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
  padding: 20px 32px;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: none;
}

.trust-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bg2);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}
.trust-label:hover {
  color: var(--green);
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--gb2);
}

.trust-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
}

.trust-items a{
  text-decoration: none;
  color: var(--bg2);
  font-size: .84rem;
  transition: color .2s;
}
.trust-items a:hover {
  color: var(--green);
}

/* SECTIONS */
section {
  padding: 100px 32px;
  position: relative;
  z-index: 1;
}

.si {
  max-width: 1280px;
  margin: 0 auto;
}

.sec-tag {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.sec-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--bg2);
}

.sec-h strong {
  font-style: normal;
  color: var(--bg2);
}

.sec-sub {
  font-size: .98rem;
  color: var(--text2);
  line-height: 1.74;
  max-width: 520px;
  margin-top: 14px;
}

/* SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.svc-card {

  border: 1px solid var(--bg2);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green2), var(--green3), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(34, 160, 80, .08), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  border-radius: var(--r);
}

.svc-card:hover {
  background: var(--glass2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-ico {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform .35s;
}

.svc-card:hover .svc-ico {
  transform: scale(1.12) rotate(-4deg);
}

.svc-num {
  font-size: .63rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svc-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg2);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.svc-body {
  font-size: .83rem;
  color: var(--bg2);
  line-height: 1.65;
}

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.svc-tag {
  font-size: .63rem;
  background: var(--gl);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--gl2);
}

/* METRICS */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.metric {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

.metric::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--green2);
  transition: transform .4s;
  transform-origin: center;
}

.metric:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.metric-n {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--bg2);
  font-style: italic;
  line-height: 1;
}

.metric-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bg2);
  margin-top: 10px;
}

.metric-desc {
  font-size: .78rem;
  color: var(--bg2);
  margin-top: 6px;
  line-height: 1.5;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 60px;
}

.why-card {
  padding: 36px;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

.why-card.hero-card {
  grid-column: 1 / -1;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

.why-ico-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--rx);
  background: var(--gl);
  border: 1px solid var(--gl2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: transform .3s, background .3s;
}

.gc:hover .why-ico-wrap {
  transform: scale(1.08) rotate(-4deg);
  background: var(--gl2);
}

.why-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.why-body {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.72;
}

/* INDUSTRIES */
.ind-scroll {
  width: 100%;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin-top: 48px;
  padding-bottom: 12px;
  padding-top: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-y: hidden;
}

.ind-scroll::-webkit-scrollbar {
  display: flex;
}

.ind-chip {
  flex-shrink: 0;
  min-width: 155px;
  padding: 20px 22px;
  scroll-snap-align: start;
  cursor: default;
  transition: all .28s;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

.ind-chip:hover .ind-name {
  color: var(--green);
}

.ind-emo {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
  transition: transform .3s;
}

.ind-name {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}

.ind-sub {
  font-size: .71rem;
  color: var(--bg2);
  margin-top: 3px;
}

/* PROCESS */
.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.proc-line {
  position: absolute;
  top: 27px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--gb);
  z-index: 0;
  overflow: hidden;
}

.proc-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green2), var(--green3));
  animation: fillLine 1.8s ease 1s forwards;
}

.proc-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.proc-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text3);
  transition: all .45s;
}

.proc-step.vis .proc-dot {
  border-color: var(--green2);
  background: var(--gl);
  color: var(--green3);
  box-shadow: 0 0 0 6px rgba(34, 160, 80, .1), 0 0 30px rgba(34, 160, 80, .2);
}

.proc-num {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green2);
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity .4s .2s;
}

.proc-step.vis .proc-num {
  opacity: 1;
}

.proc-title {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .3s, transform .4s .3s;
}

.proc-step.vis .proc-title {
  opacity: 1;
  transform: none;
}

.proc-desc {
  font-size: .74rem;
  color: var(--text2);
  line-height: 1.55;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .42s, transform .4s .42s;
}

.proc-step.vis .proc-desc {
  opacity: 1;
  transform: none;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.testi-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--green2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.testi-card:hover::before {
  transform: scaleX(1);
}

.testi-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gl2);
  line-height: .8;
  font-style: italic;
  margin-bottom: 14px;
}

.testi-quote {
  font-size: .87rem;
  color: var(--text2);
  line-height: 1.74;
  font-style: italic;
  margin-bottom: 22px;
}

.testi-line {
  width: 28px;
  height: 1.5px;
  background: var(--green2);
  margin-bottom: 14px;
  transition: width .3s;
}

.testi-card:hover .testi-line {
  width: 48px;
}

.testi-name {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
}

.testi-role {
  font-size: .73rem;
  color: var(--bg2);
  margin-top: 2px;
}

/* CTA BAND */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  overflow: hidden;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: -1;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--bg2);
  font-style: italic;
  line-height: 1.2;
  font-weight: 400;
}

.cta-title strong {
  font-style: normal;
  color: var(--bg2);
}

.cta-sub {
  font-size: .92rem;
  color: var(--text2);
  margin-top: 12px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 64px;
}

.ci-head {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--bg2);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.ci-desc {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.74;
  margin-bottom: 32px;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  transition: transform .2s;
}

.ci-row:hover {
  transform: translateX(4px);
}

.ci-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--rx);
  background: var(--gl);
  border: 1px solid var(--gl2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s;
}

.ci-row:hover .ci-ico {
  background: var(--gl2);
}

.ci-val {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.55;
}

.ci-val a {
  color: var(--green);
  text-decoration: none;
  transition: color .2s;
}

.ci-val a:hover {
  color: var(--bg2);
}

.cf-wrap {
  padding: 40px;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
  min-height: ;
}

.cf-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text2);
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}

.cf-input {
  width: 100%;
  border: 1px solid var(--bg2);
  border-radius: var(--rx);
  padding: 15px 15px;
  color: var(--bg2);
  font-family: var(--sans);
  font-size: 16px;
  transition: all .2s;
  -webkit-appearance: none;
  outline: none;
  -webkit-tap-highlight-color: var(--bg2);
  margin-bottom: 18px;
}


.cf-input::placeholder {
  color: rgba(167, 167, 167, 0.568);
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg);
  padding: 15px;
  border-radius: var(--rx);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

select.cf-input {
  padding: 13px;
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2);
}

select.cf-input option {
  background: var(--bg2);
  color: var(--bg);
}

textarea.cf-input {
  resize: vertical;
  min-height: 102px;
}

.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green));
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: var(--rx);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .22s;
  box-shadow: 0 4px 24px rgba(34, 160, 80, .35);
  margin-top: 4px;
  -webkit-tap-highlight-color: transparent;
}

.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(52, 199, 89, .5);
}

.cf-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 20px;
  gap: 12px;
}

.cf-ok-ico {
  font-size: 3rem;
}

.cf-ok h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--bg);
}

.cf-ok p {
  font-size: .87rem;
  color: var(--text2);
  line-height: 1.7;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--gb);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--bg2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
  transition: color .18s;
}

.faq-btn:hover {
  color: var(--bg2);
}

.faq-arr {
  font-size: .7rem;
  color: var(--bg2);
  transition: transform .28s, background .2s;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.open .faq-arr {
  transform: rotate(180deg);
  background: var(--green2);
  border-color: var(--green2);
  color: #fff;
}

.faq-body {
  font-size: .87rem;
  color: var(--text2);
  line-height: 1.74;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-body {
  padding-bottom: 18px;
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gb);
  padding: 72px 32px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gb);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-size: .82rem;
  color: var(--text3);
  line-height: 1.72;
  max-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col h4 {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text3);
  font-weight: 600;
  margin-bottom: 16px;
  margin-left: 32px;
}

.fl-col ul {
  list-style: none;
}

.fl-col ul li {
  margin-bottom: 10px;
}

.fl-col ul li a {
  font-size: .82rem;
  color: var(--text3);
  text-decoration: none;
  transition: color .18s;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.fl-col ul li a ::before{
  width: 10px;
  margin-right: 6px;
  color: var(--bg);
}

.fl-col ul li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--green2);
  transition: width .22s;
  margin-right: 0;
}


.fl-col ul li a:hover::before {
  width: 10px;
  margin-right: 6px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .74rem;
  color: var(--text3);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  font-size: .65rem;
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gb);
  color: var(--text3);
  padding: 3px 10px;
  border-radius: 4px;
  transition: all .2s;
  cursor: pointer;
}

.footer-badge:hover {
  color: var(--bg);
  border-color: var(--gb2);
}

/* FLOAT WA */
.fwa {
  position: fixed;
  bottom: calc(70px + env(safe-area-inset-bottom));
  right: 24px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
  transition: all .24s;
  -webkit-tap-highlight-color: transparent;
}

.fwa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: waRipple 2.2s infinite;
}

.fwa:hover {
  transform: scale(1.12);
}

/* REVEAL */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.rev.vis {
  opacity: 1;
  transform: none;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, .5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(52, 199, 89, 0);
  }
}

@keyframes expandRule {
  from {
    width: 0;
  }

  to {
    width: 60px;
  }
}

@keyframes blinkCaret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--green);
  }
}

@keyframes fillLine {
  to {
    width: 100%;
  }
}

@keyframes waRipple {
  0% {
    transform: scale(1);
    opacity: .35;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .15);
  border-radius: 3px;
}

/* RESPONSIVE */
@media (max-width: 1099px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .proc-line {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;


  }
}

@media (max-width: 991px) {

  .nb-links,
  .nb-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card.hero-card {
    grid-column: unset;
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  section {
    padding: 72px 20px;
  }

  .hero {
    padding: 90px 20px 60px;
  }

  .nbi {
    padding: 0 20px;
  }

  .ham {
    display: flex;
    color: var(--text2);
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-wrap {
    padding: 28px 20px;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    gap: 36px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .hstats {
    gap: 0;
  }

  .hstat {
    min-width: 130px;
  }
}

@media (max-width: 420px) {
  .hero-3d-wrap{
    display: none;
  } 
  #nb{
    height: 40px;
  }
  .nlogo img{
    height:10px;
    width: 10px;
  }
  .btn-p{
    box-shadow: 0 0px 0px rgba(255, 255, 255, 0);
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hstat{
    padding:20px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .proc-steps {
    grid-template-columns: 1fr;
  }
}

/* ── 3D HERO BACKGROUND ── */
.hero-3d-wrap {
  color: var(--bg2);
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-3d-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* ── TECH STACK SECTION ── */
.tech-sec {
  padding: 80px 32px;
  position: relative;
  z-index: 1;
}

.tech-globe-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--gb);
  background: rgba(6, 13, 24, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  margin-top: 48px;
  cursor: grab;
}

.tech-globe-wrap:active {
  cursor: grabbing;
}

.tech-globe-wrap canvas {
  display: block;
}

.tech-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .06em;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--bg2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 4px 12px 4px 8px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text2);
  transition: all .22s;
  white-space: nowrap;
}

.tech-pill:hover {
  background: var(--glass2);
  border-color: var(--gb2);
  color: var(--text);
  border-style: solid;
  border-width: 0.5px;
  border-color: var(--bg2)
}

.tp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media(max-width:639px) {
  .tech-globe-wrap {
    height: 340px;
  }

  .tech-sec {
    padding: 60px 20px;
  }
}


/* ── STICKY MOBILE CTA ── */
.mob-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  align-items: center;
  gap: 10px;
  transform: translateY(0);
  transition: transform .3s ease;
}


.mob-cta-bar.hide {
  transform: translateY(120%);
}

.mob-cta-btn {
  flex: 1;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  padding: 12px 10px;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mob-cta-primary {
  background: linear-gradient(135deg, var(--green), var(--green));
  color: #fff;
}

.mob-cta-wa {
  background: var(--bg);
  color: #ffffff;
  flex: 0 0 52px;
  font-size: 1.3rem;
}

/* ── HOVER-ONLY STATES ── */
@media(hover:hover) {
  .svc-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(34, 160, 80, .25);
  }

  .gc:hover {
    transform: translateY(-3px);
  }
}

/* PREVENT hover stuck on touch */
@media(hover:none) {
  .svc-card:hover {
    transform: none;
  }

  .gc:hover {
    transform: none;
  }
}

/* ── TOUCH-ACTION on all interactive elements ── */
.btn-p,
.btn-s,
.svc-card,
.fwa,
.nb-link,
.ham {
  touch-action: manipulation;
}

/* ── EXTRA BREAKPOINTS ── */
@media(max-width:768px) {
  .hero-title {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
  }

  .sec-h {
    font-size: clamp(1.7rem, 4.5vw, 2.2rem);
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .tech-globe-wrap,
  #techGlobeWrap {
    height: 320px !important;
  }

  section {
    padding: 72px 24px !important;
  }
}

@media(max-width:640px) {
  .mob-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-sub {
    font-size: .95rem;
  }

  .hero-pill {
    font-size: .68rem;
    padding: 5px 14px 5px 8px;
  }

  .svc-grid {
    grid-template-columns: 1fr !important;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  section {
    padding: 60px 20px !important;
  }

  .si {
    padding: 0 !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .proc-grid {
    grid-template-columns: 1fr !important;
  }

  .testi-grid {
    grid-template-columns: 1fr !important;
  }

  .ind-track {
    gap: 12px;
  }

  .tech-globe-wrap,
  #techGlobeWrap {
    height: 280px !important;
  }

  #techGlobeWrap .tech-hint {
    font-size: .62rem;
  }

  .cta-band {
    padding: 48px 20px !important;
  }

  .cf-row {
    grid-template-columns: 1fr !important;
  }

  .cf-input {
    font-size: 16px;
  }
}

@media(max-width:420px) {
  .hero-title {
    font-size: 1.9rem;
  }
}
  .metrics-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .svc-grid {
    grid-template-columns: 1fr !important;
  }

  .tech-legend {
    display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  }

  .tech-pill {
    width: 100px;
    font-size: .67rem;
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  
}

@media(max-width:360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  section {
    padding: 52px 14px !important;
  }
}