:root {
  --bg: #f7f9fc;
  --bg2: #edf1f9;
  --white: #ffffff;
  --blue: #1665d8;
  --blue-lt: #3b82f6;
  --blue-dk: #0d4eac;
  --green: #13b56a;
  --green-lt: #e6f9f1;
  --green-dk: #0e9158;
  --amber: #f59e0b;
  --text: #0c1a2e;
  --text2: #2d4260;
  --muted: #64748b;
  --border: rgba(22, 101, 216, 0.13);
  --shadow-s:
    0 1px 4px rgba(22, 101, 216, 0.08), 0 2px 12px rgba(22, 101, 216, 0.05);
  --shadow-m:
    0 4px 24px rgba(22, 101, 216, 0.11), 0 1px 4px rgba(22, 101, 216, 0.06);
  --shadow-l:
    0 12px 48px rgba(22, 101, 216, 0.14), 0 2px 8px rgba(22, 101, 216, 0.07);
  --r: 10px;
  --font: "Bricolage Grotesque", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "JetBrains Mono", monospace;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

#cv {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.13;
  pointer-events: none;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sec {
  position: relative;
  z-index: 1;
}

/* PILL */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dk);
  background: var(--green-lt);
  border: 1px solid rgba(19, 181, 106, 0.25);
  padding: 0.28rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}
.pdot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: bdot 2s infinite;
}
@keyframes bdot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* GRAD TEXT */
.gt {
  background: linear-gradient(
    130deg,
    var(--blue-dk) 0%,
    var(--blue-lt) 55%,
    var(--green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.22s;
  border: none;
}
.bb {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue-lt));
  color: #fff;
}
.bb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 101, 216, 0.35);
}
.bg {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.bg:hover {
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-s);
  transform: translateY(-1px);
}
.bgreen {
  background: linear-gradient(135deg, var(--green-dk), var(--green));
  color: #fff;
}
.bw {
  background: #fff;
  color: var(--blue-dk);
  font-weight: 700;
}
.bw:hover {
  background: #f0f7ff;
}
.bow {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.bow:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* SECTION HEADER */
.sh {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sh h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 0.9rem;
  color: var(--text);
}
.sh p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FADE UP */
.fu {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fu.on {
  opacity: 1;
  transform: none;
}

/* ===================== NAVBAR ===================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 0;
  background: rgba(247, 249, 252, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition:
    padding 0.3s,
    box-shadow 0.3s;
}
#nav.stuck {
  padding: 0.65rem 0;
  box-shadow: 0 2px 20px rgba(22, 101, 216, 0.1);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo img {
  width: 270px;
  /* height: 40px; */
  object-fit: contain;
}
.logo-name {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.logo-name span {
  color: var(--green);
}
.nl {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nl a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s;
  position: relative;
}
.nl a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-lt);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nl a:hover {
  color: var(--blue);
}
.nl a:hover::after {
  transform: scaleX(1);
}
.nbtns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hbg.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hbg.open span:nth-child(2) {
  opacity: 0;
}
.hbg.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
#mob {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(247, 249, 252, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  z-index: 199;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 32px rgba(22, 101, 216, 0.1);
  animation: sld 0.2s ease;
}
@keyframes sld {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#mob.open {
  display: flex;
}
#mob a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text2);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
#mob a:hover {
  color: var(--blue);
}
#mob .btn {
  margin-top: 1.2rem;
  justify-content: center;
}
@media (max-width: 920px) {
  .nl,
  .nbtns {
    display: none;
  }
  .hbg {
    display: flex;
  }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: linear-gradient(160deg, #f0f5ff 0%, #f7f9fc 55%, #ebf9f2 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(22, 101, 216, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(19, 181, 106, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.h-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.h-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.h-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.h-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
  max-width: 430px;
}
.t-ava {
  display: flex;
  margin-right: 0.25rem;
}
.t-ava span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  margin-left: -8px;
}
.t-ava span:first-child {
  margin-left: 0;
}
.t-txt {
  font-size: 0.8rem;
  color: var(--muted);
}
.t-txt strong {
  color: var(--text);
  display: block;
  font-size: 0.85rem;
}

