:root {
  --deep-navy-black: #060b16;
  --dark-charcoal: #1d2531;
  --electric-blue: #1d8dff;
  --neon-cyan: #00eeff;

  --navy-950: var(--deep-navy-black);
  --navy-900: #e9f2ff;
  --navy-800: #c0d3f2;
  --blue-600: var(--electric-blue);
  --blue-500: #5db8ff;
  --orange-500: #1d8dff;
  --orange-600: #00ccff;
  --aqua-500: var(--neon-cyan);
  --aqua-400: #62f5ff;
  --surface: rgba(14, 21, 35, 0.72);
  --surface-soft: rgba(25, 35, 52, 0.76);
  --line: rgba(118, 162, 226, 0.35);
  --text: #e7f0ff;
  --text-muted: #9fb6d6;
  --shadow: 0 22px 48px rgba(2, 9, 18, 0.4);
  --glass-white: rgba(10, 17, 30, 0.52);
  --glass-strong: rgba(17, 27, 44, 0.66);
  --glass-border: rgba(108, 153, 222, 0.42);
  --glass-shadow: 0 20px 42px rgba(2, 10, 20, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 84% 7%, rgba(29, 141, 255, 0.24), transparent 32%),
    radial-gradient(circle at 14% 20%, rgba(0, 238, 255, 0.16), transparent 28%),
    linear-gradient(165deg, var(--deep-navy-black) 0%, var(--deep-navy-black) 60%, var(--dark-charcoal) 85%, #222b38 100%);
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.top-ribbon {
  background: linear-gradient(92deg, #060b16 0%, #121f33 58%, #1d8dff 100%);
  color: #e7f7ff;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
}

.social-row {
  background: linear-gradient(90deg, #101722 0%, #1d2531 62%, #116ec7 100%);
}

.social-row-inner {
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.social-row a {
  color: #dcf1ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(92deg, rgba(18, 56, 99, 0.96) 0%, rgba(27, 68, 116, 0.95) 52%, rgba(36, 87, 144, 0.95) 100%);
  border-bottom: 1px solid rgba(189, 216, 249, 0.44);
  backdrop-filter: blur(20px) saturate(165%);
  box-shadow: 0 12px 28px rgba(13, 43, 82, 0.24);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header .logo {
  padding: 0.38rem 0.54rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(6, 52, 37, 0.26);
}

.logo img {
  width: 124px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.site-footer .logo img {
  width: 96px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
}

.site-nav a {
  text-decoration: none;
  color: #f8fffb;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.2rem 0;
}

.site-nav a.active {
  color: #dcfff3;
}

.nav-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.14rem;
  position: static;
}

.nav-primary {
  white-space: nowrap;
}

.nav-drop-button {
  border: none;
  background: transparent;
  color: #f5fffa;
  padding: 0.2rem 0.1rem;
  line-height: 1;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
}

.nav-dropdown.active .nav-primary,
.nav-dropdown:hover .nav-primary {
  color: #dcfff3;
}

.nav-caret {
  display: inline-block;
  transform: translateY(-1px);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  width: min(1260px, 96vw);
  background: linear-gradient(180deg, rgba(12, 19, 33, 0.86) 0%, rgba(17, 27, 45, 0.82) 100%);
  border: 1px solid rgba(106, 149, 218, 0.44);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 24px 44px rgba(9, 34, 67, 0.22);
  backdrop-filter: blur(18px) saturate(165%);
  padding: 1.1rem 0.7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 80;
}

.mega-grid {
  display: grid;
  gap: 0.7rem;
}

.mega-cols-3 .mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-cols-4 .mega-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-cols-5 .mega-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mega-col {
  padding: 0 0.82rem;
}

.mega-col + .mega-col {
  border-left: 1px solid #2f37454d;
}

.mega-col h4 {
  margin: 0;
  color: #e8f2ff;
  font-size: 1.07rem;
  line-height: 1.12;
}

.mega-menu .mega-col h4 a {
  color: inherit;
  text-decoration: none;
}

.mega-col ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.76rem;
}

.mega-col li {
  position: relative;
  padding-left: 1.05rem;
  color: #c7daf6;
  font-size: 0.93rem;
  line-height: 1.3;
}

.mega-menu .mega-col li a {
  color: inherit;
  text-decoration: none;
}

.mega-col li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--neon-cyan);
  font-size: 0.76rem;
  transform: translateY(3px);
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 861px) {
  .nav-dropdown {
    padding-bottom: 0.45rem;
    margin-bottom: -0.45rem;
  }

  .mega-menu {
    top: calc(100% - 0.45rem);
  }
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  border-radius: 999px;
  padding: 0.57rem 0.86rem !important;
  box-shadow: 0 12px 24px rgba(13, 127, 214, 0.28);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(121, 163, 227, 0.4);
  background: rgba(16, 24, 39, 0.62);
  color: var(--text);
  border-radius: 10px;
  padding: 0.42rem 0.74rem;
  font: inherit;
  font-weight: 700;
}

main {
  overflow: hidden;
}

.section {
  padding: 3.6rem 0 1.4rem;
}

.soft {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 238, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(13, 20, 34, 0.68) 0%, rgba(21, 31, 47, 0.72) 100%);
  border-top: 1px solid rgba(101, 146, 215, 0.28);
  border-bottom: 1px solid rgba(101, 146, 215, 0.28);
}

.hero h1,
.page-hero h1 {
  margin: 0.55rem 0 0;
  color: var(--navy-900);
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2rem, 5.4vw, 3.7rem);
  max-width: 14ch;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  max-width: 16ch;
}

.page-hero .container {
  position: relative;
}

.page-hero-media {
  position: relative;
  margin-top: 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d1e2f6;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(13, 43, 82, 0.14);
}

.page-hero-media img {
  width: 100%;
  height: clamp(210px, 29vw, 340px);
  object-fit: cover;
  display: block;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 40, 0) 46%, rgba(8, 22, 40, 0.54) 100%);
  pointer-events: none;
}

