/* ============================================================
   INNOVA SOLUTIONS — SHARED DESIGN SYSTEM
   One file, used by every page. Edit here, it updates everywhere.
   ============================================================ */

:root {
  /* --primary: #2563EB; */
  --primary: #459475;
  --secondary: #06B6D4;
  --accent: #7C3AED;
  --dark: #081120;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --grad: linear-gradient(120deg, var(--primary), var(--secondary));
  /* --grad2: linear-gradient(135deg, var(--primary), var(--accent)); */
  --grad2: linear-gradient(135deg, var(--primary));
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

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




html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Prevent any element from forcing horizontal scroll */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-bg {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 auto;
}

.grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37, 99, 235, .08);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.eyebrow.on-dark {
  color: #8fd3ff;
  background: rgba(255, 255, 255, .08);
}

.eyebrow.on-dark .dot {
  background: #8fd3ff;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  width: fit-content;
}

/* ---------- Sections & headings ---------- */
section {
  padding: 100px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin: 0 0 40px;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: .2s ease;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--grad2);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, .5);

}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(37, 99, 235, .6);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline.on-dark {
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

.btn-outline.on-dark:hover {
  border-color: #fff;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 12.5px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Nav ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: .3s ease;
  background: transparent;
}

nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, .08);
}

nav.solid {
  padding: 12px 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mb {
  display: none;
}

.btn .fa-whatsapp {
  margin-right: 1px;
  font-size: 28px;
}

.whatsapp-heartbeat {
  display: inline-block;
  animation: whatsappHeartbeat 4.4s ease-in-out infinite;
  transform-origin: center;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 58px;
  height: 58px;

  display: none;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  text-decoration: none;

  font-size: 30px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

  z-index: 9999;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: scale(1.05);
}

@keyframes whatsappHeartbeat {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.15);
  }

  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.15);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.logo .mark {
  /* width: 26px;
  height: 26px; */
  border-radius: 7px;
  /* background: var(--grad2); */
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: .25s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-contact {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear 0s;
}

.mobile-drawer .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.mobile-drawer .btn-primary .fa-whatsapp {
  margin-right: 0;
}

@media(min-width:981px) {
  .mobile-drawer {
    display: none !important;
  }
}

.mobile-drawer a {
  font-size: 20px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}

.mobile-drawer .btn {
  margin-top: 24px;
  color: #fff;
  text-align: center;
}

@media(max-width:980px) {
  .nav-links {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .floating-whatsapp {
    display: flex;
  }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 90px;
  background: var(--light);
  text-align: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .3;
  z-index: 0;
}

.b1 {
  width: 480px;
  height: 480px;
  background: var(--primary);
  top: -200px;
  left: -140px;
}

.b2 {
  width: 420px;
  height: 420px;
  background: var(--accent);
  top: -100px;
  right: -160px;
}

.b3 {
  width: 380px;
  height: 380px;
  background: var(--secondary);
  bottom: -220px;
  left: 38%;
}

.page-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero .inner-1 {
  position: relative;
  z-index: 1;
  max-width: 60%;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb span {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--muted);
}

/* ---------- Home hero ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 110px;
  background: var(--light);
}

.home-hero .hero-blob {
  opacity: .35;
}

.b1-drift {
  animation: drift1 18s ease-in-out infinite alternate;
}

.b2-drift {
  animation: drift2 16s ease-in-out infinite alternate;
}

.b3-drift {
  animation: drift1 20s ease-in-out infinite alternate-reverse;
}

@keyframes drift1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(30px, 40px);
  }
}

@keyframes drift2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-30px, 30px);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.home-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.home-hero p.sub {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}

.trust-row .div {
  width: 1px;
  height: 14px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  height: 440px;
}

.float-card {
  position: absolute;
  /* background: var(--white); */
  border-radius: 18px;
  /* box-shadow: 0 30px 60px -20px rgba(15, 23, 42, .25); */
  /* border: 1px solid rgba(255, 255, 255, .6); */
}

.float-card-revenue {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, .25);
  border: 1px solid rgba(255, 255, 255, .6);
}


.mock-main {
  width: 100%;
  /* height: 400px; */
  height: auto;
  top: 30px;
  left: 6%;
  z-index: 2;
  /* padding: 20px; */
  transform: rotate(2deg);
}