/* Hero card */
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-l);
  overflow: hidden;
  animation: flt 7s ease-in-out infinite;
}
@keyframes flt {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}
.hct {
  padding: 0.9rem 1.2rem;
  background: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hcd span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}
.hcd .r {
  background: #ff5f57;
}
.hcd .y {
  background: #ffbd2e;
}
.hcd .g {
  background: #28c840;
}
.hcl {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 0.5rem;
}
.hcb {
  padding: 1.25rem;
}
.hcsrc {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: var(--bg2);
  border-radius: 6px;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue);
}
.srcdot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: bdot 1.5s infinite;
}
.hcrow {
  display: grid;
  grid-template-columns: 2fr 1fr 0.8fr 0.8fr;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--bg2);
  font-size: 0.78rem;
  align-items: center;
}
.hcrow.hd {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hcrow:last-child {
  border-bottom: none;
}
.pu {
  color: var(--green-dk);
  font-weight: 700;
}
.pd {
  color: #ef4444;
  font-weight: 700;
}
.bl {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--green-lt);
  color: var(--green-dk);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: var(--mono);
}
.bw2 {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: var(--mono);
}
.hcft {
  margin-top: 1rem;
  padding: 0.75rem;
  background: linear-gradient(
    90deg,
    rgba(22, 101, 216, 0.06),
    rgba(19, 181, 106, 0.05)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}
.hcft strong {
  color: var(--green-dk);
  font-size: 0.82rem;
}

/* ===================== MARQUEE ===================== */
.mqw {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mqt {
  display: flex;
  width: max-content;
  animation: mq 35s linear infinite;
}
.mqt:hover {
  animation-play-state: paused;
}
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mqi {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-family: var(--mono);
  font-size: 0.71rem;
  color: var(--muted);
  white-space: nowrap;
}
.mqi .ic {
  font-size: 1rem;
}
.mqs {
  width: 4px;
  height: 4px;
  background: var(--blue-lt);
  border-radius: 50%;
  opacity: 0.5;
}

/* ===================== SERVICES ===================== */
.services {
  padding: 6rem 0;
  background: var(--bg);
}
.svcg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  cursor: default;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.sc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
}
.sc:hover::after {
  transform: scaleX(1);
}
.sic {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.ib {
  background: rgba(22, 101, 216, 0.1);
}
.ig {
  background: rgba(19, 181, 106, 0.1);
}
.ia {
  background: rgba(245, 158, 11, 0.1);
}
.sc h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.sc p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.stag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  background: rgba(22, 101, 216, 0.07);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

/* ===================== INDUSTRIES ===================== */
.industries {
  padding: 6rem 0;
  background: var(--bg2);
}
.indg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ic2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.25s;
  box-shadow: var(--shadow-s);
  cursor: default;
}
.ic2:hover {
  border-color: var(--blue-lt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
}
.iemoji {
  font-size: 1.8rem;
}
.ic2 h4 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.ic2 p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}
.ibadge {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dk);
  background: var(--green-lt);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

/* ===================== PROCESS ===================== */
.process {
  padding: 6rem 0;
  background: var(--white);
}
.procg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.procg::before {
  content: "";
  position: absolute;
  top: 44px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt), var(--green));
  z-index: 0;
}
.pi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.pnum {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dk), var(--blue-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow:
    0 0 0 5px var(--white),
    0 0 0 6px rgba(22, 101, 216, 0.15),
    0 6px 20px rgba(22, 101, 216, 0.25);
  position: relative;
  z-index: 2;
  transition: transform 0.25s;
}
.pi:hover .pnum {
  transform: scale(1.12);
}
.picon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.pi h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pi p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.pdls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.pdl {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--blue-dk);
  background: rgba(22, 101, 216, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pdl.g {
  color: var(--green-dk);
  background: var(--green-lt);
}
.proc-cta {
  margin-top: 3rem;
  background: linear-gradient(
    135deg,
    rgba(22, 101, 216, 0.06),
    rgba(19, 181, 106, 0.05)
  );
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.proc-cta h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.proc-cta p {
  font-size: 0.87rem;
  color: var(--muted);
}
.proc-cta-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===================== DATA PRODUCTS ===================== */
.products {
  padding: 6rem 0;
  background: var(--bg);
}
.prodg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.pc {
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}
.pc.api {
  background: linear-gradient(145deg, #0d4eac, #1665d8);
  color: #fff;
}
.pc.dash {
  background: linear-gradient(145deg, #0e9158, #13b56a);
  color: #fff;
}
.pc.data {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-m);
}
.pc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
}
.piw {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.pc.data .piw {
  background: rgba(22, 101, 216, 0.1);
}
.pc h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pc.data h3 {
  color: var(--text);
}
.pc p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.pc.data p {
  color: var(--muted);
  opacity: 1;
}
.pfl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pf {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  opacity: 0.9;
}
.pc.data .pf {
  color: var(--text2);
  opacity: 1;
}
.pbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}
.pbtn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.pc.data .pbtn {
  background: var(--blue);
  color: #fff;
  border: none;
}
.pc.data .pbtn:hover {
  background: var(--blue-dk);
}
.pglow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

/* ===================== WHY US ===================== */
.whyus {
  padding: 6rem 0;
  background: var(--bg2);
}
.wgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.wl h2 {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 0.9rem;
  color: var(--text);
}
.wl p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.wstats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ws {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-s);
  transition: all 0.25s;
}
.ws:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-2px);
}
.wsn {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.wsl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.wr {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wf {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
  transition: all 0.25s;
}
.wf:hover {
  box-shadow: var(--shadow-m);
  border-color: rgba(22, 101, 216, 0.2);
}
.wfic {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wfic.b {
  background: rgba(22, 101, 216, 0.1);
}
.wfic.g {
  background: rgba(19, 181, 106, 0.1);
}
.wf h4 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.wf p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ===================== TESTIMONIALS ===================== */
.testi {
  padding: 6rem 0;
  background: var(--white);
}
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: all 0.25s;
  box-shadow: var(--shadow-s);
}
.tc:hover {
  border-color: rgba(22, 101, 216, 0.25);
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}
.tcstars {
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}
.tcq {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.72;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.tca {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tcav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
}
.tcn {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.tcr {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ===================== CTA BAND ===================== */
.cta-band {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    130deg,
    var(--blue-dk) 0%,
    var(--blue) 50%,
    #1a8f60 100%
  );
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.ctai {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ctai .pill {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.ctai .pdot {
  background: #fff;
}
.ctai h2 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 1rem;
}
.ctai p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-acts {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.cti {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--text);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}
.ftg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.ftb p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 1rem 0 1.5rem;
  max-width: 250px;
  line-height: 1.7;
}
.ftb .logo-name {
  color: #fff;
}
.ftsoc {
  display: flex;
  gap: 0.6rem;
}
.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.fsoc:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
  color: #fff;
}
.ftcol h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.1rem;
}
.ftcol a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.65rem;
  transition: color 0.18s;
}
.ftcol a:hover {
  color: var(--green);
}
.ftbot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.ftmono {
  font-family: var(--mono);
  font-size: 0.68rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .svcg {
    grid-template-columns: repeat(2, 1fr);
  }
  .indg {
    grid-template-columns: repeat(3, 1fr);
  }
  .prodg {
    grid-template-columns: 1fr 1fr;
  }
  .ftg {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .hgrid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .procg {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .procg::before {
    display: none;
  }
  .wgrid {
    grid-template-columns: 1fr;
  }
  .tg {
    grid-template-columns: 1fr;
  }
  .indg {
    grid-template-columns: repeat(2, 1fr);
  }
  .prodg {
    grid-template-columns: 1fr;
  }
  .ftg {
    grid-template-columns: 1fr;
  }
  .proc-cta {
    flex-direction: column;
    text-align: center;
  }
  .wstats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .svcg {
    grid-template-columns: 1fr;
  }
  .indg {
    grid-template-columns: 1fr 1fr;
  }
  .procg {
    grid-template-columns: 1fr;
  }
  .h-actions {
    flex-direction: column;
  }
}

/* Header css */

:root {
  --bg: #f5f8ff;
  --bg2: #eef2fb;
  --bg3: #e4ecf7;
  --blue: #1a7de0;
  --blue2: #2a8ef0;
  --blue3: #0d5fba;
  --green: #1db954;
  --green2: #17a348;
  --text: #0f1c2e;
  --text2: #2d3f55;
  --muted: #6b7f99;
  --border: rgba(26, 125, 224, 0.15);
  --card: #ffffff;
  --shadow: 0 2px 16px rgba(26, 125, 224, 0.1);
  --font: "Outfit", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== CANVAS BACKGROUND ===== */
#network-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(29, 185, 84, 0.08);
  border: 1px solid rgba(29, 185, 84, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.grad-text {
  background: linear-gradient(135deg, var(--blue2) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue2) 100%);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 125, 224, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--blue2);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--blue2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: var(--blue2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 125, 224, 0.25);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mds-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(245, 248, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(26, 125, 224, 0.07);
  transition:
    padding 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
#mds-nav.scrolled {
  padding: 0.8rem 0;
  background: rgba(245, 248, 255, 0.98);
  box-shadow: 0 2px 20px rgba(26, 125, 224, 0.12);
}
.nav-inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img {
  /* width: 42px; */
  height: 50px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.nav-logo-text span {
  color: var(--green);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue2);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover {
  color: var(--blue2);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-links a.current-menu-item {
  color: var(--blue2);
  font-weight: 600;
}
.nav-links a.current-menu-item::after {
  transform: scaleX(1);
}

/* Desktop CTA buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta .btn-outline {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}
.nav-cta .btn-primary {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
#mds-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(245, 248, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 125, 224, 0.1);
  flex-direction: column;
  gap: 0;
  animation: slideDown 0.2s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#mds-mobile-menu.open {
  display: flex;
}
#mds-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text2);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
#mds-mobile-menu a:hover {
  color: var(--blue2);
}
#mds-mobile-menu a:last-child {
  border-bottom: none;
}
#mds-mobile-menu .btn-primary {
  margin-top: 1.2rem;
  text-align: center;
  justify-content: center;
}

/* ===== RESPONSIVE — Navbar ===== */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================================================
   PAGE-LEVEL SPACING (push content below fixed nav)
   ============================================================ */
.page-wrap {
  padding-top: 72px;
}

/* Mega Menu */
.mega-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.mega-menu a {
  text-decoration: none;
  color: var(--text2);
  font-weight: 500;
  transition: 0.3s;
}
.mega-menu a:hover {
  color: var(--blue);
}
.has-mega {
  position: static;
}
.mega-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  background: var(--card);
  box-shadow: var(--shadow);
  border-top: 2px solid var(--blue);
  padding: 40px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.has-mega:hover .mega-content {
  display: grid;
}
.mega-col h4 {
  color: var(--blue);
  margin-top: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.mega-col ul {
  list-style: none;
  padding: 0;
}
.mega-col li {
  padding: 5px 0;
  font-size: 0.95rem;
}

.logo-marque-image {
  height: 50px;
  width: 100px;
}
.mqs {
  display: none;
}

/* contact-us page */
/* --- Contact Page Layout --- */
.contact-page-wrapper {
  padding: 100px 0;
  background-color: var(--bg);
  min-height: 80vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* --- Left Column Styling --- */
.badge {
  background: var(--bg3);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.display-h1 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.text-blue {
  color: var(--blue);
}

.description {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg2);
  padding: 20px;
  border-radius: 12px;
}

.info-item .icon {
  font-size: 1.5rem;
}
.info-item h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}
.info-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-tags span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* --- Form Styling --- */
.contact-form-container {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.mds-form .form-group {
  margin-bottom: 20px;
}

.mds-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
}

.mds-form input,
.mds-form select,
.mds-form textarea {
  width: 100%;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.mds-form input:focus,
.mds-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 125, 224, 0.1);
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--blue3);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .display-h1 {
    font-size: 2.5rem;
  }
}

/* Web scraping services page */
/* --- Service Page Styles --- */
.service-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.description-large {
  max-width: 700px;
  margin: 20px auto 40px;
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-outline {
  padding: 16px 32px;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--bg3);
}

/* --- Capabilities --- */
.capabilities-section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.cap-card {
  background: var(--card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-10px);
}
.cap-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.cap-card h3 {
  color: var(--text);
  margin-bottom: 15px;
}
.cap-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Tech Specs Section --- */
.tech-specs {
  padding: 60px 0 100px;
}
.tech-box {
  background: var(--text); /* Dark background for contrast */
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tech-content h2 {
  color: #fff;
  font-size: 2.2rem;
}
.text-green {
  color: var(--green);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.spec-list li {
  color: var(--bg3);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}
.spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.tech-code {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
  font-family: var(--mono);
  color: var(--green);
  font-size: 0.9rem;
  overflow-x: auto;
}

.industries-section {
  padding: 80px 0;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-list li {
  background: var(--bg2);
  color: var(--blue);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.spec-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.spec-item {
  color: #fff;
  font-size: 0.95rem;
}

.code-header {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Ensure the hero spans nicely */
.service-hero .container {
  padding: 60px 20px;
  border-bottom: 1px solid var(--border);
}

.cap-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.cap-card p {
  color: var(--text2);
  line-height: 1.6;
}

/* ========================================= */
/* PRODUCT EXTRACTION — SERVICE PAGE STYLES */
/* Uses your existing :root theme variables */
/* Fully Responsive */
/* ========================================= */

/* HERO */
.svc-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg), var(--bg2));
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-hero-left h1 {
  font-family: var(--font);
  font-size: 44px;
  line-height: 1.2;
  margin: 20px 0;
  color: var(--text);
}

.svc-sub {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 560px;
}

.svc-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.svc-hero.sec .svc-actions {
  justify-content: left;
}
.svc-mini-trust {
  margin-top: 25px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* PREVIEW CARD */
.svc-preview-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-m);
  border: 1px solid var(--border);
  overflow: hidden;
}

.sp-head {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dots span:nth-child(1) {
  background: #ef4444;
}
.dots span:nth-child(2) {
  background: #f59e0b;
}
.dots span:nth-child(3) {
  background: #22c55e;
}

.sp-title {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-left: 12px;
}

.sp-body {
  padding: 18px;
  font-size: 14px;
}

.sp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.sp-row-h {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}

.sp-foot {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--green);
  background: var(--green-lt);
  font-weight: 500;
}

/* SECTIONS */
.svc-section {
  padding: 100px 0;
}

.svc-alt {
  padding: 100px 0;
  background: var(--bg2);
}

.svc-head {
  margin-bottom: 60px;
}

.svc-head.center {
  text-align: center;
}

.svc-head h2 {
  font-family: var(--font);
  font-size: 32px;
  margin: 15px 0;
}

.svc-head p {
  color: var(--muted);
  max-width: 600px;
}

/* GRID LAYOUTS */
.svc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.svc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARDS */
.svc-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
}

.svc-card h3 {
  font-family: var(--font);
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--blue);
}

.svc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-card li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text2);
}

.svc-card-lg {
  background: var(--white);
  padding: 35px;
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
  border: 1px solid var(--border);
  text-align: left;
}

.svc-card-lg h3 {
  font-family: var(--font);
  margin: 15px 0;
}

.svc-icon {
  font-size: 28px;
}

/* PROCESS STEPS */
.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.svc-step {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}

.step-num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
}

.svc-step h4 {
  font-family: var(--font);
  margin: 10px 0;
}

.svc-step p {
  font-size: 14px;
  color: var(--text2);
}

/* CTA */
.svc-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: var(--white);
  text-align: center;
}

.svc-cta h2 {
  font-family: var(--font);
  font-size: 32px;
  margin: 20px 0;
}

.svc-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .svc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 900px) {
  .svc-hero-left h1 {
    font-size: 36px;
  }

  .svc-grid-3 {
    grid-template-columns: 1fr;
  }

  .svc-grid-4 {
    grid-template-columns: 1fr;
  }

  .svc-steps {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .svc-hero {
    padding: 70px 0;
  }

  .svc-hero-left h1 {
    font-size: 30px;
  }

  .svc-sub {
    font-size: 15px;
  }

  .svc-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sp-row span {
    font-size: 13px;
  }

  .svc-section,
  .svc-alt,
  .svc-cta {
    padding: 70px 0;
  }
}

/* preview card */
.svc-preview-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 30, 60, 0.05);
  border: 1px solid #e5ecf3;
  overflow: hidden;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.9rem;
}
.sp-head {
  background: #f0f4fa;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #dde5ef;
}
.dots {
  display: flex;
  gap: 6px;
}
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #b6c6d8;
}
.dots span:first-child {
  background: #f87171;
}
.dots span:nth-child(2) {
  background: #fbbf24;
}
.dots span:last-child {
  background: #4ade80;
}
.sp-title {
  color: #1f2a3a;
  font-weight: 500;
}
.sp-body {
  padding: 1.5rem;
}
.sp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #edf2f7;
}
.sp-row-h {
  color: #64748b;
  font-weight: 500;
  border-bottom: 1px solid #d4dfeb;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}
.pu {
  color: #0f3b5e;
  font-weight: 600;
}
.pd {
  color: #1b6b5e;
  font-weight: 600;
}
.bl {
  background: #e0f2fe;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0369a1;
}
.bw2 {
  background: #e9eaed;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #2d3a4f;
}
.sp-foot {
  background: #f8fafd;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid #e2eaf2;
  font-size: 0.8rem;
  color: #4a5d73;
}

/* section headings */
.svc-head {
  margin-bottom: 3.5rem;
}
.svc-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* cards grid — extraction scope (8 items) */
.svc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.svc-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  border: 1px solid #e9eef4;
  box-shadow: 0 8px 20px -12px rgba(0, 20, 40, 0.12);
  transition: 0.2s;
}
.svc-card:hover {
  border-color: #c0d2e8;
  box-shadow: 0 12px 24px -12px #2c7be033;
}
.svc-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #0c1729;
}
.svc-card ul {
  list-style: none;
}
.svc-card li {
  padding: 0.4rem 0;
  color: #2d3b50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-card li::before {
  content: "▹";
  color: #2c7be0;
  font-weight: 600;
}