.page-hero-media figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(169, 211, 255, 0.7);
  background: rgba(10, 36, 65, 0.7);
  color: #e8f4ff;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.3rem 0.62rem;
}

.hero h2 {
  margin: 0.8rem 0 0;
  color: var(--navy-800);
  font-size: clamp(1rem, 2.7vw, 1.6rem);
  max-width: 30ch;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.hero p,
.page-hero p,
.long-copy,
.section-intro {
  color: var(--text-muted);
  max-width: 72ch;
}

.hero-aside,
.card {
  background: linear-gradient(180deg, var(--glass-strong) 0%, var(--glass-white) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(16px) saturate(155%);
  box-shadow: var(--glass-shadow);
}

.hero-aside {
  box-shadow: var(--shadow);
}

.hero-video-card {
  margin-bottom: 0.95rem;
}

.hero-video-shell {
  margin-top: 0.55rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(121, 169, 236, 0.48);
  background: linear-gradient(180deg, rgba(13, 35, 66, 0.84), rgba(16, 41, 77, 0.86));
  box-shadow: 0 12px 28px rgba(8, 33, 69, 0.2);
  aspect-ratio: 16 / 9;
}

.hero-video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero-video-lite {
  position: relative;
  cursor: pointer;
}

.hero-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(177, 222, 255, 0.86);
  background: rgba(9, 32, 60, 0.72);
  color: #e7f6ff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(4, 25, 48, 0.24);
  pointer-events: none;
}

.hero-video-lite::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 43, 0.08), rgba(7, 23, 43, 0.28));
  pointer-events: none;
}

.hero-video-caption {
  margin: 0.52rem 0 0;
  color: #d5e8ff;
  font-size: 0.81rem;
  line-height: 1.4;
}

.muted-title {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #82bbff;
  font-weight: 800;
}

.plain-list {
  list-style: none;
  margin: 0.55rem 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 700;
}

.platform-logo-grid {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(114, 157, 224, 0.55);
  border-radius: 10px;
  padding: 0.4rem 0.52rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.79rem;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(17, 26, 43, 0.72) 0%, rgba(20, 33, 53, 0.66) 100%);
  backdrop-filter: blur(10px) saturate(150%);
}