.mock-main-1 {
  width: 100%;
  /* height: 400px; */
  height: auto;
  top: 300px;
  left: 26%;
  z-index: 2;
  /* padding: 20px; */
  transform: rotate(-1deg);
}

.mock-mobile {
  width: 150px;
  height: 220px;
  bottom: 0;
  left: -10px;
  z-index: 3;
  /* padding: 14px; */
}

.mock-widget {
  width: 170px;
  height: 96px;
  top: 0;
  right: -50px;
  z-index: 3;
  padding: 14px;
}

.mock-bar {
  height: 10px;
  border-radius: 4px;
  background: var(--line);
  margin-bottom: 10px;
}

.mock-badge {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px -8px rgba(15, 23, 42, .2);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.mock-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.badge-1 {
  bottom: 110px;
  right: 20px;
}

/* ---------- Logo strip ---------- */
.logos-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 34px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scroll 52s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-ph {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #cbd5e1;
  white-space: nowrap;
  transition: .2s;
}

.logo-ph:hover {
  color: var(--primary);
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section:before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .08) 1px, transparent 0);
  background-size: 26px 26px;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 52px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ---------- Bento (why us) ---------- */
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition: .25s ease;
  box-shadow: 0 2px 8px -4px rgba(15, 23, 42, .05);
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -16px rgba(37, 99, 235, .25);
}

.bento-hero {
  grid-row: span 2;
  background: linear-gradient(160deg, #0f1b33, var(--dark));
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.bento-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

.bento-hero p {
  color: #c3cbdc;
}

.metric-chip {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  width: fit-content;
}

.bento-card:not(.bento-hero) .metric-chip {
  background: rgba(37, 99, 235, .08);
  color: var(--primary);
}

/* ---------- Services (cards, grid) ---------- */
.tint-bg {
  background: var(--light);
}

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

.svc-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: .25s ease;
  text-decoration: none;
  display: block;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(15, 23, 42, .18);
  border-color: transparent;
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.svc-card h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
  color: var(--ink);
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.svc-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.svc-link .arrow {
  transition: .2s;
}

.svc-card:hover .arrow {
  transform: translateX(4px);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Services full-detail rows (services page) ---------- */
.svc-full-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-full {
  display: grid;
  grid-template-columns: 64px 1fr 220px;
  gap: 28px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  transition: .25s ease;
}

.svc-full:hover {
  border-color: transparent;
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, .16);
  transform: translateY(-3px);
}

.svc-icon-big {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.svc-full h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.svc-full p.desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-list span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(37, 99, 235, .07);
  padding: 6px 12px;
  border-radius: 999px;
}

.svc-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  height: 100%;
}

.svc-side .metric {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-side .metric-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: -10px;
}

.svc-side a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
}

.filter-pill.active {
  background: var(--grad2);
  color: #fff;
  border-color: transparent;
}

/* ---------- Products ---------- */
.prod-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 6px 20px;
}

.prod-track::-webkit-scrollbar {
  height: 5px;
}

.prod-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 8px;
}

.prod-card {
  min-width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: .25s;
}

.prod-card:hover {
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, .2);
  transform: translateY(-4px);
}

.prod-img {
  height: 190px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  position: relative;
  overflow: hidden;
}

.prod-img .win {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px -10px rgba(15, 23, 42, .25);
  padding: 14px;
}

.prod-body {
  padding: 22px;
}

.prod-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.prod-body p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--light);
  color: var(--muted);
  margin-right: 6px;
}

/* full product page cards */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-full {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: .25s;
}

.prod-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, .18);
}

.prod-full .prod-img {
  height: 170px;
}

.prod-full .prod-body {
  padding: 26px;
}

.prod-full .prod-cta {
  margin-top: 14px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  align-items: center;
  gap: 5px;
}

/* ---------- Industries ---------- */
.ind-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.ind-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
}

.ind-pill.active {
  background: var(--grad2);
  color: #fff;
  border-color: transparent;
}

.ind-panel {
  background: var(--light);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
}

.ind-panel h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ind-panel p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* full industries page grid */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ind-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: .25s;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(15, 23, 42, .16);
  border-color: transparent;
}

.ind-card .ind-emoji {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.ind-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ind-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Process ---------- */
.process-line {
  position: relative;
}

.process-line:before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--line);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.step:nth-child(even) {
  margin-top: 60px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto 16px;
  color: var(--muted);
  transition: .3s;
}