/* use cases grid — 6 items + view more button */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.svc-card-lg {
  background: white;
  border-radius: 28px;
  padding: 2.2rem 2rem;
  border: 1px solid #e2eaf2;
  box-shadow: 0 8px 18px -12px rgba(28, 40, 60, 0.1);
  transition: 0.2s;
}
.svc-card-lg:hover {
  border-color: #b2cbe8;
  box-shadow: 0 20px 30px -12px rgba(44, 123, 224, 0.15);
}
.svc-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}
.svc-card-lg h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.svc-card-lg p {
  color: #374a62;
}

/* unique process — timeline / visual flow */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.process-step {
  flex: 1 1 200px;
  background: #ffffffd0;
  backdrop-filter: blur(4px);
  border-radius: 32px;
  padding: 2rem 1.5rem 1.8rem 1.5rem;
  border: 1px solid #e2ebf5;
  box-shadow: 0 12px 28px -20px #142b44;
  position: relative;
  transition: all 0.2s;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: #9fbee0;
}
.step-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.step-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #dce6f2;
  line-height: 1;
}
.step-icon {
  background: #ecf3fc;
  border-radius: 60px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1f4a8a;
}
.process-step h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: #3d506b;
  font-size: 0.95rem;
}
.step-detail {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #2c7be0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.step-detail span {
  font-size: 1.2rem;
}