.platform-logo img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.chip-row a {
  color: var(--text-muted);
  border: 1px dashed rgba(115, 175, 255, 0.58);
  border-radius: 999px;
  padding: 0.36rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  background: rgba(18, 27, 43, 0.66);
  backdrop-filter: blur(8px) saturate(145%);
}

.chip-row a img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.human-impact {
  padding-top: 2.2rem;
}

.human-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.human-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(8, 23, 44, 0.1);
}

.human-photo {
  width: 100%;
  height: 252px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.human-copy {
  padding: 0.88rem 0.95rem 1rem;
}

.human-copy h3 {
  margin: 0;
  color: var(--navy-800);
}

.human-copy p {
  margin: 0.52rem 0 0;
  color: var(--text-muted);
}

.human-collage .human-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.38rem;
  padding: 0.38rem;
  background: linear-gradient(135deg, rgba(24, 38, 61, 0.8), rgba(20, 32, 52, 0.68));
}

.human-collage .human-duo img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 10px;
}

.marketing-gallery {
  padding-top: 1.8rem;
}

.marketing-photo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.marketing-shot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(240, 248, 255, 0.5));
  backdrop-filter: blur(12px) saturate(148%);
  box-shadow: var(--glass-shadow);
}

.marketing-shot img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.marketing-shot.featured {
  grid-column: span 2;
}

.marketing-shot.featured img {
  height: 312px;
}

.marketing-shot-copy {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  border-radius: 12px;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.52), rgba(8, 26, 51, 0.66));
  backdrop-filter: blur(8px);
}

.marketing-brand-stamp {
  position: absolute;
  right: 0.7rem;
  top: 0.72rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(109, 184, 255, 0.56);
  background: rgba(5, 19, 36, 0.58);
  color: #e8f6ff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  backdrop-filter: blur(8px);
}

.marketing-shot-copy h3 {
  margin: 0;
  color: #f4fbff;
  font-size: 0.98rem;
}

.marketing-shot-copy p {
  margin: 0.28rem 0 0;
  color: #d8ecff;
  font-size: 0.82rem;
  line-height: 1.35;
}

.marketing-shot:hover img {
  transform: scale(1.06);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  box-shadow: 0 13px 26px rgba(12, 125, 205, 0.3);
}

.contact-actions {
  margin-top: 0.9rem;
}

.split-title h2,
.section-heading {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.55rem);
  line-height: 1.12;
  color: var(--navy-900);
}

.split-title p,
.section-subheading {
  margin: 0.5rem 0 0;
  color: var(--navy-800);
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.two-col {
  margin-top: 1rem;
}

.brand-line,
.section-title {
  margin: 1rem 0 0;
  color: #87bfff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metrics-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

body[data-page="about"] .metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-grid article {
  background: linear-gradient(180deg, rgba(20, 30, 48, 0.78) 0%, rgba(15, 25, 40, 0.74) 100%);
  border: 1px solid rgba(112, 158, 230, 0.4);
  border-radius: 14px;
  padding: 0.95rem;
  backdrop-filter: blur(12px) saturate(145%);
  box-shadow: 0 12px 28px rgba(8, 32, 66, 0.14);
}

.metric-number {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  color: var(--navy-900);
}

.metric-label {
  margin: 0.22rem 0 0;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.service-blocks,
.services-grid,
.ai-grid,
.partners-grid,
.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

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

.services-grid,
.ai-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.card h3,
.card h4,
.card h2 {
  margin: 0;
  color: var(--navy-800);
}

.card p,
.card li {
  color: var(--text-muted);
}

.card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.case-brand {
  display: flex;
  align-items: center;
  gap: 0.58rem;
}

.case-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  border: 1px solid rgba(164, 194, 236, 0.62);
}

.case-brand h3 {
  margin: 0;
}

.case-meta {
  margin: 0.06rem 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7db5e8;
}

.brand-logo-wall {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
}

.brand-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 189, 239, 0.48);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.46rem 0.52rem;
  color: #1e3c63;
  font-size: 0.75rem;
  font-weight: 700;
}

.brand-logo-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.cta-inline {
  margin-top: 1.2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 238, 255, 0.25), transparent 36%),
    linear-gradient(146deg, rgba(10, 20, 34, 0.86), rgba(20, 34, 52, 0.84) 45%, rgba(29, 58, 93, 0.82));
  border-radius: 18px;
  padding: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(113, 159, 226, 0.42);
  backdrop-filter: blur(14px) saturate(155%);
}

