: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: 98px;
  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;
  border: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  isolation: isolate;
}

.logo img {
  width: auto;
  height: 80px;
  max-width: min(48vw, 340px);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(5, 18, 36, 0.6)) drop-shadow(0 0 18px rgba(135, 221, 255, 0.45));
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.site-footer .logo img {
  width: auto;
  height: 44px;
  max-width: 180px;
}

.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--growth-leadership img {
  object-position: center 34%;
}

.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;
}

.region-showcase {
  margin-top: 1.15rem;
}

.region-showcase-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--navy-800);
}

.region-showcase-head p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.region-cities {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.78rem;
}

.region-city-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(145, 183, 232, 0.5);
  box-shadow: 0 16px 30px rgba(10, 33, 65, 0.16);
  min-height: 196px;
  background: #dbe9ff;
}

.region-city-card img {
  width: 100%;
  height: 100%;
  min-height: 196px;
  object-fit: cover;
  display: block;
  animation: city-pan 14s ease-in-out infinite alternate;
}

.region-city-card:nth-child(2) img {
  animation-delay: -2.5s;
}

.region-city-card:nth-child(3) img {
  animation-delay: -5s;
}

.region-city-card:nth-child(4) img {
  animation-delay: -7.5s;
}

.region-city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.08) 36%, rgba(8, 29, 55, 0.76) 100%);
  pointer-events: none;
}

.region-city-meta {
  position: absolute;
  left: 0.68rem;
  right: 0.68rem;
  bottom: 0.64rem;
  z-index: 2;
  border-radius: 12px;
  border: 1px solid rgba(164, 211, 255, 0.62);
  background: rgba(8, 35, 66, 0.62);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0.6rem;
}

.region-city-country {
  margin: 0;
  color: #b9dcff;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
}

.region-city-name {
  margin: 0.2rem 0 0;
  color: #f2f9ff;
  font-size: 1rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

@keyframes city-pan {
  from {
    transform: scale(1.04) translateY(-1.5%);
  }
  to {
    transform: scale(1.1) translateY(1.5%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .region-city-card img {
    animation: none;
    transform: scale(1.04);
  }

  .services-name-run,
  .services-showcase-section .services-grid .card,
  .services-showcase-section .services-grid .card::before {
    animation: none !important;
  }
}

.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));
}

.partner-card {
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(158, 193, 235, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 251, 255, 0.94));
  box-shadow: 0 10px 22px rgba(15, 44, 81, 0.1);
  min-height: 108px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.45rem;
  padding: 0.78rem 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 170, 236, 0.72);
  box-shadow: 0 14px 28px rgba(15, 44, 81, 0.14);
}

.partner-logo-shell {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-shell img {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
}

.partner-name {
  color: var(--navy-800);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.services-showcase-section {
  position: relative;
  overflow: hidden;
}

.services-showcase-section::before {
  content: "";
  position: absolute;
  inset: -22% -18%;
  background:
    radial-gradient(circle at 12% 26%, rgba(103, 203, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(65, 135, 245, 0.17), transparent 32%);
  pointer-events: none;
}

.services-showcase-section .container {
  position: relative;
  z-index: 1;
}

.services-name-motion {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.services-name-lane {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.services-name-run {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: service-name-scroll 22s linear infinite;
}

.services-name-lane.reverse .services-name-run {
  animation-direction: reverse;
  animation-duration: 17s;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 176, 245, 0.58);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(237, 246, 255, 0.92));
  color: #1d4f8f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.34rem 0.62rem;
  box-shadow: 0 7px 16px rgba(16, 47, 84, 0.14);
}

.service-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d87ff, #59e6ff);
  box-shadow: 0 0 0 5px rgba(89, 230, 255, 0.16);
  flex-shrink: 0;
}

.services-showcase-section .services-grid .card {
  position: relative;
  overflow: hidden;
  border-color: rgba(160, 197, 241, 0.72);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 255, 0.95) 55%, rgba(234, 244, 255, 0.93));
  box-shadow: 0 10px 22px rgba(12, 38, 70, 0.12);
  animation: service-card-glow 4.8s ease-in-out infinite;
}

.services-showcase-section .services-grid .card::before {
  content: "";
  position: absolute;
  inset: -42% -120%;
  background: linear-gradient(118deg, transparent 42%, rgba(99, 188, 255, 0.34) 50%, transparent 58%);
  transform: translateX(-30%);
  animation: service-card-sheen 3.9s linear infinite;
  pointer-events: none;
}

.services-showcase-section .services-grid .card:nth-child(3n + 2) {
  animation-delay: 0.35s;
}