/* alt section background */
.svc-alt {
  background: #f2f6fd;
}

/* Navigation Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Base Link Style */
.nav-links a {
    text-decoration: none;
    color: var(--text2);
    font-family: var(--font);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--blue);
}

/* Dropdown Parent */
.menu-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* The Dropdown Menu (Hidden by default) */
.dropdown-pane {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    display: none; /* Hide */
    z-index: 100;
    margin-top: 10px;
}

/* Show Dropdown on Hover */
.menu-item-dropdown:hover .dropdown-pane {
    display: block;
}

/* Links inside the Dropdown */
.dropdown-pane a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-pane a:hover {
    background-color: var(--bg2);
    color: var(--blue);
}
/* The "Bridge" Fix */
.menu-item-dropdown::after {
    content: "";
    position: absolute;
    top: 100%; /* Starts at the bottom of the link */
    left: 0;
    width: 100%;
    height: 20px; /* This height must be equal to or greater than your gap/margin-top */
    display: block;
    z-index: 1;
}

/* Ensure the dropdown pane sits above the bridge but doesn't lose the hover */
.dropdown-pane {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px; /* This is the visual gap */
    display: none;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 100;
}

/* Keep display block when hovering either the item or the bridge */
.menu-item-dropdown:hover .dropdown-pane {
    display: block;
}