.cta-inline h3 {
  margin: 0;
  color: #fff;
}

.cta-inline p {
  margin: 0.45rem 0 0;
  color: #d8e8ff;
}

.form-wrap {
  border: 1px solid rgba(111, 158, 228, 0.42);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 25, 40, 0.78) 0%, rgba(20, 32, 51, 0.7) 100%);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.95rem;
  backdrop-filter: blur(15px) saturate(150%);
  box-shadow: 0 18px 34px rgba(8, 32, 66, 0.14);
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.newsletter-form input {
  border: 1px solid rgba(107, 152, 222, 0.48);
  border-radius: 10px;
  padding: 0.64rem 0.7rem;
  font: inherit;
  color: var(--text);
  background: rgba(15, 25, 40, 0.78);
  backdrop-filter: blur(6px);
}

.inner-service-page {
  background:
    radial-gradient(circle at 92% 4%, rgba(32, 103, 229, 0.14), transparent 32%),
    radial-gradient(circle at 10% 18%, rgba(11, 35, 66, 0.08), transparent 26%),
    linear-gradient(180deg, #f5f9ff 0%, #edf4ff 26%, #f9fbff 55%, #ffffff 100%);
}

.inner-service-page .page-hero {
  padding-top: 4.1rem;
  padding-bottom: 2.2rem;
}

.inner-service-page .page-hero .container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(132, 183, 250, 0.32);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 14% 15%, rgba(98, 180, 255, 0.28), transparent 30%),
    radial-gradient(circle at 82% 110%, rgba(87, 255, 222, 0.22), transparent 42%),
    linear-gradient(132deg, #081d39 0%, #113666 55%, #0d2a51 100%);
  box-shadow: 0 28px 46px rgba(7, 24, 46, 0.28);
}

.inner-service-page .page-hero .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
  pointer-events: none;
}

.inner-service-page .page-hero .kicker {
  color: #8fe7ff;
}

.inner-service-page .page-hero h1 {
  max-width: 20ch;
  color: #ffffff;
  text-wrap: balance;
}

.inner-service-page .page-hero p {
  color: #cde0ff;
  max-width: 68ch;
}

.inner-service-page .page-hero-media {
  border: 1px solid rgba(160, 212, 255, 0.55);
  box-shadow: 0 20px 36px rgba(5, 20, 39, 0.24);
}

.inner-signal-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.inner-signal-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(146, 217, 255, 0.5);
  background: rgba(10, 40, 75, 0.5);
  color: #dff1ff;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.34rem 0.58rem;
}