.services-showcase-section .services-grid .card:nth-child(3n + 3) {
  animation-delay: 0.7s;
}

.services-showcase-section .services-grid .card:nth-child(4n + 1)::before {
  animation-delay: 0.15s;
}

.services-showcase-section .services-grid .card:nth-child(4n + 2)::before {
  animation-delay: 0.45s;
}

.services-showcase-section .services-grid .card:nth-child(4n + 3)::before {
  animation-delay: 0.75s;
}

.services-showcase-section .services-grid .card:nth-child(4n + 4)::before {
  animation-delay: 1.05s;
}

@keyframes service-name-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes service-card-sheen {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(28%);
  }
}

@keyframes service-card-glow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(12, 38, 70, 0.12);
    border-color: rgba(160, 197, 241, 0.72);
  }
  50% {
    box-shadow: 0 16px 30px rgba(11, 43, 84, 0.18);
    border-color: rgba(120, 183, 251, 0.88);
  }
}

.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;
}

.content-page .page-hero .container {
  max-width: 860px;
}

.article-shell {
  max-width: 920px;
  margin-inline: auto;
}

.article-body {
  color: var(--text-muted);
}

.article-body > * + * {
  margin-top: 1rem;
}

.article-body h2 {
  margin-top: 1.7rem;
  color: var(--navy-800);
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

.article-body p,
.article-body li {
  font-size: 1rem;
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.article-body a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: none;
}

.article-body a:hover {
  color: var(--navy-800);
}

.inline-promo {
  margin-top: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(124, 178, 239, 0.48);
  background: linear-gradient(145deg, rgba(237, 246, 255, 0.92), rgba(248, 252, 255, 0.96));
  box-shadow: 0 12px 24px rgba(16, 47, 84, 0.08);
  padding: 1rem 1.05rem;
}

.inline-promo h3 {
  margin: 0;
  color: var(--navy-800);
}

.inline-promo p {
  margin: 0.45rem 0 0;
}

.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;
  }

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

  .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,
  .faq-list,
  .footer-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

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

  .article-body p,
  .article-body li {
    font-size: 0.98rem;
  }

  .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) {
  .logo img {
    height: 62px;
    max-width: min(62vw, 250px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 98px;
    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) {
  .services-name-motion {
    gap: 0.36rem;
  }

  .service-chip {
    font-size: 0.66rem;
    padding: 0.28rem 0.5rem;
  }

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

  .region-cities {
    grid-template-columns: 1fr;
  }

  .region-city-card,
  .region-city-card img {
    min-height: 208px;
  }

  .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;
  }
}

/* Viral Advice Media logo-color UX refresh */
:root {
  --navy-950: #0d3844;
  --navy-900: #125061;
  --navy-800: #1f6f83;
  --blue-600: #58afbf;
  --blue-500: #78c7d4;
  --orange-500: #f7c400;
  --orange-600: #d2a600;
  --aqua-500: #58afbf;
  --aqua-400: #8fdae3;
  --surface: #ffffff;
  --surface-soft: #f2fafb;
  --line: #c9dfe4;
  --text: #194552;
  --text-muted: #506974;
  --shadow: 0 14px 32px rgba(10, 42, 53, 0.12);
  --glass-white: rgba(255, 255, 255, 0.9);
  --glass-strong: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(201, 223, 228, 0.92);
  --glass-shadow: 0 14px 32px rgba(10, 42, 53, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 90% 8%, rgba(88, 175, 191, 0.14), transparent 34%),
    radial-gradient(circle at 5% 18%, rgba(247, 196, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fcfd 0%, #eff7f9 36%, #ffffff 72%);
}

::selection {
  background: rgba(88, 175, 191, 0.28);
  color: #0a313e;
}

.container {
  width: min(1180px, 92vw);
}

.section {
  padding: clamp(3.2rem, 6vw, 5.2rem) 0 clamp(1.7rem, 3vw, 2.6rem);
}

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

.top-ribbon {
  background: linear-gradient(92deg, #0f4351 0%, #166176 55%, #2a8ca0 100%);
  color: #ecfbff;
}

.social-row {
  background: linear-gradient(90deg, #0f4351 0%, #155b6d 52%, #22788a 100%);
}

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

.site-header {
  background: linear-gradient(95deg, rgba(15, 67, 81, 0.96) 0%, rgba(18, 83, 100, 0.95) 54%, rgba(31, 111, 131, 0.94) 100%);
  border-bottom: 1px solid rgba(168, 218, 227, 0.45);
  box-shadow: 0 14px 30px rgba(8, 38, 48, 0.24);
}

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

.site-nav a.active,
.nav-dropdown.active .nav-primary,
.nav-dropdown:hover .nav-primary {
  color: #f7c400;
}

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

.menu-toggle {
  border: 1px solid rgba(163, 215, 224, 0.58);
  background: rgba(236, 251, 255, 0.1);
  color: #f0fcff;
}

.mega-menu {
  background: linear-gradient(180deg, #f8fdff 0%, #eef7fa 100%);
  border: 1px solid #cfe4e8;
  box-shadow: 0 22px 40px rgba(12, 49, 61, 0.16);
}

.mega-col h4 {
  color: #195466;
}

.mega-col li {
  color: #2f5867;
}

.btn-primary,
.nav-cta {
  background: linear-gradient(135deg, #f7c400, #d3a600);
  color: #153947 !important;
  border: 1px solid rgba(183, 145, 0, 0.35);
  box-shadow: 0 12px 24px rgba(166, 133, 0, 0.25);
}

.btn-primary:hover,
.nav-cta:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.hero h1,
.page-hero h1,
.section-heading,
.split-title h2 {
  color: #164f61;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.hero h2,
.section-subheading,
.split-title p {
  color: #265e70;
}

.hero p,
.page-hero p,
.long-copy,
.section-intro,
.metric-label,
.card p,
.card li {
  color: var(--text-muted);
  line-height: 1.68;
}

.split-title {
  display: grid;
  gap: 0.6rem;
}

.card,
.hero-aside,
.metrics-grid article,
.platform-logo,
.chip-row a,
.marketing-shot,
.form-wrap,
.partner-card {
  border: 1px solid #d1e4e8;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
  box-shadow: 0 12px 26px rgba(12, 44, 56, 0.1);
}

.card {
  border-radius: 18px;
  padding: 1.08rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #b6d8df;
  box-shadow: 0 18px 32px rgba(12, 44, 56, 0.14);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link p,
.card-link h2,
.card-link h3,
.card-link h4 {
  color: inherit;
}

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

.services-showcase-section .services-grid .card h3 {
  font-size: clamp(1.24rem, 1.7vw, 1.45rem);
}

.services-showcase-section .services-grid .card p {
  font-size: 1.02rem;
}

.service-chip {
  border-color: rgba(126, 185, 198, 0.62);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 252, 0.95));
  color: #1b6376;
}

.service-chip::before {
  background: linear-gradient(135deg, #58afbf, #f7c400);
  box-shadow: 0 0 0 5px rgba(88, 175, 191, 0.16);
}

.section-title,
.brand-line {
  color: #2a7f94;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.newsletter-form input {
  border: 1px solid #c7dde2;
  background: #ffffff;
  color: #1b4d5d;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.newsletter-form input:focus {
  outline: 3px solid rgba(88, 175, 191, 0.28);
  outline-offset: 1px;
  border-color: #7dbecd;
}

.site-footer {
  background: linear-gradient(165deg, #0f4351, #155f73 62%, #1f6f83);
  color: #ddf6fb;
}

.footer-grid p,
.footer-grid a,
.footer-links a {
  color: #ddf6fb;
}

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

.mobile-sticky-cta {
  border-color: rgba(198, 158, 0, 0.62);
  background: linear-gradient(135deg, #f7c400, #d3a600);
  color: #173e4b;
  box-shadow: 0 14px 34px rgba(123, 100, 0, 0.3);
}

.inner-service-page {
  background:
    radial-gradient(circle at 92% 4%, rgba(88, 175, 191, 0.15), transparent 32%),
    radial-gradient(circle at 10% 18%, rgba(247, 196, 0, 0.09), transparent 26%),
    linear-gradient(180deg, #f8fcfd 0%, #eef7fa 26%, #f9fcfd 55%, #ffffff 100%);
}

.inner-service-page .page-hero .container {
  border: 1px solid rgba(145, 202, 214, 0.45);
  background:
    radial-gradient(circle at 14% 15%, rgba(136, 218, 232, 0.22), transparent 30%),
    radial-gradient(circle at 82% 110%, rgba(247, 196, 0, 0.17), transparent 42%),
    linear-gradient(132deg, #0f4351 0%, #166176 55%, #1f6f83 100%);
}

.inner-service-page .page-hero .kicker,
.inner-service-page .inner-signal-row span {
  color: #f9d650;
}

@media (min-width: 920px) {
  .split-title {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: end;
  }

  .split-title p {
    text-align: right;
    justify-self: end;
    max-width: 32ch;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 2.7rem 0 1.5rem;
  }

  .site-nav {
    background: #0f4351;
    border: 1px solid rgba(157, 217, 227, 0.38);
  }

  .mega-menu {
    background: #f2f9fb;
    border: 1px solid #d4e7ec;
  }
}

.page-hero-media--portfolio {
  border: 1px solid rgba(135, 201, 214, 0.74);
  box-shadow: 0 24px 42px rgba(9, 43, 54, 0.2);
}

.page-hero-media--portfolio img {
  object-position: center 32%;
  animation: portfolio-hero-kenburns 12s ease-in-out infinite alternate;
}

.page-hero-media--portfolio::before {
  content: "";
  position: absolute;
  inset: -30% -60%;
  z-index: 1;
  background: linear-gradient(105deg, rgba(145, 233, 245, 0) 34%, rgba(145, 233, 245, 0.2) 50%, rgba(247, 196, 0, 0.16) 58%, rgba(145, 233, 245, 0) 72%);
  transform: skewX(-14deg);
  animation: portfolio-hero-sweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.page-hero-media--portfolio::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 35, 42, 0.08) 26%, rgba(8, 35, 42, 0.76) 100%);
}

.page-hero-media--portfolio figcaption {
  border-color: rgba(255, 225, 106, 0.58);
  background: rgba(10, 47, 58, 0.74);
  color: #fff6cd;
}

@keyframes portfolio-hero-kenburns {
  from {
    transform: scale(1.02) translateY(-1%);
  }
  to {
    transform: scale(1.1) translateY(1.3%);
  }
}

@keyframes portfolio-hero-sweep {
  0% {
    transform: translateX(-26%) skewX(-14deg);
    opacity: 0;
  }
  16%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(36%) skewX(-14deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-media--portfolio img,
  .page-hero-media--portfolio::before {
    animation: none !important;
  }

  .page-hero-media--portfolio img {
    transform: scale(1.03);
  }
}

/* Header utility + usability refresh */
.social-row.header-utility {
  background: linear-gradient(90deg, #0b3541 0%, #124f5f 55%, #186f84 100%);
  border-bottom: 1px solid rgba(168, 218, 227, 0.34);
}

.social-row.header-utility .social-row-inner {
  min-height: 46px;
  justify-content: flex-end;
}

.header-utility-stack {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
  flex-wrap: wrap;
  padding: 0.3rem 0;
}

.header-contact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  text-decoration: none;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #e7fbff;
  border: 1px solid rgba(172, 229, 238, 0.3);
  background: rgba(10, 48, 58, 0.45);
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-contact-link:hover,
.header-contact-link:focus-visible {
  color: #ffffff;
  background: rgba(14, 69, 84, 0.72);
  border-color: rgba(205, 242, 248, 0.54);
  transform: translateY(-1px);
  outline: none;
}

.header-contact-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
}

.header-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header-social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.header-social-link {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ebfdff;
  border: 1px solid rgba(176, 231, 240, 0.4);
  background: rgba(10, 48, 58, 0.46);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-social-link:hover,
.header-social-link:focus-visible {
  transform: translateY(-1px) scale(1.04);
  background: rgba(20, 79, 95, 0.76);
  border-color: rgba(217, 247, 252, 0.66);
  outline: none;
}

.header-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.header-inner {
  min-height: 104px;
  gap: 1.15rem;
}

.site-nav > a,
.site-nav .nav-primary {
  border-radius: 11px;
  padding: 0.42rem 0.52rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav .nav-primary:hover,
.site-nav .nav-primary:focus-visible {
  background: rgba(226, 247, 251, 0.14);
  color: #ffffff;
  outline: none;
}

.nav-drop-button {
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-drop-button:hover,
.nav-drop-button:focus-visible {
  background: rgba(226, 247, 251, 0.14);
  color: #ffffff;
  outline: none;
}

@media (max-width: 1024px) {
  .header-contact-link {
    font-size: 0.72rem;
    padding: 0.24rem 0.5rem;
  }

  .header-utility-stack {
    gap: 0.5rem 0.8rem;
  }
}

@media (max-width: 860px) {
  .social-row.header-utility .social-row-inner {
    justify-content: center;
    min-height: 50px;
  }

  .header-utility-stack,
  .header-contact-links {
    justify-content: center;
  }

  .header-contact-link {
    font-size: 0.71rem;
    padding: 0.24rem 0.5rem;
  }

  .header-inner {
    min-height: 96px;
  }
}

@media (max-width: 620px) {
  .header-contact-links {
    width: 100%;
    gap: 0.7rem;
  }

  .header-contact-link {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.72rem;
  }

  .header-contact-link:hover,
  .header-contact-link:focus-visible {
    transform: none;
    background: transparent;
    color: #ffffff;
    border-color: transparent;
  }

  .header-contact-icon {
    display: none;
  }
}

.form-grid .services-required-field {
  margin: 0;
  border: 1px solid #c6dce2;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  padding: 0.75rem;
  display: grid;
  gap: 0.58rem;
}

.form-grid .services-required-field legend {
  padding: 0;
  color: #1b4d5d;
  font-size: 0.86rem;
  font-weight: 800;
}

.services-required-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
}

.service-option-chip {
  border: 1px solid #c3dce3;
  border-radius: 10px;
  background: #ffffff;
  color: #1d5667;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  padding: 0.5rem 0.56rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-option-chip:hover,
.service-option-chip:focus-visible {
  border-color: #8abfcc;
  background: #f4fbfd;
  outline: none;
}

.service-option-chip.is-selected {
  border-color: rgba(189, 151, 0, 0.56);
  background: linear-gradient(135deg, #f7c400, #dfb200);
  color: #153947;
  box-shadow: 0 8px 16px rgba(145, 117, 0, 0.2);
}

.service-option-chip:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.services-required-status {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: #4f6b76;
}

.services-required-field.has-error {
  border-color: rgba(196, 56, 56, 0.42);
}

.services-required-field.has-error .services-required-status {
  color: #b23535;
}

.hero-review-panel {
  margin-top: 0.9rem;
  border: 1px solid rgba(147, 203, 214, 0.7);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(250, 254, 255, 0.98), rgba(236, 248, 252, 0.97));
  padding: 0.78rem;
}

.hero-review-summary {
  margin: 0.32rem 0 0;
  font-size: 0.8rem;
  color: #2e6474;
  font-weight: 700;
}

.hero-review-grid {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.hero-review-card {
  display: grid;
  gap: 0.16rem;
  text-decoration: none;
  border: 1px solid #c0dce4;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.56rem 0.58rem;
  box-shadow: 0 8px 18px rgba(13, 48, 60, 0.09);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-review-card:hover,
.hero-review-card:focus-visible {
  transform: translateY(-2px);
  border-color: #9ecddb;
  box-shadow: 0 12px 22px rgba(13, 48, 60, 0.13);
  outline: none;
}

.hero-review-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #164f61;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-review-brand img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  border-radius: 4px;
}

.hero-review-stars {
  color: #d8a700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.hero-review-cta {
  color: #2f7082;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .services-required-options,
  .hero-review-grid {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  align-items: start;
}

.contact-info-stack {
  display: grid;
  gap: 0.9rem;
}

.contact-details-card p {
  margin: 0 0 0.7rem;
}

.contact-details-card p:last-of-type {
  margin-bottom: 0;
}

.contact-booking-card {
  padding: 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.85rem;
  align-items: stretch;
}

.contact-booking-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #cfe3e8;
  min-height: 255px;
}

.contact-booking-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 26%;
}

.contact-booking-copy {
  display: grid;
  align-content: center;
  gap: 0.4rem;
}

.contact-booking-copy h3 {
  margin: 0;
  color: #174f61;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.contact-booking-copy p {
  margin: 0;
  color: var(--text-muted);
}

.contact-booking-copy .contact-actions {
  margin-top: 0.3rem;
}

.lead-form-feedback {
  margin: 0.6rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.lead-form-feedback.is-progress {
  color: #2c5f7e;
}

.lead-form-feedback.is-success {
  color: #0f7a58;
}

.lead-form-feedback.is-error {
  color: #9d2424;
}

.btn.is-submitting {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 700px) {
  .contact-booking-card {
    grid-template-columns: 1fr;
  }

  .contact-booking-media {
    min-height: 220px;
  }
}

/* Cross-device + speed hardening */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

@media (hover: none) and (pointer: coarse) {
  * {
    scroll-behavior: auto !important;
  }

  .card:hover,
  .hero-review-card:hover,
  .service-option-chip:hover,
  .header-social-link:hover,
  .header-contact-link:hover {
    transform: none !important;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100%, 94vw);
  }

  .section {
    padding: 2.2rem 0 1.2rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.6vw, 2.2rem);
  }

  .hero h2 {
    font-size: clamp(0.94rem, 4.9vw, 1.16rem);
    max-width: 100%;
  }

  .btn,
  .form-grid .btn {
    width: 100%;
    min-height: 44px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 44px;
  }

  .form-grid textarea {
    min-height: 110px;
  }

  .site-nav {
    max-height: calc(100vh - 132px);
    overflow-y: auto;
  }

  .mega-menu {
    max-height: 62vh;
    overflow-y: auto;
  }
}
