:root {
  --primary: #0b1f4d;
  --secondary: #1e88e5;
  --accent: #00c6ff;
  --bg: #ffffff;
  --surface: #f9fbff;
  --surface-2: #f3f8ff;
  --text: #122344;
  --muted: #60708f;
  --line: rgba(11, 31, 77, 0.1);
  --shadow-soft: 0 14px 34px rgba(12, 35, 85, 0.07);
  --radius: 12px;
  --radius-sm: 10px;
  --max-width: 1100px;
  --header-height: 90px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 8.5rem 0;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

#capability-navigator,
#our-approach,
#results-that-matter {
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.center {
  text-align: center;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}

.section-head-row h2 {
  margin-bottom: 0;
}

.theme-toggle {
  border: 1px solid rgba(11, 31, 77, 0.2);
  background: #fff;
  color: #1b3057;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
}

.theme-toggle-inline {
  margin-bottom: 0.2rem;
}

.theme-toggle-floating {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1002;
  box-shadow: 0 10px 26px rgba(10, 26, 60, 0.2);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1001;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 0.9rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.4rem;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  margin-bottom: 1.35rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(11, 31, 77, 0.16);
}

.btn-outline {
  color: var(--primary);
  border-color: rgba(11, 31, 77, 0.22);
  background: #fff;
}

.glass-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header {
  position: fixed;
  top: 0.55rem;
  left: 0.9rem;
  right: 0.9rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(11, 31, 77, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(7, 25, 70, 0.06);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-link {
  color: #21365d;
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #1d2d52;
  margin: 5px auto;
}

/* Optional sleek header mode. Remove `topbar-sleek` from <body> to revert. */
body.topbar-sleek {
  --header-height: 82px;
}

body.topbar-sleek .site-header {
  top: 0.45rem;
  left: 0.7rem;
  right: 0.7rem;
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(13, 35, 79, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.topbar-sleek .site-header.scrolled {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.95));
  box-shadow: 0 16px 40px rgba(13, 35, 79, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

body.topbar-sleek .nav-wrap {
  min-height: 82px;
  padding-inline: 0.65rem;
}

body.topbar-sleek .logo-img {
  height: 64px;
}

body.topbar-sleek .site-nav {
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 42, 85, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.topbar-sleek .nav-link {
  padding: 0.46rem 0.86rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1f365f;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.topbar-sleek .nav-link::after {
  display: none;
}

body.topbar-sleek .nav-link:hover,
body.topbar-sleek .nav-link:focus-visible {
  background: rgba(30, 136, 229, 0.13);
  color: #0d2853;
  transform: translateY(-1px);
}

body.topbar-sleek .nav-link.active {
  background: linear-gradient(120deg, rgba(30, 136, 229, 0.24), rgba(0, 198, 255, 0.2));
  color: #0b1f4d;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 2.2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(30, 136, 229, 0.2), transparent 36%),
    radial-gradient(circle at 10% 84%, rgba(0, 198, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 14%, rgba(30, 136, 229, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  left: -55px;
  bottom: 12%;
  background: linear-gradient(145deg, rgba(0, 198, 255, 0.1), rgba(30, 136, 229, 0.04));
}

.shape-2 {
  width: 140px;
  height: 140px;
  right: 6%;
  top: 20%;
  animation-delay: 1.2s;
  background: linear-gradient(145deg, rgba(30, 136, 229, 0.08), rgba(0, 198, 255, 0.03));
}

.shape-3 {
  width: 82px;
  height: 82px;
  right: 24%;
  bottom: 18%;
  animation-delay: 2s;
  background: linear-gradient(145deg, rgba(30, 136, 229, 0.08), rgba(0, 198, 255, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 2.2rem);
  max-width: 860px;
}

.hero-copy {
  color: #4d648b;
  font-size: clamp(1.06rem, 1.9vw, 1.24rem);
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero .eyebrow,
.hero h1 {
  text-align: center;
}

.hero .eyebrow {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-consistent-title {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  line-height: 1.15;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
  justify-content: center;
}

.credential-strip {
  width: min(820px, 100%);
  margin: 1.55rem auto 0;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(11, 31, 77, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 42px rgba(11, 31, 77, 0.08);
  backdrop-filter: blur(16px);
}

.credentials-overline {
  display: block;
  margin-bottom: 0.56rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  color: #607391;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.credential-strip-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.credential-pill {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(11, 31, 77, 0.1);
}

.credential-pill:last-child {
  border-right: 0;
}

.credential-logo,
.credential-card-logo {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 172px;
  height: 42px;
  border-radius: 8px;
}

.credential-logo img,
.credential-card-logo img {
  display: block;
  width: auto;
  max-width: 138px;
  max-height: 30px;
  object-fit: contain;
}

.credential-logo-light {
  background: transparent;
}

.credential-logo-redington {
  background: linear-gradient(135deg, #22304e, #0d1c35);
  padding: 0.22rem 0.58rem;
}

.trust-panel {
  margin: 1.1rem auto 0;
  width: min(980px, 100%);
  padding: 0.4rem 0;
}

.trust-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.1rem 0 1rem;
}

.trust-copy {
  text-align: left;
}

.trust-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f304d;
  text-align: center;
}

.trust-subtitle {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
  color: #56698a;
  text-align: center;
}

.trust-brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.72rem;
  padding-top: 0.95rem;
  border-top: 0;
}

.brand-chip {
  min-height: 88px;
  display: grid;
  grid-template-rows: 34px auto;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  border-radius: 14px;
  background: transparent;
  border: 0;
  padding: 0.55rem 0.52rem;
  min-width: 0;
}

.brand-chip img,
.brand-fallback {
  height: 30px;
  border-radius: 6px;
}

.brand-chip img {
  width: auto;
  max-width: 92px;
  object-fit: contain;
  border-radius: 0;
}

.brand-fallback {
  width: 30px;
  display: none;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #2d77d5, #00b8f3);
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 600;
  color: #1d355c;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.2rem;
  align-items: start;
}

.about-copy,
.about .stats-grid {
  grid-column: 1 / -1;
}

.about-copy {
  max-width: 930px;
}

.about {
  background:
    radial-gradient(circle at 85% 18%, rgba(30, 136, 229, 0.08), transparent 34%),
    radial-gradient(circle at 8% 86%, rgba(0, 198, 255, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 2.6rem;
}

.mission-vision .glass-card {
  border-radius: var(--radius-sm);
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.credentials-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.8rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(11, 31, 77, 0.1);
  border-bottom: 1px solid rgba(11, 31, 77, 0.1);
  background: transparent;
  box-shadow: none;
}

.credentials-intro {
  min-width: 0;
  padding-right: 0.8rem;
}

.credentials-intro .eyebrow {
  margin-bottom: 0.6rem;
}

.credentials-intro h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  color: #1a2f53;
  line-height: 1.22;
  text-wrap: balance;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(11, 31, 77, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
  overflow: hidden;
}

.credential-card {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(11, 31, 77, 0.08);
  background: rgba(255, 255, 255, 0.34);
}

.credential-card:last-child {
  border-right: 0;
}

.credential-card-logo {
  max-width: 190px;
  height: 58px;
}

.credential-card-logo img {
  max-width: 150px;
  max-height: 38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 0.65rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding: 1.05rem 1rem 1.02rem 1.16rem;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.52), rgba(246, 250, 255, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #1e88e5, #00c6ff);
  pointer-events: none;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 92% 14%, rgba(30, 136, 229, 0.08), transparent 42%);
  pointer-events: none;
}

.stat-card:nth-child(2) {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.5), rgba(249, 252, 255, 0.43));
}

.stat-card:nth-child(2)::before {
  background: linear-gradient(180deg, #2ea97a, #58c396);
}

.stat-card:nth-child(3) {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.52), rgba(247, 249, 255, 0.43));
}

.stat-card:nth-child(3)::before {
  background: linear-gradient(180deg, #6e7bf2, #8389ff);
}

.stat-card:nth-child(4) {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.5), rgba(248, 251, 255, 0.42));
}

.stat-card:nth-child(4)::before {
  background: linear-gradient(180deg, #f06b3d, #f18b4f);
}

.stat-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.15rem;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: #1a2f53;
}

.stat-label {
  position: relative;
  z-index: 1;
  margin: 0 0 0.28rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: #2a4269;
  line-height: 1.25;
}

.stat-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: #5c6f90;
  line-height: 1.45;
}

.services,
.case-studies,
.contact {
  background: var(--bg);
}

.case-studies {
  padding-block: 5.5rem;
}

.capabilities-infographic {
  position: relative;
  margin-top: 1.55rem;
  padding: 1.75rem 2rem;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.35rem 1.8rem;
  background:
    radial-gradient(140% 90% at 65% 112%, rgba(0, 198, 255, 0.28), transparent 58%),
    radial-gradient(120% 74% at 56% 94%, rgba(30, 136, 229, 0.3), transparent 54%),
    linear-gradient(120deg, #06172f 0%, #052740 52%, #033143 100%);
  box-shadow: 0 16px 38px rgba(4, 23, 48, 0.2);
}

.capabilities-infographic::before {
  content: "";
  position: absolute;
  inset: auto -16% -38% -10%;
  height: 78%;
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(42, 220, 211, 0.35), transparent 66%);
  pointer-events: none;
}

.capabilities-infographic::after {
  content: "";
  position: absolute;
  inset: auto -10% -58% 18%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid rgba(161, 255, 245, 0.2);
  opacity: 0.5;
  pointer-events: none;
}

.capabilities-copy,
.capabilities-points {
  position: relative;
  z-index: 1;
}

.capabilities-lead {
  margin: 0;
  color: rgba(239, 248, 255, 0.96);
  font-size: clamp(1.08rem, 1.75vw, 1.6rem);
  line-height: 1.32;
  font-weight: 500;
  max-width: 660px;
}

.capabilities-cta {
  margin-top: 1.05rem;
  background: #eaf2ff;
  color: #0f2a58;
  border: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.capabilities-cta:hover,
.capabilities-cta:focus-visible {
  background: #ffffff;
}

.capabilities-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.68rem;
}

.capabilities-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.62rem;
  color: rgba(235, 246, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.34;
}

.cap-bento {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.cap-tile {
  grid-column: span 4;
  background: #fff;
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(10, 33, 74, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cap-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 136, 229, 0.42);
  box-shadow: 0 16px 28px rgba(10, 33, 74, 0.12);
}

.cap-tile-xl {
  grid-column: span 6;
  background:
    radial-gradient(130% 100% at 90% 0%, rgba(30, 136, 229, 0.14), transparent 55%),
    linear-gradient(140deg, #f8fbff 0%, #eef6ff 100%);
}

.cap-tile-lg {
  grid-column: span 6;
}

.cap-tile h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #132a50;
}

.cap-tile p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #586a89;
}

.cap-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f65c1;
  background: rgba(30, 136, 229, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.cap-tile-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.09);
  background: #f2f7ff;
  margin-bottom: 0.8rem;
}

.cap-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cap-media-idp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.9rem;
  background:
    radial-gradient(80% 100% at 85% 10%, rgba(55, 138, 221, 0.22), transparent 60%),
    linear-gradient(145deg, #f7fbff 0%, #eaf3ff 100%);
}

.cap-tile-cta {
  background:
    linear-gradient(130deg, #0d234c 0%, #113263 58%, #15508f 100%);
  border-color: rgba(30, 136, 229, 0.32);
}

.cap-tile-cta .cap-kicker {
  color: #d8edff;
  background: rgba(255, 255, 255, 0.14);
}

.cap-tile-cta h3,
.cap-tile-cta p {
  color: #e8f3ff;
}

.cap-tile-cta .btn {
  margin-top: 0.85rem;
}

.cap-scrolly {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 1.1rem;
  align-items: start;
}

.cap-scrolly-nav {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  background: #fff;
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(10, 33, 74, 0.07);
}

.cap-scrolly-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0f65c1;
}

.cap-scrolly-nav h3 {
  margin: 0.45rem 0 0.65rem;
  color: #132a50;
  font-size: 1.35rem;
}

.cap-scrolly-nav ol {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #465c7f;
  font-size: 0.95rem;
}

.cap-status {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.14rem 0.52rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0c5fb3;
  background: rgba(30, 136, 229, 0.14);
  border: 1px solid rgba(30, 136, 229, 0.28);
  vertical-align: middle;
}

.cap-scrolly-stack {
  display: grid;
  gap: 0.9rem;
}

.cap-panel {
  background: #fff;
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 18px;
  padding: 0.95rem;
  box-shadow: 0 10px 24px rgba(10, 33, 74, 0.07);
}

.cap-panel h4 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #132a50;
}

.cap-panel p {
  margin: 0;
  color: #586a89;
  line-height: 1.55;
  font-size: 0.93rem;
}

.cap-panel-btn {
  margin-top: 0.85rem;
}

.cap-panel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.09);
  margin-bottom: 0.75rem;
  background: #eef4fc;
}

.cap-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.cap-panel-media-idp {
  padding: 0;
  background: #eaf3ff;
}

.cap-panel-idp .cap-panel-media img {
  object-position: center;
}

.cap-panel-idp .cap-panel-media {
  aspect-ratio: 1660 / 947;
  background: #f6f9ff;
}

.cap-panel-erp .cap-panel-media {
  aspect-ratio: 1609 / 977;
}

.cap-panel-software .cap-panel-media {
  aspect-ratio: 1536 / 1024;
}

.cap-panel-ms .cap-panel-media {
  aspect-ratio: 1536 / 1024;
}

.cap-panel-data .cap-panel-media {
  aspect-ratio: 1536 / 1024;
}

.cap-panel-idp .cap-panel-media::before {
  content: none;
}

body.theme-dark .cap-panel-idp .cap-panel-media::before {
  content: none;
}

.cap-panel-cta {
  background: linear-gradient(130deg, #0d234c 0%, #113263 58%, #15508f 100%);
  border-color: rgba(30, 136, 229, 0.32);
}

.cap-panel-cta .cap-kicker {
  color: #d8edff;
  background: rgba(255, 255, 255, 0.14);
}

.cap-panel-cta h4,
.cap-panel-cta p {
  color: #e8f3ff;
}

body.theme-dark .cap-tile {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .cap-tile h3 {
  color: #edf4ff;
}

body.theme-dark .cap-tile p {
  color: #abc0de;
}

body.theme-dark .cap-kicker {
  color: #9fd0ff;
  background: rgba(105, 176, 255, 0.14);
}

body.theme-dark .cap-tile-media {
  border-color: var(--line);
  background: #0f1a30;
}

body.theme-dark .cap-tile-xl {
  background:
    radial-gradient(130% 100% at 90% 0%, rgba(105, 176, 255, 0.2), transparent 55%),
    linear-gradient(140deg, #121f38 0%, #11213d 100%);
}

body.theme-dark .cap-scrolly-nav,
body.theme-dark .cap-panel {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .cap-scrolly-eyebrow {
  color: #9fd0ff;
}

body.theme-dark .cap-scrolly-nav h3,
body.theme-dark .cap-panel h4 {
  color: #edf4ff;
}

body.theme-dark .cap-scrolly-nav ol,
body.theme-dark .cap-panel p {
  color: #abc0de;
}

body.theme-dark .cap-status {
  color: #9fd0ff;
  background: rgba(105, 176, 255, 0.15);
  border-color: rgba(105, 176, 255, 0.34);
}

body.theme-dark .cap-panel-media {
  border-color: var(--line);
  background: #0f1a30;
}

body.theme-dark .cap-panel-idp .cap-panel-media {
  background: #0d182d;
  border-color: rgba(192, 212, 255, 0.24);
}

body.theme-dark .process-visual-wrap {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .cap-scrolly {
    grid-template-columns: 1fr;
  }

  .cap-scrolly-nav {
    position: static;
  }

  .cap-tile,
  .cap-tile-xl,
  .cap-tile-lg {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .cap-scrolly-nav ol {
    gap: 0.3rem;
    font-size: 0.9rem;
  }

  .cap-bento {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .cap-tile,
  .cap-tile-xl,
  .cap-tile-lg {
    grid-column: auto;
  }
}

.point-check {
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(126, 231, 220, 0.95), rgba(56, 184, 213, 0.92));
  display: inline-block;
  position: relative;
}

.point-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #05304b;
  border-bottom: 2px solid #05304b;
  transform: rotate(40deg);
}

.services-grid,
.case-grid {
  margin-top: 3.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.service-card {
  padding: 1.3rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 10px 22px rgba(12, 35, 85, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(12, 35, 85, 0.1);
  border-color: rgba(30, 136, 229, 0.24);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(30, 136, 229, 0.12), rgba(0, 198, 255, 0.16));
}

.icon-wrap svg {
  width: 21px;
  height: 21px;
  fill: var(--primary);
}

.process {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.process-intro {
  max-width: 760px;
  margin: 0 auto;
}

.process-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-step {
  padding: 1.35rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12, 35, 85, 0.06);
}

.process-visual-wrap {
  margin-top: 3.2rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: #f7fbff;
  box-shadow: 0 14px 28px rgba(12, 35, 85, 0.08);
}

.process-visual {
  display: block;
  width: 100%;
  height: auto;
}

.step-no {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.08em;
}

.metrics-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(52, 137, 255, 0.08), transparent 34%),
    radial-gradient(circle at 80% 78%, rgba(16, 90, 214, 0.1), transparent 40%),
    linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  border-block: 1px solid rgba(11, 31, 77, 0.08);
}

.impact-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
}

.impact-service-card {
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 16px;
  padding: 0.2rem 1rem 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(8, 33, 80, 0.07);
}

.impact-tabs {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.impact-tab-btn {
  border: 1px solid rgba(11, 31, 77, 0.14);
  background: #fff;
  color: #0f2b57;
  border-radius: 12px;
  text-align: left;
  padding: 0.78rem 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.impact-tab-btn:hover,
.impact-tab-btn:focus-visible {
  border-color: rgba(33, 104, 209, 0.5);
  background: #f2f7ff;
  outline: none;
}

.impact-tab-btn.active {
  background: linear-gradient(130deg, #0f3f9e, #1f66d4);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 9px 20px rgba(19, 77, 176, 0.25);
}

.impact-panels {
  min-width: 0;
  position: relative;
}

.impact-panel {
  display: none;
}

.impact-panel.active {
  display: block;
  animation: impactPanelIn 260ms ease;
}

@keyframes impactPanelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.impact-label {
  margin-bottom: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.impact-head p {
  margin-bottom: 0;
}

.impact-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.impact-metric {
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 14px;
  padding: 0.9rem 0.75rem;
  background: #fff;
  text-align: center;
}

.impact-metric h4 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: #0d46a8;
}

.impact-metric p {
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.35;
}

.impact-closing {
  margin-top: 1.35rem;
  font-size: 0.98rem;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  color: #243a62;
}


.why-choose {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
  border-block: 1px solid rgba(11, 31, 77, 0.06);
}

.feature-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}

.feature-card {
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(12, 35, 85, 0.05);
}

.feature-card p {
  margin-bottom: 0;
}

.industry-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 2rem;
}

.industry-card {
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 77, 0.1);
  padding: 1.15rem;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 35, 85, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 136, 229, 0.24);
}

.industry-focus-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}


.industry-focus-card {
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 22px rgba(12, 35, 85, 0.06);
  padding: 1rem 1rem 0.95rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-focus-card:hover {
  border-color: rgba(20, 95, 196, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(14, 58, 132, 0.11);
}

.industry-focus-card h3 {
  margin-bottom: 0.35rem;
}

.industry-focus-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.case-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.1);
  padding: 0.7rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(12, 35, 85, 0.06);
}

.case-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.case-content {
  padding: 1rem 0.35rem 0.35rem;
}

.case-slider {
  position: relative;
  isolation: isolate;
  margin-top: 1.45rem;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(132, 163, 214, 0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(30, 136, 229, 0.14), transparent 32%),
    radial-gradient(circle at 100% 12%, rgba(0, 198, 255, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 249, 255, 0.98) 100%);
  box-shadow:
    0 26px 70px rgba(11, 31, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.case-slider::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 42%);
  pointer-events: none;
}

.case-slider-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  padding-inline: 0.25rem;
}

.case-slider-count {
  margin: 0;
  border: 1px solid rgba(30, 136, 229, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #234778;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 0.42rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-slider-controls {
  display: flex;
  gap: 0.5rem;
}

.case-nav-btn {
  border: 1px solid rgba(30, 79, 145, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.96));
  color: #183c70;
  border-radius: 999px;
  box-shadow:
    0 10px 22px rgba(11, 31, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 0.48rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.case-nav-btn:hover {
  border-color: rgba(17, 99, 206, 0.42);
  color: #145ec4;
  box-shadow:
    0 14px 28px rgba(30, 136, 229, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.case-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(11, 31, 77, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.94));
  box-shadow:
    0 18px 44px rgba(11, 31, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.case-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.case-slide {
  min-width: 100%;
  padding: 0.55rem;
}

.case-slide img {
  display: block;
  width: 100%;
  height: min(52vh, 500px);
  object-fit: contain;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 77, 0.08);
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.09);
}

.case-slider-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  padding-top: 0.85rem;
}

.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(88, 131, 189, 0.32);
  cursor: pointer;
  transition: width 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.case-dot.active {
  width: 28px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: none;
}

.case-slider:fullscreen,
.case-slider:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 14% 0%, rgba(30, 136, 229, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eaf3ff 100%);
  display: flex;
  flex-direction: column;
}

.case-slider:fullscreen .case-slider-head,
.case-slider:-webkit-full-screen .case-slider-head {
  flex: 0 0 auto;
}

.case-slider:fullscreen .case-slider-viewport,
.case-slider:-webkit-full-screen .case-slider-viewport {
  flex: 1 1 auto;
  min-height: 0;
}

.case-slider:fullscreen .case-slider-track,
.case-slider:-webkit-full-screen .case-slider-track,
.case-slider:fullscreen .case-slide,
.case-slider:-webkit-full-screen .case-slide {
  height: 100%;
}

.case-slider:fullscreen .case-slide img,
.case-slider:-webkit-full-screen .case-slide img {
  height: 100%;
  max-height: none;
}

.case-slider:fullscreen .case-slider-dots,
.case-slider:-webkit-full-screen .case-slider-dots {
  flex: 0 0 auto;
  padding-top: 0.75rem;
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-carousel {
  margin-top: 3rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 198, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(12, 35, 85, 0.08);
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial {
  min-width: 100%;
  padding: 2.3rem;
}

.testimonial p {
  font-size: 1.12rem;
  color: #20375d;
}

.testimonial h3 {
  margin: 1.2rem 0 0.2rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.94rem;
}

.carousel-dots {
  display: flex;
  gap: 0.42rem;
  justify-content: center;
  padding: 0 0 1.2rem;
}

.dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #bad2f0;
  cursor: pointer;
}

.dot.active {
  background: var(--secondary);
  transform: scale(1.12);
}

.cta-banner {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 18px;
  padding: 2rem 2.1rem;
  background: linear-gradient(140deg, #f8fbff 0%, #eef6ff 100%);
}

.cta-banner-inner h2 {
  max-width: 720px;
}

.insights {
  padding-top: 4rem;
}

.insights-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.insights-grid.insights-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.insights-grid.insights-grid-pair {
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
}

.insights-grid.insights-grid-series {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.insights-grid-series .insight-card-featured {
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  border-radius: 12px;
  padding: 0.7rem;
  box-shadow: 0 8px 18px rgba(12, 35, 85, 0.045);
}

.insights-grid-series .insight-card-featured:hover,
.insights-grid-series .insight-card-featured:focus-visible {
  box-shadow: 0 14px 30px rgba(12, 35, 85, 0.1);
}

.insights-grid-series .insight-visual {
  min-height: 150px;
  border-radius: 9px;
  padding: 0.85rem;
}

.insights-grid-series .insight-stat-row {
  display: none;
}

.insights-grid-series .insight-content {
  padding: 0.35rem 0.35rem 0.35rem 0.2rem;
}

.insights-grid-series .insight-card-featured .insight-content h3 {
  max-width: 620px;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.25;
  margin-bottom: 0.48rem;
}

.insights-grid-series .insight-content > p:not(.tag) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.insights-grid-series .insight-read-more {
  margin-top: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.insights-grid-series .insight-read-more::after {
  content: "→";
  font-size: 0.95rem;
  line-height: 1;
}

.insight-card {
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 16px;
  padding: 0.8rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(12, 35, 85, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.insight-card-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: stretch;
  color: inherit;
}

.insight-card-featured:hover,
.insight-card-featured:focus-visible {
  border-color: rgba(30, 136, 229, 0.28);
  box-shadow: 0 18px 38px rgba(12, 35, 85, 0.12);
  transform: translateY(-2px);
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.insight-visual {
  min-height: 260px;
  border-radius: 12px;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(11, 31, 77, 0.9), rgba(30, 136, 229, 0.82)),
    url("assets/capabilities/Viracent%20IDP%20Updated%20Image.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-visual-erp {
  background:
    linear-gradient(135deg, rgba(11, 31, 77, 0.88), rgba(17, 88, 122, 0.78)),
    url("assets/capabilities/Viracent%20Custom%20ERP%20Development.png");
  background-size: cover;
  background-position: center;
}

.insight-visual-annotation {
  background:
    linear-gradient(135deg, rgba(9, 41, 65, 0.9), rgba(0, 145, 130, 0.72)),
    url("assets/capabilities/Viracent%20Data%20Annotation%20Services.png");
  background-size: cover;
  background-position: center;
}

.insight-visual-label {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.32rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-stat-row {
  display: grid;
  gap: 0.5rem;
}

.insight-stat-row span {
  display: grid;
  gap: 0.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.58rem 0.68rem;
  font-size: 0.76rem;
  line-height: 1.35;
}

.insight-stat-row strong {
  font-size: 1.05rem;
  line-height: 1;
}

.insight-content {
  padding: 0.9rem 0.35rem 0.35rem;
}

.insight-content h3 {
  font-size: 1.25rem;
}

.insight-card-featured .insight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.55rem;
}

.insight-card-featured .insight-content h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.22;
  margin-bottom: 0.75rem;
}

.insight-read-more {
  margin-top: 1rem;
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 1.6rem 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.map-placeholder {
  border-radius: 8px;
  border: 1px dashed rgba(30, 136, 229, 0.34);
  background: var(--surface-2);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 600;
}

.contact-form {
  border-radius: 8px;
  padding: 1.6rem;
  border: 1px solid rgba(11, 31, 77, 0.12);
  background: #fff;
  box-shadow: 0 12px 26px rgba(12, 35, 85, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.32rem;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #24385f;
}

input,
textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(11, 31, 77, 0.16);
  border-radius: 9px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.14);
}

.error-message {
  color: #ca2f2f;
  min-height: 1rem;
  font-size: 0.8rem;
}

.form-feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--primary);
}

.site-footer {
  background: #f6f9ff;
  color: #23375d;
  border-top: 1px solid rgba(11, 31, 77, 0.08);
  padding-top: 5.5rem;
}

.site-footer h3,
.site-footer h4 {
  color: #1b3057;
}

.site-footer p {
  color: #5e7090;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.78rem;
  line-height: 1;
}

.footer-brand:hover {
  color: #1b3057;
}

.footer-logo {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 2.4rem;
}

.footer-grid > div:first-child {
  padding-left: 0.65rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: #2c436d;
}

.site-footer a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 77, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(11, 31, 77, 0.1);
  margin-top: 2rem;
  padding: 1rem 0 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.theme-dark {
  --bg: #0a1222;
  --surface: #111d34;
  --surface-2: #13233f;
  --text: #e7efff;
  --muted: #a8badd;
  --line: rgba(192, 212, 255, 0.18);
  --primary: #edf3ff;
  --secondary: #69b0ff;
  --accent: #48dcff;
}

body.theme-dark {
  background: #0a1222;
  color: var(--text);
}

body.theme-dark .site-header {
  background: rgba(10, 18, 34, 0.82);
  border-bottom-color: rgba(192, 212, 255, 0.16);
}

body.theme-dark .site-header.scrolled {
  background: rgba(10, 18, 34, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

body.topbar-sleek.theme-dark .site-header {
  background:
    linear-gradient(130deg, rgba(20, 34, 62, 0.86), rgba(13, 25, 48, 0.86));
  border-color: rgba(182, 210, 255, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(225, 240, 255, 0.1);
}

body.topbar-sleek.theme-dark .site-header.scrolled {
  background:
    linear-gradient(130deg, rgba(16, 29, 55, 0.94), rgba(12, 23, 45, 0.94));
}

body.topbar-sleek.theme-dark .site-nav {
  background: rgba(168, 201, 255, 0.08);
  border-color: rgba(192, 212, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(228, 239, 255, 0.12);
}

body.topbar-sleek.theme-dark .nav-link {
  color: #c6d9fc;
}

body.topbar-sleek.theme-dark .nav-link:hover,
body.topbar-sleek.theme-dark .nav-link:focus-visible {
  background: rgba(105, 176, 255, 0.18);
  color: #eaf2ff;
}

body.topbar-sleek.theme-dark .nav-link.active {
  background: linear-gradient(120deg, rgba(105, 176, 255, 0.28), rgba(72, 220, 255, 0.2));
  color: #eef4ff;
}

body.theme-dark .nav-link,
body.theme-dark .menu-toggle span,
body.theme-dark .hero-copy,
body.theme-dark p,
body.theme-dark label,
body.theme-dark .site-footer a,
body.theme-dark .site-footer p {
  color: var(--muted);
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark .stat-card h3,
body.theme-dark .theme-toggle,
body.theme-dark .logo,
body.theme-dark .site-footer h3,
body.theme-dark .site-footer h4 {
  color: var(--text);
}

body.theme-dark .footer-brand,
body.theme-dark .footer-brand:hover {
  color: var(--text);
}

body.theme-dark .footer-logo {
  filter: none;
}

body.theme-dark .hero-bg {
  background:
    radial-gradient(circle at 84% 16%, rgba(30, 136, 229, 0.23), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(0, 198, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #0c1527 0%, #0f1d35 100%);
}

body.theme-dark .stat-card {
  background: linear-gradient(175deg, rgba(171, 201, 255, 0.09), rgba(96, 135, 201, 0.07));
  box-shadow: inset 0 1px 0 rgba(236, 244, 255, 0.12);
}

body.theme-dark .stat-label {
  color: #c7d8f5;
}

body.theme-dark .stat-card h3 {
  color: #eef4ff;
}

body.theme-dark .stat-desc {
  color: #a8bddd;
}

body.theme-dark .stat-card:nth-child(2),
body.theme-dark .stat-card:nth-child(3),
body.theme-dark .stat-card:nth-child(4) {
  background: linear-gradient(175deg, rgba(171, 201, 255, 0.08), rgba(93, 133, 201, 0.06));
}

body.theme-dark .trust-panel,
body.theme-dark .about,
body.theme-dark .process,
body.theme-dark .metrics-band,
body.theme-dark .why-choose,
body.theme-dark .services,
body.theme-dark .case-studies,
body.theme-dark .contact,
body.theme-dark .testimonial-carousel,
body.theme-dark .cta-banner,
body.theme-dark .insights,
body.theme-dark .site-footer {
  background: #0d182d;
}

body.theme-dark .about {
  background:
    radial-gradient(circle at 85% 18%, rgba(105, 176, 255, 0.16), transparent 36%),
    radial-gradient(circle at 8% 86%, rgba(72, 220, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #0d182d 0%, #111f37 100%);
}

body.theme-dark .contact-form,
body.theme-dark .map-placeholder,
body.theme-dark .testimonial-carousel,
body.theme-dark .site-header,
body.theme-dark .site-nav,
body.theme-dark .social-links a {
  border-color: var(--line);
}

body.theme-dark .contact-form,
body.theme-dark .map-placeholder,
body.theme-dark .testimonial-carousel,
body.theme-dark .social-links a {
  background: #111d34;
}

body.theme-dark .service-card,
body.theme-dark .feature-card,
body.theme-dark .industry-card,
body.theme-dark .industry-focus-card,
body.theme-dark .process-step,
body.theme-dark .impact-service-card,
body.theme-dark .impact-metric,
body.theme-dark .case-card,
body.theme-dark .insight-card,
body.theme-dark .cta-banner-inner {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .impact-label {
  color: #8cc8ff;
}

body.theme-dark .insight-card-featured:hover,
body.theme-dark .insight-card-featured:focus-visible {
  border-color: rgba(105, 176, 255, 0.38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

body.theme-dark .impact-metric h4 {
  color: #8cc8ff;
}

body.theme-dark .impact-tab-btn {
  background: #111d34;
  color: #d2e2ff;
  border-color: var(--line);
}

body.theme-dark .impact-tab-btn:hover,
body.theme-dark .impact-tab-btn:focus-visible {
  background: #142546;
  border-color: #4f79bf;
}

body.theme-dark .impact-tab-btn.active {
  background: linear-gradient(130deg, #2c63ba, #2f89cf);
  color: #f4f8ff;
  border-color: transparent;
}



body.theme-dark .capabilities-infographic {
  background:
    radial-gradient(140% 90% at 65% 112%, rgba(72, 220, 255, 0.24), transparent 58%),
    radial-gradient(120% 74% at 56% 94%, rgba(105, 176, 255, 0.26), transparent 54%),
    linear-gradient(120deg, #07152a 0%, #0b2441 52%, #0b2a3c 100%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

body.theme-dark .capabilities-cta {
  background: #f3f7ff;
  color: #092348;
}

body.theme-dark .case-card img,
body.theme-dark .insight-card img {
  filter: brightness(0.9) saturate(0.9);
}

body.theme-dark .case-slider {
  border-color: rgba(130, 163, 214, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(92, 151, 255, 0.2), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(0, 198, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(14, 35, 70, 0.95) 0%, rgba(10, 28, 56, 0.98) 100%);
}

body.theme-dark .case-slider-count {
  border-color: rgba(151, 181, 229, 0.24);
  background: rgba(8, 26, 52, 0.72);
  color: #a8caff;
}

body.theme-dark .case-nav-btn {
  background: linear-gradient(180deg, rgba(19, 43, 80, 0.98), rgba(10, 28, 56, 0.98));
  color: #d6e8ff;
  border-color: rgba(140, 176, 228, 0.35);
}

body.theme-dark .case-slider:fullscreen,
body.theme-dark .case-slider:-webkit-full-screen {
  background:
    radial-gradient(circle at 14% 0%, rgba(92, 151, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #0e2346 0%, #07172e 100%);
}

body.theme-dark .case-slider-viewport {
  border-color: rgba(151, 181, 229, 0.18);
  background:
    linear-gradient(135deg, rgba(17, 39, 74, 0.98), rgba(9, 27, 54, 0.96));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.theme-dark .case-slide img {
  background: linear-gradient(180deg, rgba(13, 30, 58, 0.98), rgba(8, 24, 48, 0.98));
  border-color: rgba(151, 181, 229, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

body.theme-dark .case-dot {
  background: rgba(151, 181, 229, 0.45);
}

body.theme-dark .case-dot.active {
  background: #7db0ff;
}

body.theme-dark input,
body.theme-dark textarea {
  background: #0f1a30;
  border-color: var(--line);
  color: var(--text);
}

body.theme-dark .btn-primary {
  background: linear-gradient(120deg, #4d9cf3, #2f7fdd);
  color: #fff;
}

body.theme-dark .btn-outline,
body.theme-dark .theme-toggle {
  border-color: var(--line);
  background: #111d34;
  color: var(--text);
}

body.theme-dark .trust-panel {
  background: transparent;
}

body.theme-dark .credential-strip {
  border-color: rgba(192, 212, 255, 0.16);
  background: rgba(17, 29, 52, 0.58);
  box-shadow: inset 0 1px 0 rgba(236, 244, 255, 0.1);
}

body.theme-dark .credentials-grid {
  border-color: rgba(192, 212, 255, 0.16);
  background: rgba(17, 29, 52, 0.58);
  box-shadow: inset 0 1px 0 rgba(236, 244, 255, 0.1);
}

body.theme-dark .credentials-panel {
  border-color: rgba(192, 212, 255, 0.16);
}

body.theme-dark .credential-pill,
body.theme-dark .credential-card {
  border-color: rgba(192, 212, 255, 0.12);
  background: transparent;
}

body.theme-dark .credentials-overline {
  color: #a9bad6;
}

body.theme-dark .credentials-intro h3 {
  color: #eef4ff;
}

body.theme-dark .trust-title {
  color: #e6efff;
}

body.theme-dark .trust-subtitle {
  color: #b8c9e6;
}

body.theme-dark .trust-brands {
  border-top-color: transparent;
}

body.theme-dark .brand-chip {
  background: transparent;
  border-color: transparent;
}

body.theme-dark .brand-name {
  color: #e7f0ff;
}

body.theme-dark .theme-toggle-floating {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

body.theme-dark .dot {
  background: #49658d;
}

body.theme-dark .dot.active {
  background: #74b9ff;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(5px);
  }
}

@media (max-width: 1080px) {
  .capabilities-infographic {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.55rem 1.35rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-focus-grid {
    grid-template-columns: 1fr;
  }



  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-brands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .credentials-panel {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-grid.insights-grid-series {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .case-studies {
    padding-block: 4.4rem;
  }

  .case-slider {
    border-radius: 26px;
  }

  .case-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-slider-viewport {
    border-radius: 21px;
  }

  .case-slide {
    padding: 0.45rem;
  }

  .case-slide img {
    height: min(48vh, 390px);
    border-radius: 17px;
  }

  body.topbar-sleek {
    --header-height: 76px;
  }

  body.topbar-sleek .site-header {
    top: 0.4rem;
    left: 0.45rem;
    right: 0.45rem;
    border-radius: 18px;
  }

  body.topbar-sleek .nav-wrap {
    min-height: 76px;
    padding-inline: 0.35rem;
  }

  body.topbar-sleek .logo-img {
    height: 58px;
  }

  .footer-logo {
    height: 56px;
  }

  .footer-grid > div:first-child {
    padding-left: 0.35rem;
  }

  body.topbar-sleek .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 31, 77, 0.12);
  }

  body.topbar-sleek .site-nav {
    right: 0.8rem;
    width: min(320px, calc(100% - 1.6rem));
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(11, 31, 77, 0.1);
  }

  body.topbar-sleek .site-nav .nav-link {
    padding: 0.78rem 0.9rem;
    border-radius: 0;
  }

  body.topbar-sleek .site-nav .nav-link.active {
    background: rgba(30, 136, 229, 0.13);
  }

  body.topbar-sleek.theme-dark .menu-toggle {
    background: rgba(174, 203, 255, 0.12);
    border-color: rgba(192, 212, 255, 0.2);
  }

  body.topbar-sleek.theme-dark .site-nav {
    background: rgba(13, 25, 46, 0.98);
    border-color: rgba(192, 212, 255, 0.2);
  }

  .site-header {
    top: 0.45rem;
    left: 0.55rem;
    right: 0.55rem;
    border-radius: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    width: min(300px, calc(100% - 3rem));
    background: #fff;
    border: 1px solid rgba(11, 31, 77, 0.1);
    border-radius: 12px;
    display: grid;
    gap: 0;
    box-shadow: 0 18px 40px rgba(8, 26, 72, 0.12);
    transform: scale(0.985);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow: hidden;
  }

  .site-nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-nav .nav-link {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(11, 31, 77, 0.08);
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

  .trust-head {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }

  .trust-copy {
    text-align: center;
  }

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

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .capabilities-infographic {
    border-radius: 18px;
    padding: 1.25rem 1rem;
  }

  .capabilities-lead {
    font-size: 1.05rem;
  }

  .capabilities-points li {
    font-size: 0.89rem;
  }

  .logo-img {
    height: 54px;
  }

  .footer-logo {
    height: 52px;
  }

  .container {
    width: min(100% - 1.35rem, var(--max-width));
  }

  .section {
    padding: 5.6rem 0;
  }

  .case-studies {
    padding-block: 3.8rem;
  }

  .case-slider {
    margin-top: 1.1rem;
    padding: 0.65rem;
    border-radius: 22px;
  }

  .case-slider-head {
    margin-bottom: 0.7rem;
  }

  .case-slider-controls {
    width: 100%;
    flex-wrap: wrap;
  }

  .case-nav-btn {
    flex: 1;
    padding: 0.46rem 0.72rem;
  }

  .case-fullscreen-btn {
    flex-basis: 100%;
  }

  .case-slider-viewport {
    border-radius: 18px;
  }

  .case-slide {
    padding: 0.35rem;
  }

  .case-slide img {
    height: min(42vh, 280px);
    border-radius: 14px;
  }

  .services-grid,
  .case-grid,
  .industry-grid,
  .feature-grid,
  .insights-grid,
  .mission-vision,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid.insights-grid-series {
    grid-template-columns: 1fr;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-tabs {
    grid-template-columns: 1fr;
  }

  .credential-strip {
    margin-top: 1.35rem;
    padding: 0.85rem;
    border-radius: 20px;
  }

  .credential-strip-logos {
    grid-template-columns: 1fr;
  }

  .credential-pill {
    min-height: 58px;
    padding: 0.78rem;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 77, 0.08);
  }

  .credential-pill:last-child {
    border-bottom: 0;
  }

  .credentials-panel {
    margin-top: 2rem;
    padding: 1.15rem 0;
  }

  .credential-card {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 31, 77, 0.08);
  }

  .credential-card:last-child {
    border-bottom: 0;
  }

  .insight-card-featured {
    grid-template-columns: 1fr;
  }

  .insight-visual {
    min-height: 230px;
  }

  .insights-grid-series .insight-card-featured {
    grid-template-columns: 1fr;
    padding: 0.65rem;
  }

  .insights-grid-series .insight-visual {
    min-height: 150px;
  }

  .insights-grid-series .insight-content {
    padding: 0.7rem 0.25rem 0.25rem;
  }




  .stats-grid {
    gap: 0.7rem;
  }

  .stat-card {
    min-height: 122px;
    padding: 0.92rem 0.92rem 0.92rem 1.02rem;
  }

  .stat-card h3 {
    font-size: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .trust-brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-chip {
    min-height: 80px;
    padding: 0.5rem 0.4rem;
  }

  .brand-chip img,
  .brand-fallback {
    height: 26px;
  }

  .brand-chip img {
    max-width: 82px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .theme-toggle-floating {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.56rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.vc-capabilities {
  --blue-50: rgba(30, 136, 229, 0.1);
  --blue-100: rgba(30, 136, 229, 0.2);
  --blue-200: rgba(30, 136, 229, 0.32);
  --blue-400: #1e88e5;
  --blue-600: #0b66c4;
  --blue-800: #0b3d83;
  --text-primary: var(--text);
  --text-secondary: var(--muted);
  --text-tertiary: #7f8fa9;
  --bg-primary: transparent;
  --bg-secondary: var(--surface);
  --bg-tertiary: var(--surface-2);
  --border: var(--line);
  --radius-md: 8px;
  --radius-lg: 14px;
  --font: "Poppins", system-ui, sans-serif;
  font-family: var(--font);
  background: transparent;
  color: var(--text-primary);
  padding: 2.5rem 0 0.5rem;
  margin: 1.6rem auto 0;
}

body.theme-dark .vc-capabilities {
  --blue-50: rgba(105, 176, 255, 0.12);
  --blue-100: rgba(105, 176, 255, 0.22);
  --blue-200: rgba(105, 176, 255, 0.34);
  --blue-400: #69b0ff;
  --blue-600: #4d9cf3;
  --blue-800: #b8d8ff;
  --text-primary: var(--text);
  --text-secondary: var(--muted);
  --text-tertiary: #9eb3d2;
  --bg-secondary: #111d34;
  --bg-tertiary: #101b31;
}

.vc-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.vc-row:first-child {
  padding-top: 0;
}

.vc-row:last-child {
  border-bottom: none;
  padding-bottom: 0.5rem;
}

.vc-row.rev {
  flex-direction: row-reverse;
}

.vc-img-col {
  flex: 0 0 48%;
}

.vc-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.vc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: auto;
  filter: none;
  transform: none;
}

.vc-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.vc-row-erp .vc-img-box img {
  object-position: center;
  filter: none;
}

.vc-row-software .vc-img-box img {
  object-position: center;
  filter: none;
}

.vc-row-ms .vc-img-box img {
  object-position: center;
  filter: none;
}

.vc-row-data .vc-img-box img {
  object-position: center;
  filter: none;
}

.vc-txt-col {
  flex: 1;
  min-width: 0;
}

.vc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 0.75rem;
}

.vc-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.vc-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.vc-btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-600);
  border: 1px solid rgba(30, 136, 229, 0.42);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vc-btn:hover {
  background: var(--blue-50);
  color: var(--blue-800);
  border-color: var(--blue-400);
}

.idp-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  box-shadow: var(--shadow-soft);
}

.idp-accent {
  height: 3px;
  background: var(--blue-400);
  flex-shrink: 0;
}

.idp-nav {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  height: 36px;
  flex-shrink: 0;
}

.idp-nav-link {
  font-size: 9px;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.idp-nav-link.active {
  color: var(--blue-600);
  font-weight: 500;
}

.idp-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
  color: #fff;
  margin-left: auto;
  flex-shrink: 0;
}

.idp-body {
  padding: 8px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.idp-page-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.idp-page-sub {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.idp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.idp-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 8px;
}

.idp-card-title {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.idp-card-sub {
  font-size: 9px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.idp-dbtn {
  display: inline-block;
  background: var(--blue-600);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 8px;
  font-weight: 500;
  color: #fff;
}

.idp-wf {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 8px;
}

.idp-wf-title {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.idp-steps {
  display: flex;
  align-items: center;
}

.idp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.idp-step-icon {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idp-step-label {
  font-size: 8px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 38px;
  line-height: 1.2;
}

.idp-arrow {
  font-size: 9px;
  color: var(--text-tertiary);
  margin: 0 5px;
  padding-bottom: 14px;
}

.idp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.idp-stat {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 7px;
}

body.theme-dark .vc-btn {
  background: rgba(17, 29, 52, 0.9);
  border-color: rgba(105, 176, 255, 0.4);
}

body.theme-dark .vc-img-box img {
  filter: none;
}

body.theme-dark .vc-img-box::after {
  background: none;
}

.idp-stat-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-600);
}

/* Dedicated Intelligent Document Processing page */
.idp-page {
  background: #f7faff;
  color: var(--text);
  overflow-x: clip;
}

.idp-hero {
  padding: calc(var(--header-height) + 4rem) 0 4.2rem;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 76%);
}

.idp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.idp-hero-copy h1 {
  max-width: 760px;
  margin: 0.55rem 0 1.1rem;
  color: #0b1f4d;
  font-size: clamp(2.35rem, 4.6vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.idp-hero-copy,
.idp-hero-visual,
.idp-section-copy,
.idp-section-head,
.idp-definition-card,
.idp-card,
.idp-impact-bars,
.idp-timeline-step,
.idp-advantage-list,
.idp-faq,
.idp-cta-inner > * {
  min-width: 0;
}

.idp-hero-copy p {
  max-width: 680px;
  color: #50627f;
  font-size: 1.05rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.idp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.idp-hero-visual {
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 52px rgba(14, 44, 92, 0.12);
  overflow: hidden;
}

.idp-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.idp-proof-strip {
  padding: 1.2rem 0;
  background: #0b1f4d;
}

.idp-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.idp-proof-grid > div {
  min-height: 126px;
  padding: 1.25rem;
  background: #0d285c;
}

.idp-proof-grid strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.idp-proof-grid span {
  display: block;
  margin-top: 0.65rem;
  color: #c7d8f5;
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}

.idp-section {
  padding: 5.8rem 0;
  background: #ffffff;
}

.idp-band {
  background: #f4f8ff;
}

.idp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 3rem;
  align-items: start;
}

.idp-two-col-balanced {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.idp-section-copy h2,
.idp-section-head h2,
.idp-cta h2 {
  margin: 0.4rem 0 1rem;
  color: #0b1f4d;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.idp-section-copy p,
.idp-section-head p,
.idp-cta p {
  color: #5d6f8d;
  line-height: 1.8;
}

.idp-section-head {
  max-width: 860px;
  margin: 0 auto 2.3rem;
}

.idp-definition-card,
.idp-card,
.idp-timeline-step,
.idp-faq details {
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(14, 44, 92, 0.06);
}

.idp-definition-card {
  padding: 1.65rem;
}

.idp-definition-card h3,
.idp-card h3,
.idp-timeline-step h3 {
  color: #12305d;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.idp-definition-card ul {
  display: grid;
  gap: 0.72rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5d6f8d;
}

.idp-definition-card li {
  position: relative;
  padding-left: 1.25rem;
}

.idp-definition-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1b4fd8;
}

.idp-flow {
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(14, 44, 92, 0.07);
  overflow-x: auto;
}

.idp-flow svg {
  display: block;
  min-width: 820px;
  width: 100%;
  height: auto;
}

.idp-flow-step rect {
  fill: url(#idpFlowGrad);
}

.idp-flow-step text {
  fill: #ffffff;
  font-family: "Poppins", sans-serif;
}

.idp-flow-step text:first-of-type {
  fill: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.idp-flow-step text:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
}

.idp-flow-step text:nth-of-type(n+3) {
  fill: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.idp-flow-arrow {
  fill: none;
  stroke: #9fb7dd;
  stroke-width: 3;
  stroke-linecap: round;
}

.idp-industries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.idp-card {
  padding: 1.35rem;
}

.idp-card p,
.idp-timeline-step p,
.idp-faq p {
  color: #5d6f8d;
  line-height: 1.7;
}

.idp-impact-bars {
  display: grid;
  gap: 0.92rem;
  padding: 1.4rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.idp-impact-bars div {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 1rem;
  align-items: center;
}

.idp-impact-bars span {
  color: #364969;
  font-size: 0.92rem;
  font-weight: 600;
}

.idp-impact-bars strong {
  position: relative;
  min-height: 38px;
  border-radius: 6px;
  background: #edf4ff;
  color: #0b1f4d;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  overflow: hidden;
  z-index: 0;
}

.idp-impact-bars strong::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: linear-gradient(120deg, rgba(27, 79, 216, 0.24), rgba(0, 198, 255, 0.2));
  z-index: -1;
}

.idp-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.idp-timeline-step {
  padding: 1.35rem;
}

.idp-timeline-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #1b4fd8;
  font-size: 0.78rem;
  font-weight: 700;
}

.idp-advantage {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.idp-advantage-list {
  display: grid;
  gap: 0.75rem;
}

.idp-advantage-list div {
  padding: 1rem 1.1rem;
  border-left: 3px solid #1b4fd8;
  border-radius: 6px;
  background: #f5f9ff;
}

.idp-advantage-list strong,
.idp-advantage-list span {
  display: block;
}

.idp-advantage-list strong {
  color: #12305d;
  margin-bottom: 0.25rem;
}

.idp-advantage-list span {
  color: #5d6f8d;
  line-height: 1.6;
}

.idp-faq {
  display: grid;
  gap: 0.85rem;
  max-width: 940px;
  margin: 0 auto;
}

.idp-faq details {
  padding: 1.15rem 1.25rem;
}

.idp-faq summary {
  cursor: pointer;
  color: #12305d;
  font-weight: 700;
}

.idp-faq p {
  margin: 0.75rem 0 0;
}

.idp-cta {
  padding: 4.5rem 0;
  background: #0b1f4d;
}

.idp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.idp-cta h2,
.idp-cta p,
.idp-cta .eyebrow {
  color: #ffffff;
}

.idp-cta p {
  max-width: 740px;
  color: #c7d8f5;
}

body.theme-dark .idp-page,
body.theme-dark .idp-section,
body.theme-dark .idp-hero {
  background: #0d182d;
}

body.theme-dark .idp-band {
  background: #0a1222;
}

body.theme-dark .idp-hero {
  background: linear-gradient(180deg, #0a1222 0%, #0d182d 76%);
}

body.theme-dark .idp-hero-copy h1,
body.theme-dark .idp-section-copy h2,
body.theme-dark .idp-section-head h2,
body.theme-dark .idp-definition-card h3,
body.theme-dark .idp-card h3,
body.theme-dark .idp-timeline-step h3,
body.theme-dark .idp-faq summary,
body.theme-dark .idp-advantage-list strong {
  color: #edf4ff;
}

body.theme-dark .idp-hero-copy p,
body.theme-dark .idp-section-copy p,
body.theme-dark .idp-section-head p,
body.theme-dark .idp-card p,
body.theme-dark .idp-timeline-step p,
body.theme-dark .idp-faq p,
body.theme-dark .idp-advantage-list span {
  color: #abc0de;
}

body.theme-dark .idp-hero-visual,
body.theme-dark .idp-definition-card,
body.theme-dark .idp-card,
body.theme-dark .idp-flow,
body.theme-dark .idp-impact-bars,
body.theme-dark .idp-timeline-step,
body.theme-dark .idp-faq details {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .idp-advantage {
  background: #0d182d;
}

body.theme-dark .idp-advantage-list div,
body.theme-dark .idp-impact-bars strong {
  background: #13233f;
}

body.theme-dark .idp-impact-bars span,
body.theme-dark .idp-impact-bars strong {
  color: #dbe8ff;
}

body.theme-dark .idp-proof-strip,
body.theme-dark .idp-cta {
  background: #071224;
}

body.theme-dark .idp-proof-grid > div {
  background: #0f1d35;
}

.erp-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 111, 143, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 76%);
}

.erp-hero-visual {
  padding: 0.75rem;
}

.erp-hero-visual img {
  border-radius: 6px;
}

.erp-flow-step rect {
  fill: url(#erpFlowGrad);
}

.erp-flow-step text {
  fill: #ffffff;
  font-family: "Poppins", sans-serif;
}

.erp-flow-step text:first-of-type {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.erp-flow-step text:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
}

.erp-flow-step text:nth-of-type(n+3) {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.erp-module-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.erp-module-map::before {
  content: "";
  position: absolute;
  inset: 50% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 111, 143, 0.42), transparent);
}

.erp-module-map article,
.erp-module-center {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.07);
}

.erp-module-map article {
  min-height: 168px;
  padding: 1.25rem;
}

.erp-module-map article span,
.erp-module-center span {
  display: block;
  color: #12305d;
  font-weight: 700;
}

.erp-module-map article p {
  margin: 0.65rem 0 0;
  color: #5d6f8d;
  line-height: 1.7;
}

.erp-module-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 1.4rem;
  text-align: center;
  background: linear-gradient(145deg, #0b1f4d, #256f8f);
}

.erp-module-center span,
.erp-module-center strong {
  color: #ffffff;
}

.erp-module-center span {
  font-size: 1.1rem;
}

.erp-module-center strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.erp-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.erp-industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.erp-timeline .idp-timeline-step span {
  background: rgba(37, 111, 143, 0.12);
  color: #256f8f;
}

body.theme-dark .erp-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 111, 143, 0.2), transparent 28%),
    linear-gradient(180deg, #0a1222 0%, #0d182d 76%);
}

body.theme-dark .erp-module-map article,
body.theme-dark .erp-module-center {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .erp-module-map article span {
  color: #edf4ff;
}

body.theme-dark .erp-module-map article p {
  color: #abc0de;
}

body.theme-dark .erp-module-center {
  background: linear-gradient(145deg, #13233f, #174661);
}

.software-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 125, 109, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 76%);
}

.software-hero-visual {
  padding: 0.75rem;
}

.software-hero-visual img {
  border-radius: 6px;
}

.software-flow-step rect {
  fill: url(#softwareFlowGrad);
}

.software-flow-step text {
  fill: #ffffff;
  font-family: "Poppins", sans-serif;
}

.software-flow-step text:first-of-type {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.software-flow-step text:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
}

.software-flow-step text:nth-of-type(n+3) {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.software-solution-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.software-solution-map article {
  min-height: 168px;
  padding: 1.25rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.07);
}

.software-solution-map article span {
  display: block;
  color: #12305d;
  font-weight: 700;
}

.software-solution-map article p {
  margin: 0.65rem 0 0;
  color: #5d6f8d;
  line-height: 1.7;
}

.software-solution-map .software-solution-core {
  grid-column: 1 / -1;
  min-height: 156px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, #0b1f4d, #2f7d6d);
}

.software-solution-core span,
.software-solution-core strong {
  color: #ffffff;
}

.software-solution-core span {
  font-size: 1.1rem;
}

.software-solution-core strong {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.software-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.software-industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.software-timeline .idp-timeline-step span {
  background: rgba(47, 125, 109, 0.12);
  color: #2f7d6d;
}

body.theme-dark .software-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 125, 109, 0.2), transparent 28%),
    linear-gradient(180deg, #0a1222 0%, #0d182d 76%);
}

body.theme-dark .software-solution-map article {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .software-solution-map article span {
  color: #edf4ff;
}

body.theme-dark .software-solution-map article p {
  color: #abc0de;
}

body.theme-dark .software-solution-map .software-solution-core {
  background: linear-gradient(145deg, #13233f, #1d554b);
}

.microsoft-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 120, 212, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 76%);
}

.microsoft-hero-visual {
  padding: 0.75rem;
}

.microsoft-hero-visual img {
  border-radius: 6px;
}

.microsoft-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0.2rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(0, 120, 212, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(11, 31, 77, 0.08);
  color: #12305d;
  font-weight: 700;
}

.microsoft-window {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  grid-template-rows: repeat(2, 12px);
  gap: 3px;
  flex: 0 0 auto;
}

.microsoft-window i {
  display: block;
  border-radius: 2px;
}

.microsoft-window i:nth-child(1) {
  background: #f25022;
}

.microsoft-window i:nth-child(2) {
  background: #7fba00;
}

.microsoft-window i:nth-child(3) {
  background: #00a4ef;
}

.microsoft-window i:nth-child(4) {
  background: #ffb900;
}

.microsoft-flow-step rect {
  fill: url(#microsoftFlowGrad);
}

.microsoft-flow-step text {
  fill: #ffffff;
  font-family: "Poppins", sans-serif;
}

.microsoft-flow-step text:first-of-type {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.microsoft-flow-step text:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
}

.microsoft-flow-step text:nth-of-type(n+3) {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.microsoft-license-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.microsoft-license-map article {
  min-height: 168px;
  padding: 1.25rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.07);
}

.microsoft-license-map article span {
  display: block;
  color: #12305d;
  font-weight: 700;
}

.microsoft-license-map article p {
  margin: 0.65rem 0 0;
  color: #5d6f8d;
  line-height: 1.7;
}

.microsoft-license-map .microsoft-license-core {
  grid-column: 1 / -1;
  min-height: 156px;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  text-align: center;
  background: linear-gradient(145deg, #0b1f4d, #0078d4);
}

.microsoft-license-core strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.microsoft-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.microsoft-industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.microsoft-timeline .idp-timeline-step span {
  background: rgba(0, 120, 212, 0.12);
  color: #0078d4;
}

body.theme-dark .microsoft-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 120, 212, 0.2), transparent 28%),
    linear-gradient(180deg, #0a1222 0%, #0d182d 76%);
}

body.theme-dark .microsoft-partner-badge,
body.theme-dark .microsoft-license-map article {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .microsoft-partner-badge,
body.theme-dark .microsoft-license-map article span {
  color: #edf4ff;
}

body.theme-dark .microsoft-license-map article p {
  color: #abc0de;
}

body.theme-dark .microsoft-license-map .microsoft-license-core {
  background: linear-gradient(145deg, #13233f, #075f9f);
}

.annotation-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124, 77, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 76%);
}

.annotation-hero-visual {
  padding: 0.75rem;
}

.annotation-hero-visual img {
  border-radius: 6px;
}

.annotation-flow-step rect {
  fill: url(#annotationFlowGrad);
}

.annotation-flow-step text {
  fill: #ffffff;
  font-family: "Poppins", sans-serif;
}

.annotation-flow-step text:first-of-type {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.annotation-flow-step text:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
}

.annotation-flow-step text:nth-of-type(n+3) {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.annotation-type-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.annotation-type-map article {
  min-height: 168px;
  padding: 1.25rem;
  border: 1px solid rgba(11, 31, 77, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 31, 77, 0.07);
}

.annotation-type-map article span {
  display: block;
  color: #12305d;
  font-weight: 700;
}

.annotation-type-map article p {
  margin: 0.65rem 0 0;
  color: #5d6f8d;
  line-height: 1.7;
}

.annotation-type-map .annotation-type-core {
  grid-column: 1 / -1;
  min-height: 156px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, #0b1f4d, #7c4dff);
}

.annotation-type-core span,
.annotation-type-core strong {
  color: #ffffff;
}

.annotation-type-core span {
  font-size: 1.1rem;
}

.annotation-type-core strong {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.annotation-language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.annotation-industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.annotation-timeline .idp-timeline-step span {
  background: rgba(124, 77, 255, 0.12);
  color: #6b45db;
}

body.theme-dark .annotation-page .idp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124, 77, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #0a1222 0%, #0d182d 76%);
}

body.theme-dark .annotation-type-map article {
  background: #111d34;
  border-color: var(--line);
  box-shadow: none;
}

body.theme-dark .annotation-type-map article span {
  color: #edf4ff;
}

body.theme-dark .annotation-type-map article p {
  color: #abc0de;
}

body.theme-dark .annotation-type-map .annotation-type-core {
  background: linear-gradient(145deg, #13233f, #4d32a8);
}

@media (max-width: 980px) {
  .idp-hero-grid,
  .idp-two-col,
  .idp-two-col-balanced {
    grid-template-columns: 1fr;
  }

  .idp-proof-grid,
  .idp-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idp-industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idp-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .erp-module-map,
  .erp-value-grid,
  .erp-industries,
  .software-solution-map,
  .software-impact-grid,
  .software-industries,
  .microsoft-license-map,
  .microsoft-support-grid,
  .microsoft-industries,
  .annotation-type-map,
  .annotation-language-grid,
  .annotation-industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .erp-module-center {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .idp-page .container {
    width: calc(100% - 2.25rem);
    max-width: calc(100vw - 2.25rem);
  }

  .idp-hero {
    padding-top: calc(var(--header-height) + 2.4rem);
  }

  .idp-hero-grid,
  .idp-two-col,
  .idp-two-col-balanced {
    gap: 2rem;
  }

  .idp-hero-copy h1 {
    font-size: 2rem;
    line-height: 1.04;
    max-width: 320px;
  }

  .idp-section-copy h2,
  .idp-section-head h2,
  .idp-cta h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .idp-hero-copy p,
  .idp-section-copy p,
  .idp-section-head p,
  .idp-cta p {
    font-size: 0.96rem;
    max-width: 320px;
  }

  .idp-hero-actions {
    flex-direction: column;
    max-width: 320px;
  }

  .idp-hero-actions .btn,
  .idp-cta .btn {
    width: 100%;
  }

  .idp-proof-grid,
  .idp-industries,
  .idp-timeline {
    grid-template-columns: 1fr;
  }

  .erp-module-map,
  .erp-value-grid,
  .erp-industries,
  .software-solution-map,
  .software-impact-grid,
  .software-industries,
  .microsoft-license-map,
  .microsoft-support-grid,
  .microsoft-industries,
  .annotation-type-map,
  .annotation-language-grid,
  .annotation-industries {
    grid-template-columns: 1fr;
  }

  .erp-module-map::before {
    display: none;
  }

  .erp-module-map article {
    min-height: auto;
  }

  .software-solution-map article {
    min-height: auto;
  }

  .microsoft-license-map article {
    min-height: auto;
  }

  .annotation-type-map article {
    min-height: auto;
  }

  .idp-proof-grid span {
    max-width: 280px;
  }

  .idp-impact-bars div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .idp-section {
    padding: 4.2rem 0;
  }
}

.idp-stat-lbl {
  font-size: 8px;
  color: var(--text-tertiary);
  margin-top: 1px;
}

@media (max-width: 768px) {
  .vc-capabilities {
    padding: 2rem 0 0.25rem;
    margin-top: 1.2rem;
  }

  .vc-row,
  .vc-row.rev {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .vc-img-col {
    flex: none;
    width: 100%;
  }

  .vc-title {
    font-size: 1.25rem;
  }
}