.inner-service-page .section.soft {
  background: linear-gradient(180deg, #f6fbff 0%, #eef6ff 100%);
  border-top: 1px solid #deebfc;
  border-bottom: 1px solid #deebfc;
}

.inner-service-page .section-heading {
  max-width: 20ch;
}

.inner-service-page .section-intro {
  font-size: 1.02rem;
}

.inner-service-page .card {
  border-radius: 18px;
  border: 1px solid #d5e3f5;
  box-shadow: 0 13px 28px rgba(11, 35, 66, 0.09);
  padding: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.inner-service-page .card:hover {
  transform: translateY(-3px);
  border-color: #b5cdf0;
  box-shadow: 0 20px 34px rgba(11, 35, 66, 0.14);
}

.inner-service-page .two-col .card h2 {
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

.inner-service-page .service-blocks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  counter-reset: serviceIndex;
}

.inner-service-page .service-blocks .card {
  min-height: 180px;
  position: relative;
  overflow: hidden;
  padding-top: 1.35rem;
}

.inner-service-page .service-blocks .card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2d7cf2, #53d7ff);
}

.inner-service-page .service-blocks .card::before {
  counter-increment: serviceIndex;
  content: "0" counter(serviceIndex);
  position: absolute;
  right: 0.78rem;
  top: 0.52rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8ea8cb;
  font-size: 0.84rem;
}

.inner-service-page .service-blocks .card h3 {
  max-width: 28ch;
  font-size: 1.02rem;
}

.inner-service-page .human-impact {
  padding-top: 1.25rem;
}

.inner-service-page .human-impact .section-heading {
  max-width: 24ch;
}

.inner-service-page .human-impact .section-intro {
  margin-top: 0.45rem;
  max-width: 68ch;
}

.inner-service-page .human-grid {
  margin-top: 0.95rem;
}

.inner-service-page .human-card {
  background: #ffffff;
  border: 1px solid #d6e4f6;
  box-shadow: 0 18px 32px rgba(8, 30, 58, 0.1);
}

.inner-service-page .human-copy h3 {
  color: #13355f;
}

.inner-service-page .human-copy p {
  color: #476385;
}

.inner-service-page .form-wrap {
  border: none;
  border-radius: 22px;
  padding: 1.15rem;
  background:
    linear-gradient(103deg, #0b2343 0%, #0f335f 42%, #ffffff 42%, #ffffff 100%);
  box-shadow: 0 24px 42px rgba(8, 24, 46, 0.2);
}

.inner-service-page .form-wrap > div {
  padding: 0.35rem 0.5rem 0.35rem 0.25rem;
}

.inner-service-page .form-wrap > div .kicker {
  color: #8de6ff;
}

.inner-service-page .form-wrap > div h2 {
  margin: 0.45rem 0 0;
  color: #ffffff;
}

.inner-service-page .form-wrap > div p {
  color: #bdd5f6;
}

.inner-service-page .form-grid {
  background: #ffffff;
  border: 1px solid #d4e3f5;
  border-radius: 16px;
  padding: 1rem;
}

.inner-service-page .form-grid input,
.inner-service-page .form-grid select,
.inner-service-page .form-grid textarea {
  background: #f7fbff;
  border-color: #c6d9ef;
}

.inner-service-page .form-grid input:focus,
.inner-service-page .form-grid select:focus,
.inner-service-page .form-grid textarea:focus {
  outline: 2px solid rgba(44, 129, 255, 0.25);
  border-color: #4c95f8;
  box-shadow: 0 0 0 3px rgba(76, 149, 248, 0.14);
}

.inner-service-page .form-grid .btn {
  width: 100%;
}

.newsletter-form {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 260px;
}

.signature {
  font-weight: 800;
  color: var(--navy-900) !important;
}

.founders-intro h2 {
  margin: 0;
  color: var(--navy-800);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.founders-intro .btn {
  margin-top: 1rem;
}

.founder-card + .founder-card {
  margin-top: 1rem;
}

.founder-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.founder-link {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
}

.founder-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
}

.founder-profile {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.founder-copy p {
  margin: 0;
}

.founder-copy p + p {
  margin-top: 0.85rem;
}

.founder-card--jaswant .founder-copy {
  margin-top: 6.2rem;
}

.ai-visual-section {
  padding-top: 0.9rem;
}

.ai-visual-wrap {
  border-radius: 18px;
  border: 1px solid rgba(116, 160, 232, 0.35);
  background:
    radial-gradient(circle at 0% 0%, rgba(99, 181, 255, 0.24), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(101, 255, 223, 0.2), transparent 45%),
    linear-gradient(150deg, #091c38, #0e2e58 55%, #0b2447);
  padding: 1.1rem;
  box-shadow: 0 20px 42px rgba(5, 16, 30, 0.25);
  color: #e9f2ff;
}

.ai-visual-head h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.2rem, 2.7vw, 1.9rem);
  color: #ffffff;
}

.ai-visual-head p {
  margin: 0.55rem 0 0;
  color: #bfd5fb;
  max-width: 72ch;
}

.ai-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
}

.ai-status-row {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.55rem;
}

.ai-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(144, 216, 255, 0.4);
  background: rgba(14, 46, 88, 0.46);
  color: #d9f0ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ai-video-shell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(140, 206, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(130, 194, 255, 0.15);
  background: #091f3e;
}

.ai-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(155, 221, 255, 0.2) 46%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(-100%);
  animation: ai-scan 3.2s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.ai-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ai-video-overlay {
  position: absolute;
  right: 0.6rem;
  top: 0.55rem;
  z-index: 3;
  font-size: 0.7rem;
  color: #cce9ff;
  padding: 0.24rem 0.42rem;
  border-radius: 6px;
  border: 1px solid rgba(132, 201, 255, 0.4);
  background: rgba(11, 34, 64, 0.62);
  letter-spacing: 0.06em;
  font-weight: 800;
}