.step.on .step-num {
  background: var(--grad2);
  border-color: transparent;
  color: #fff;
}

.step h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.process-mini {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process-mini:before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .08) 1px, transparent 0);
  background-size: 26px 26px;
}

.pm-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pm-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 26px;
}

.pm-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #8fd3ff;
  margin-bottom: 10px;
}

.pm-card h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.pm-card p {
  font-size: 13px;
  color: #a8b3c7;
  line-height: 1.5;
}

/* ---------- Portfolio / case studies ---------- */
.folio-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
}

.folio-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  transition: .25s;
  text-decoration: none;
  display: block;
  color: var(--ink);
}

.folio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -18px rgba(15, 23, 42, .2);
}

.folio-img {
  height: 280px;
  background: linear-gradient(135deg, #0f1b33, #1e2a45);
  position: relative;
}

.folio-card.small .folio-img {
  height: 130px;
}

.folio-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .92);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.folio-body {
  padding: 22px;
}

.folio-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.folio-body p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.folio-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.folio-metrics .tag {
  background: rgba(34, 197, 94, .1);
  color: #16803c;
}

.folio-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* full case studies page */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cs-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: .25s;
}

.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -18px rgba(15, 23, 42, .18);
}

/* .cs-img {
  height: 220px;
  background: linear-gradient(135deg, #0f1b33, #1e2a45);
  position: relative;
} */

.cs-img {
  /* height: 220px; */
  /* background: linear-gradient(135deg, #0f1b33, #1e2a45); */
  position: relative;
}

.cs-body {
  padding: 28px;
}

.cs-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.cs-body p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cs-stats {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cs-stats div {
  flex: 1;
}

.cs-stats .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
}

.cs-stats .lbl {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- Testimonials ---------- */
.testi-section {
  background: linear-gradient(180deg, #eef2ff, #f8fafc);
}

.testi-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: 'Manrope', sans-serif;
  font-size: 90px;
  color: rgba(37, 99, 235, .12);
  font-weight: 800;
  line-height: .5;
  margin-bottom: 6px;
}

.stars {
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 26px;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
}

.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad2);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 14.5px;
}

.testi-role {
  font-size: 13px;
  color: var(--muted);
}

.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.tdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: .2s;
}

.tdot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}

/* ---------- Awards ---------- */
.awards-section {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.awards-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: .6;
  flex-wrap: wrap;
  gap: 16px;
}

.award-ph {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 8px;
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 60px;
}

.faq-left h2 {
  font-size: 34px;
  margin-bottom: 14px;
  text-align: left;
}

.faq-left p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 24px;
}

.faq-mini {
  background: var(--light);
  border-radius: 16px;
  padding: 22px;
}

.faq-mini p {
  font-size: 14px;
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 16px;
}

.faq-q .plus {
  font-size: 20px;
  color: var(--primary);
  transition: .3s;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item.open .faq-q .plus {
  transform: rotate(135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding-top: 12px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- CTA band ---------- */
.cta-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, .35), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: glowpulse 4s ease-in-out infinite;
}

@keyframes glowpulse {

  0%,
  100% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }
}

.cta-section h2 {
  position: relative;
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  position: relative;
  color: #a8b3c7;
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-buttons {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  position: relative;
  font-size: 12.5px;
  color: #7b8aa3;
  margin-top: 18px;
}

/* ---------- Team (about page) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  margin-bottom: 14px;
}

.team-card h4 {
  font-size: 15.5px;
  margin-bottom: 2px;
}

.team-card p {
  font-size: 13px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  text-align: center;
  padding: 10px;
}

.value-card .icon-tile {
  margin: 0 auto 16px;
  background: rgba(37, 99, 235, .08);
}

.value-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--light);
  border-radius: 20px;
  padding: 34px;
  margin-bottom: 18px;
}

.contact-info-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(37, 99, 235, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 20px 50px -24px rgba(15, 23, 42, .15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--light);
  transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.form-success .icon-big {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 14.5px;
}

.map-ph {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: #c6ccd4;
  padding: 80px 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 60px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  text-decoration: none;
}



.foot-col p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #8a93a6;
  margin-bottom: 16px;
}

.foot-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #647089;
  margin-bottom: 16px;
  font-weight: 700;
}

.foot-col a {
  display: block;
  font-size: 13.5px;
  color: #c6ccd4;
  text-decoration: none;
  margin-bottom: 11px;
  transition: .2s;
}

.foot-col a:hover {
  color: #8fd3ff;
}

.social {
  display: flex;
  align-items: center;
  /* Vertically aligns all icons */
  gap: 10px;
}