.ai-media-section {
  padding-top: 0.2rem;
}

.ai-media-wrap {
  border: 1px solid rgba(116, 170, 243, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% -5%, rgba(90, 162, 255, 0.2), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(89, 255, 210, 0.15), transparent 40%),
    linear-gradient(150deg, #081a34 0%, #0d2f59 55%, #0b2142 100%);
  padding: 1.1rem;
  color: #e6f1ff;
  box-shadow: 0 20px 44px rgba(6, 19, 38, 0.3);
}

.ai-media-head h3 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.8vw, 1.95rem);
}

.ai-media-head p {
  margin: 0.55rem 0 0;
  color: #bdd6fa;
  max-width: 74ch;
}

.ai-media-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.ai-video-card {
  border: 1px solid rgba(132, 198, 255, 0.34);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(8, 31, 60, 0.58);
}

.ai-mini-head h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.ai-mini-head p {
  margin: 0.3rem 0 0;
  color: #c7ddff;
  font-size: 0.85rem;
}

.ai-mini-shell {
  margin-top: 0.65rem;
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  min-height: 185px;
  border: 1px solid rgba(131, 204, 255, 0.35);
}

.ai-mini-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 2;
}

.ai-mini-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ai-mini-overlay {
  position: absolute;
  left: 0.5rem;
  top: 0.45rem;
  z-index: 3;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  color: #d8edff;
  border: 1px solid rgba(135, 207, 255, 0.4);
  border-radius: 6px;
  padding: 0.2rem 0.38rem;
  background: rgba(8, 28, 54, 0.65);
  font-weight: 800;
}

@keyframes ai-scan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

.site-footer {
  margin-top: 2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 238, 255, 0.14), transparent 34%),
    linear-gradient(165deg, #060b16, #131d2a 62%, #1c2a3d);
  color: #d4e3fb;
}

.footer-grid {
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid p,
.footer-grid a {
  margin: 0.35rem 0;
  color: #d4e3fb;
  text-decoration: none;
}

.footer-grid a {
  display: block;
}

.footer-head {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-base {
  border-top: 1px solid #1f3a64;
  padding: 0.9rem 0 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d4e3fb;
  text-decoration: none;
}

.form-trust-row {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.form-trust-row a {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(121, 171, 236, 0.48);
  color: #deeeff;
  padding: 0.26rem 0.56rem;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(12, 34, 64, 0.46);
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0.78rem;
  transform: translateX(-50%);
  z-index: 1200;
  border-radius: 999px;
  border: 1px solid rgba(144, 195, 255, 0.68);
  background: linear-gradient(135deg, #1c65bd, #2d8ce8);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 0.65rem 1rem;
  box-shadow: 0 14px 34px rgba(8, 34, 71, 0.34);
  display: none;
}

.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -60px;
  z-index: 1400;
  background: #fff;
  color: #0d3972;
  border-radius: 8px;
  padding: 0.42rem 0.66rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #b6d2f5;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.8rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #63ddff;
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1080px) {
  .site-nav a {
    font-size: 0.79rem;
  }

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

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

  .brand-logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-page="about"] .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-service-page .service-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-media-grid,
  .services-grid,
  .ai-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .inner-service-page .form-wrap {
    background: linear-gradient(180deg, #0c294f 0%, #0f335f 37%, #ffffff 37%, #ffffff 100%);
  }

  .inner-service-page .form-wrap > div {
    padding: 0.35rem;
  }

  .hero-grid,
  .two-col,
  .form-wrap,
  .ai-visual-grid,
  .ai-media-grid,
  .service-blocks,
  .services-grid,
  .ai-grid,
  .partners-grid,
  .faq-list,
  .footer-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 218px;
  }

  body.has-sticky-cta {
    padding-bottom: 4.4rem;
  }

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

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 100%;
  }

  .founder-card--jaswant .founder-copy {
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 4vw;
    right: 4vw;
    background: rgba(12, 19, 33, 0.84);
    border: 1px solid rgba(114, 157, 224, 0.52);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    backdrop-filter: blur(18px) saturate(155%);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .nav-dropdown {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.2rem;
  }

  .nav-primary {
    font-size: 0.9rem;
  }

  .nav-drop-button {
    font-size: 0.95rem;
    padding: 0.2rem 0.25rem;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.38rem;
    border: 1px solid rgba(113, 156, 224, 0.48);
    border-radius: 10px;
    background: rgba(17, 27, 43, 0.86);
    box-shadow: none;
    padding: 0.45rem 0.55rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    backdrop-filter: blur(10px) saturate(145%);
  }

  .nav-dropdown:hover .mega-menu,
  .nav-dropdown:focus-within .mega-menu,
  .nav-dropdown.open .mega-menu {
    transform: none;
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .mega-col {
    padding: 0.55rem 0.2rem;
  }

  .mega-col + .mega-col {
    border-left: none;
    border-top: 1px solid #d8e4f6;
  }

  .mega-col h4 {
    font-size: 0.99rem;
  }

  .mega-col ul {
    margin-top: 0.55rem;
    gap: 0.55rem;
  }

  .mega-col li {
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .page-hero-media img {
    height: clamp(190px, 58vw, 250px);
  }

  .marketing-photo-grid {
    grid-template-columns: 1fr;
  }

  .marketing-shot.featured {
    grid-column: span 1;
  }

  .marketing-shot img,
  .marketing-shot.featured img {
    height: 224px;
  }

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

  .human-photo {
    height: 230px;
  }

  .inner-service-page .service-blocks {
    grid-template-columns: 1fr;
  }

  .inner-signal-row span {
    font-size: 0.67rem;
  }

  .inner-service-page .page-hero {
    padding-top: 3.2rem;
  }
}

/* WebFX-inspired palette override */
:root {
  --navy-950: #0f2f58;
  --navy-900: #153d70;
  --navy-800: #1b4f90;
  --blue-600: #2a76f8;
  --blue-500: #4a91ff;
  --orange-500: #ff7a1a;
  --orange-600: #f15f00;
  --aqua-500: #2a76f8;
  --aqua-400: #68a5ff;
  --surface: #ffffff;
  --surface-soft: #f2f7ff;
  --line: #d7e3f4;
  --text: #162c49;
  --text-muted: #4e6078;
  --shadow: 0 16px 34px rgba(14, 45, 85, 0.13);
  --glass-white: rgba(255, 255, 255, 0.9);
  --glass-strong: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(203, 220, 244, 0.95);
  --glass-shadow: 0 16px 34px rgba(14, 45, 85, 0.13);
}

body {
  background:
    radial-gradient(circle at 95% 4%, rgba(74, 145, 255, 0.16), transparent 31%),
    radial-gradient(circle at 5% 15%, rgba(42, 118, 248, 0.1), transparent 24%),
    linear-gradient(180deg, #f9fcff 0%, #f0f6ff 22%, #ffffff 58%);
}

.top-ribbon {
  background: linear-gradient(92deg, #13355f 0%, #1d4a82 56%, #2a76f8 100%);
  color: #e8f3ff;
}

.social-row {
  background: linear-gradient(90deg, #143b6c 0%, #1d4a82 62%, #275f9f 100%);
}

.social-row a {
  color: #deecff;
}

.site-header {
  background: linear-gradient(92deg, rgba(18, 56, 99, 0.96) 0%, rgba(27, 68, 116, 0.95) 52%, rgba(36, 87, 144, 0.95) 100%);
  border-bottom: 1px solid rgba(189, 216, 249, 0.44);
  backdrop-filter: blur(14px) saturate(135%);
  box-shadow: 0 12px 28px rgba(13, 43, 82, 0.24);
}

.site-nav a {
  color: #f8fffb;
}

.site-nav a.active {
  color: #dcfff3;
}

.nav-drop-button {
  color: #f5fffa;
}

.nav-dropdown.active .nav-primary,
.nav-dropdown:hover .nav-primary {
  color: #dcfff3;
}

.mega-menu {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #ccdcf2;
  box-shadow: 0 22px 40px rgba(16, 45, 81, 0.18);
  backdrop-filter: none;
}

.mega-col h4 {
  color: #162d4b;
}

.mega-col li {
  color: #1c3558;
}

.mega-col li::before {
  color: #3d97d0;
}

.mega-menu .mega-col h4 a {
  color: #153154;
}

.mega-menu .mega-col li a {
  color: #1c3558;
}

.mega-menu .mega-col h4 a:hover,
.mega-menu .mega-col li a:hover {
  color: #1f69ef;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(241, 95, 0, 0.24);
}

.menu-toggle {
  border: 1px solid #d6e4f5;
  background: #fff;
  color: var(--text);
}

.soft {
  background: linear-gradient(180deg, #f5faff 0%, #edf4ff 100%);
  border-top: 1px solid #dee9f9;
  border-bottom: 1px solid #dee9f9;
}

.kicker {
  color: var(--blue-600);
}

.hero-aside,
.card,
.metrics-grid article,
.platform-logo,
.chip-row a,
.marketing-shot,
.form-wrap {
  background: #ffffff;
  border: 1px solid #d7e3f4;
  backdrop-filter: none;
  box-shadow: 0 14px 30px rgba(13, 43, 82, 0.1);
}

.muted-title,
.brand-line,
.section-title {
  color: #4f7ab0;
}

.platform-logo {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.chip-row a {
  border-style: dashed;
  border-color: #bed2ee;
}

.human-collage .human-duo {
  background: linear-gradient(135deg, #edf4ff, #f7faff);
}

.metric-number,
.split-title h2,
.section-heading,
.hero h1,
.page-hero h1,
.hero h2,
.card h3,
.card h4,
.card h2 {
  color: #153c6f;
}

.card p,
.card li,
.hero p,
.page-hero p,
.long-copy,
.section-intro,
.metric-label {
  color: #4f617a;
}

.cta-inline {
  background: linear-gradient(146deg, #1a4a84, #1a4278 45%, #2a6ab5);
  border: 1px solid rgba(154, 199, 255, 0.45);
  backdrop-filter: none;
}

.cta-inline h3 {
  color: #fff;
}

.cta-inline p {
  color: #d9eaff;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.newsletter-form input {
  background: #fff;
  border: 1px solid #c2d6f3;
  color: var(--text);
}

.marketing-shot-copy {
  background: linear-gradient(180deg, rgba(19, 53, 95, 0.58), rgba(15, 45, 83, 0.72));
}

.marketing-brand-stamp {
  border-color: rgba(120, 186, 255, 0.62);
  background: rgba(13, 41, 76, 0.64);
  color: #edf7ff;
}

.site-footer {
  background: linear-gradient(165deg, #0f2f58, #133f73 62%, #1d4f8f);
  color: #d8e9ff;
}

.footer-base {
  border-top: 1px solid #2b5f9e;
}

/* keep inner pages aligned to same light theme */
.inner-service-page {
  background:
    radial-gradient(circle at 92% 4%, rgba(42, 118, 248, 0.16), transparent 32%),
    radial-gradient(circle at 10% 18%, rgba(29, 74, 130, 0.08), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 26%, #f9fcff 55%, #ffffff 100%);
}

.inner-service-page .page-hero .container {
  border: 1px solid rgba(156, 195, 244, 0.45);
  background:
    radial-gradient(circle at 14% 15%, rgba(98, 180, 255, 0.25), transparent 30%),
    radial-gradient(circle at 82% 110%, rgba(120, 195, 255, 0.16), transparent 42%),
    linear-gradient(132deg, #0e325f 0%, #1b4f90 55%, #1f67bc 100%);
}

.inner-service-page .form-wrap {
  background: linear-gradient(103deg, #17457d 0%, #1d5da7 42%, #ffffff 42%, #ffffff 100%);
}

.inner-service-page .form-grid {
  border: 1px solid #d0e0f5;
}

@media (max-width: 860px) {
  .site-nav {
    background: #ffffff;
    border: 1px solid #d8e5f5;
    backdrop-filter: none;
  }

  .mega-menu {
    border: 1px solid #d6e2f5;
    background: #f7fbff;
    backdrop-filter: none;
  }
}