.social span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.social a {
  color: inherit;
  display: inline-flex;
  text-decoration: none;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #647089;
  flex-wrap: wrap;
  gap: 10px;
}

.client-row {
  display: flex;
  justify-content: center;
  gap: 1px;
  padding: 40px;
  /* background-color: #f9f9f9; */
}

.client-card {
  flex: 1;
  /* max-width: 300px; */
  /* aspect-ratio: 1 / 1; */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-card img {
  /* width: 100%;
  height: 100%; */
  /* object-fit: contain; */
  display: block;
}

/* ---------- Responsive ---------- */
@media(max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 320px;
    margin-top: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-hero {
    grid-column: span 2;
    grid-row: auto;
  }

  .svc-grid,
  .svc-grid1,
  .prod-grid,
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }

  .folio-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .team-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .svc-side {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 18px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cs-grid {
    grid-template-columns: 1fr;
  }

  .pm-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .nav-right {
    display: none;
  }

  section {
    padding: 70px 0;
  }

  .home-hero {
    padding: 150px 0 70px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-hero {
    grid-column: auto;
  }

  .svc-grid,
  .svc-grid1,
  .prod-grid,
  .ind-grid,
  .team-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
  }

  .process-line:before {
    display: none;
  }

  .step:nth-child(even) {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pm-grid {
    grid-template-columns: 1fr;
  }

  .awards-row {
    justify-content: center;
  }

  .mock-main-1 {
    top: 200px;
  }

  .wrap-bg {
    max-width: 100%;

  }

  .logo-mb {
    display: none;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
    font-size: 28px;
  }
}

/* =========================================
   ABOUT INNOVA
========================================= */

.section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #0F172A;
  white-space: nowrap;
}

.heading-line {
  flex: 1;
  height: 0;
  border-top: 1.5px dashed #CBD5E1;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}

.about-logo img {
  width: 100%;
  max-width: 260px;
}

.about-copy p,
.about-full,
.about-full-1 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
  text-align: start;
}

.about-full-1 {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #E2E8F0;
}

.section-heading+ul,
.why-list {
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-heading+ul li,
.why-list li {
  position: relative;
  padding-left: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  text-align: left;
}

.section-heading+ul li::before,
.why-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0F172A;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.page-hero {
  position: relative;
  overflow: hidden;
  /* clips the hero-blob decorations so they can't push width */
}

@media (max-width: 768px) {
  .inner-1 {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .page-hero .inner-1 {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto;
  }

  .section-heading {
    flex-wrap: wrap;
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 24px;
    /* was 32px — too wide for 375px with the dashed line beside it */
    white-space: normal;
    /* was nowrap — that's what's truncating "Solutions" */
    line-height: 1.3;
  }

  .heading-line {
    flex-basis: 100%;
    /* drop the dashed line to its own row instead of squeezing beside the heading */
    order: 3;
  }

  /* .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .about-logo {
    display: flex;
    justify-content: center;
  }

  .about-logo img {
    width: 60%;
    max-width: 180px;
    height: auto;
  }

  .about-copy p,
  .about-full,
  .about-full-1 {
    font-size: 15px;
    line-height: 1.65;
  }

  .why-list li {
    font-size: 15px;
  }

  .hero-blob {
    display: none;
  } */

  .about-grid {
    display: block;
    /* undo the grid so float can work */
  }

  .about-logo {
    float: left;
    width: 45%;
    max-width: 160px;
    margin: 4px 16px 8px 0;
  }

  .about-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .about-copy {
    overflow: visible;
    /* do NOT use overflow:hidden here, it would block the wrap */
  }

  .about-copy p {
    text-align: left;
    font-size: 15px;
    line-height: 1.7;
  }

  .about-full,
  .about-full-1 {
    clear: both;
    /* pushes these paragraphs below the floated logo once it's done wrapping */
    font-size: 15px;
    line-height: 1.7;
  }
}